
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

/* Mobile nav buttons */
.mobile-nav .btn {
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.mobile-nav .btn:hover {
    transform: translateY(-4px);
}

/* --- HAMBURGER --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(0,0,0,0.6); /* lekki półprzezroczysty background */
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    z-index: 5000; /* zawsze nad headerem */
}

.hamburger:hover {
    background: rgba(0,0,0,0.8);
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 10px;
    transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- MOBILE NAV POD HEADEREM --- */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;       /* pełna szerokość ekranu */
    height: 100vh;      /* pełna wysokość ekranu */
    margin: -10px;           /* usuwa margines */
    padding: -10px;          /* usuwa padding */
    background: rgba(0, 0, 0, 0.95); /* ciemne tło */
    backdrop-filter: blur(25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 5000;       /* nad wszystkim */
    opacity: 0;
    pointer-events: none;
    transform: translateY(0) scale(0.98);
    transition: opacity 0.4s cubic-bezier(.77,0,.18,1), transform 0.4s cubic-bezier(.77,0,.18,1);
}

/* aktywne menu */
.mobile-nav.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* linki */
.mobile-link {
    font-size: 1.7rem;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease, color 0.3s ease;
}

/* staggered reveal */
.mobile-nav.active .mobile-link:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.mobile-nav.active .mobile-link:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.mobile-nav.active .mobile-link:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.mobile-nav.active .mobile-link:nth-child(4) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.mobile-nav.active .mobile-link:nth-child(5) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.mobile-nav.active .mobile-link:nth-child(6) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }

.mobile-link:hover {
    color: #3b82f6;
}

/* show hamburger only on phones */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    .nav-links, a.btn { display: none; }
}


/* --- NAPRAWA PRZESUWANIA SIĘ NA TELEFONACH --- */
body {
    overflow-x: hidden; /* usuwa poziomy scroll */
    padding-left: 0;
    padding-right: 0;
}

/* --- MAIN I HEADER PADDING --- */
main {
    padding: 0 20px; /* od krawędzi ekranu */
    box-sizing: border-box;
}

header {
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- FOOTER PADDING --- */
.footer {
    padding: 60px 20px;
    box-sizing: border-box;
}

/* --- MOBILE NAV PADDING --- */
.mobile-nav {
    padding: 0 20px;
    box-sizing: border-box;
}

/* --- GRID MOBILE --- */
@media (max-width: 900px) {
    main {
        padding: 0 20px;
    }

    header {
        padding: 0 20px;
    }

    .works-container,
    .faq-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .review-card {
        flex: 0 0 90%; /* większa szerokość w karuzeli */
    }
}


/* --- GLOBAL --- */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #060606;
    margin: 0 auto;
    width: 100%;
    min-height: 100vh;
    padding-top: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    cursor: none;
    overflow-x: hidden;
}

main {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}


/* --- REVIEW --- */

.reviews-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    gap: 12px;
    transition: transform 0.5s ease;
    scroll-snap-type: x mandatory;
    overflow-x: scroll; /* zawsze widoczny scrollbar */
    padding-bottom: 10px;

    scrollbar-width: thin;            /* Firefox */
    scrollbar-color: #3b82f6 rgba(30,30,30,0.2);
    -webkit-overflow-scrolling: touch; /* płynny scroll w Safari/Chrome */
}

.reviews-carousel::-webkit-scrollbar {
    height: 8px; /* wysokość paska przewijania */
}

.reviews-carousel::-webkit-scrollbar-track {
    background: rgba(30,30,30,0.2);
    border-radius: 10px;
}

.reviews-carousel::-webkit-scrollbar-thumb {
    background-color: #3b82f6;
    border-radius: 10px;
    border: 2px solid rgba(0,0,0,0);
}

.review-card {
    flex: 0 0 30%;
    background: rgba(20,20,20,0.55);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 60px rgba(0,0,0,0.6);
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    color: #fff;
    transform: scale(0.9) rotateY(0deg);
    opacity: 0.6;
    transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.4s ease, background 0.4s ease;
    scroll-snap-align: center;
}

.review-card:hover {
    transform: scale(1.05) rotateY(3deg);
    box-shadow: 0 25px 80px rgba(0,0,0,0.7);
    background: rgba(30,30,30,0.65);
}

.review-card.active {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 30px 100px rgba(0,0,0,0.8);
    background: linear-gradient(145deg, rgba(30,30,30,0.7), rgba(40,40,40,0.6));
}

.review-text {
    font-size: 1.15rem;
    margin-bottom: 14px;
    line-height: 1.6;
    color: #e0e0e0;
}

.review-author {
    font-size: 1rem;
    color: #a0a0a0;
    font-weight: 500;
    letter-spacing: 0.5px;
}



/* --- FAQ --- */

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    padding: 24px;
    transition: 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
}

/* --- WORKS --- */

.works-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.work-card {
    padding: 24px;
    border-radius: 20px;
    background: rgba(20,20,20,0.55);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
    transition: 0.3s ease;
}

.work-card:hover {
    transform: translateY(-6px);
}

.work-img {
    border-radius: 16px;
    margin-bottom: 20px;
}

/* --- FOOTER --- */

.footer {
    padding: 60px 20px;
    background: #0b0b0b;
    border-radius: 20px;
    margin-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links {
    display: flex;
    gap: 40px;
}

/* --- HOVER EFFECTS --- */

.gradient-heading:hover {
    transform: translateY(-3px);

    text-shadow:
        0 0 25px rgba(96,165,250,0.6),
        0 0 50px rgba(59,130,246,0.45),
        0 15px 50px rgba(0,0,0,0.7);
}


/* --- TEXT COLORS --- */

.letter-spacing-3px {
    letter-spacing: 3px;
}

.color-737373 {
    color: #737373;
}

.color-white {
    color: #ffffff;
}

.color-blue {
    color: #3b82f6;
}

.color-bdbdbd {
    color: #bdbdbd;
}

.gradient-60a5fa-3b82f6-1d4ed8 {
    background: linear-gradient(
        90deg,
        #60a5fa,
        #3b82f6,
        #1d4ed8
    );
}

/* --- TEXT --- */

.font-bold {
    font-weight: 500;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}
.font-segoe-ui {
    font-family: "Segoe UI", sans-serif;
}

.text-italic {
    font-style: italic;
}

.text-sm {
    font-size: 0.875rem;
}

.text-md {
    font-size: 0.95rem;
}

.text-lg {
    font-size: 1.1rem;
}

.text-xl {
    font-size: 1.6rem;
}

.text-2xl {
    font-size: 2rem;
}

.text-3xl {
    font-size: 2.5rem;
}

.text-4xl {
    font-size: 3rem;
}

.text-5xl {
    font-size: 3.5rem;
}

.font-medium {
    font-weight: 500;
}


/* --- WIDTH --- */

.width-1200 {
    width: 100%;
    max-width: 1200px;
}


/* --- FLEX --- */

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-center-all {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* --- GAP --- */

.gap-32 {
    gap: 32px;
}

.gap-24 {
    gap: 24px;
}

.gap-12 {
    gap: 12px;
}

/* --- MARGIN --- */

.margin-left--50 {
    margin-left: -50px;
}

.mb--10 {
    margin-bottom: -10px;
}

.mt--10 {
    margin-top: -10px;
}

.mb--5 {
    margin-bottom: -5px;
}

.mt--5 {
    margin-top: -5px;
}



/* --- PADDING --- */

.p-14-24 {
    padding: 14px 24px;
}

.p-10-18 {
    padding: 10px 18px;
}


/* --- BORDER RADIUS --- */

.radius-20 {
    border-radius: 20px;
}

.radius-999 {
    border-radius: 999px;
}


/* --- BACKGROUND --- */

.bg-glass {
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(20px);
}

.bg-btn {
    background: linear-gradient(135deg, #ffffff20, #ffffff05);
}

.bg-btn-hover:hover {
    background: linear-gradient(135deg, #ffffff40, #ffffff10);
}


/* --- BORDER --- */

.border-glass {
    border: 1px solid rgba(255,255,255,0.08);
}

.border-btn {
    border: 1px solid rgba(255,255,255,0.12);
}


/* --- SHADOW --- */

.shadow-glass {
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}


/* --- POSITION --- */

.fixed {
    position: fixed;
}

.top-20 {
    top: 20px;
}

.left-50 {
    left: 50%;
}

.translate-center-x {
    transform: translateX(-50%);
}

.z-1000 {
    z-index: 1000;
}


/* --- NAV LINK EFFECT --- */

.nav-link {
    text-decoration: none;
    transition: 0.25s;
    position: relative;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0%;
    height: 2px;
    background: #ffffff;
    transition: 0.25s;
    transform: translateX(-50%);
    border-radius: 10px;
}

.nav-link:hover::after {
    width: 100%;
}


/* --- ACTIVE NAV LINK --- */
.nav-link.active {
    color: #ffffff;
}

.nav-link.active::after {
    width: 100%;
}


/* --- BUTTON --- */

.btn {
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-hover-lift:hover {
    transform: translateY(-4px);
}


/* --- LOGO --- */

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}


/* --- LINKS RESET --- */

.text-decoration-none {
    text-decoration: none;
}


/* --- GRADIENT HEADING --- */

.gradient-heading {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;

    text-shadow:
        0 0 15px rgba(59,130,246,0.35),
        0 0 30px rgba(37,99,235,0.25),
        0 10px 40px rgba(0,0,0,0.6);

    transition: all 0.4s ease;

    background-size: 200% 200%;
    animation: gradientMove 6s ease infinite;
}

/* --- KEYFRAMES --- */

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


/* --- CUSTOM CURSOR --- */

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 3000;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.cursor-ring {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    transition:
        width 0.2s ease,
        height 0.2s ease,
        background 0.2s ease,
        border 0.2s ease,
        transform 0.15s ease;
}

.cursor-ring.hover {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.9);
}

*,
*::before,
*::after {
    cursor: none !important;
}

/* --- REVEAL ANIMATION --- */

.reveal {
    opacity: 0;
    --reveal-y: 40px;
    --hover-y: 0px;
    transform: translateY(var(--reveal-y)) translateY(var(--hover-y));
    transition:
        opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
    opacity: 1;
    --reveal-y: 0px;
}

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }
.reveal.delay-6 { transition-delay: 0.6s; }
.reveal.delay-7 { transition-delay: 0.7s; }
.reveal.delay-8 { transition-delay: 0.8s; }
.reveal.delay-9 { transition-delay: 0.9s; }
.reveal.delay-10 { transition-delay: 1s; }

/* --- NAVBAR REVEAL --- */

header nav {
    opacity: 0;
    transform: translateY(-40px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

header nav.nav-show {
    opacity: 1;
    transform: translateY(0);
}




.heading-underline {
    position: relative;
    display: inline-block;
}

.heading-underline::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #3b82f6, #1d4ed8);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 4px;
}

.heading-underline:hover::after {
    width: 100%;
}

/* --- HOME GRID --- */

#home {
    position: relative;
    overflow: hidden;
}

#home::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

    background-size: 60px 60px;

    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
    );

    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 20%,
        black 80%,
        transparent 100%
    );

    pointer-events: none;
    z-index: 0;
}

#home > * {
    position: relative;
    z-index: 1;
}


/* --- FAQ --- */

.faq-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    padding: 24px;
    transition: 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-6px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    text-align: left;
    display: block;
}

.faq-answer {
    margin-top: 14px;
    opacity: 1;
    line-height: 1.6;
}


/* --- PORTFOLIO BUTTON --- */

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 18px;
}

.portfolio-btn:hover .arrow {
    transform: translateX(6px);
}



.works-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.work-card {
    padding: 24px;
    border-radius: 20px;
    background: rgba(20,20,20,0.55);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
    overflow: hidden;
    transition: 0.3s ease;
}

.work-card:hover {
    transform: translateY(-6px);
}

.work-img {
    width: 100%;
    border-radius: 16px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.work-card:hover .work-img {
    transform: scale(1.05);
}


.works-btn {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
}

/* --- FOOTER --- */
.footer {
    padding: 60px 20px;
    background: #0b0b0b;
    border-radius: 20px;
    margin-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.link-column h4 {
    font-weight: 500;
}

.footer-link {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #bdbdbd;
    text-decoration: none;
    transition: 0.25s;
}

.footer-link:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom .footer-nav a {
    color: #bdbdbd;
    text-decoration: none;
    transition: 0.25s;
}

.footer-bottom .footer-nav a:hover {
    color: #3b82f6;
}

/* --- HAMBURGER --- */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(0,0,0,0.6);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    z-index: 5000;
    background: none;
    border: none;
}

.hamburger:hover {
    background: rgba(0,0,0,0.8);
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 10px;
    transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.25s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 10px;
    transition: 
        transform 0.35s cubic-bezier(.77,0,.18,1),
        opacity 0.25s ease,
        width 0.3s ease;
}

@media (max-width: 900px) {
    a.btn {
        display: none;
    }
}


/* pojawia się hamburger */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}


/* ===== MOBILE NAV ===== */

.mobile-nav {
    position: fixed;
    inset: 0;
    background: rgba(6,6,6,0.96);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

.mobile-nav.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-link {
    font-size: 1.6rem;
    color: white;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: 0.25s;
}

.mobile-link:hover {
    color: #3b82f6;
}

/* ===== MOBILE SCALE ===== */

@media (max-width: 900px) {
    body {
        padding-top: 90px;
    }

    main {
        padding: 0 16px;
    }

    /* Skalowanie całej strony */
    html {
        font-size: 90%;
    }

    /* Hero */
    .text-5xl {
        font-size: 2.3rem;
    }

    .home-subtitle {
        font-size: 0.9rem;
    }

    /* GRID */
    .works-container,
    .faq-container {
        grid-template-columns: 1fr;
    }

    /* Reviews */
    .review-card {
        flex: 0 0 85%;
    }

    /* Navbar */
    header {
        width: 100%;
        left: 0;
        transform: none;
        padding: 0 16px;
    }

    header nav {
        width: 100%;
    }

    /* Footer */
    .footer {
        border-radius: 0;
    }
}

.filters-sticky {
    position: relative;
    background: rgba(6,6,6,0.95);
    backdrop-filter: blur(15px);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    z-index: 100;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

/* --- DROPDOWN --- */
.filter-dropdown {
    position: relative;
}

.filter-dropdown-btn {
    background: rgba(20,20,20,0.55);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-dropdown-btn:hover {
    background: rgba(30,30,30,0.65);
    border-color: #3b82f6;
    color: #3b82f6;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20,20,20,0.95);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px;
    margin-top: 4px;
    min-width: 180px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 200;
}

.filter-dropdown.active .dropdown-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* --- CHECKBOX + LABEL --- */
.filter-checkbox {
    accent-color: #3b82f6;
    cursor: pointer;
    margin-right: 8px;
    transition: 0.2s ease;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    color: #bdbdbd;
    font-weight: 500;
    transition: 0.2s ease;
}

.filter-checkbox:checked + .filter-label {
    color: #3b82f6;
    font-weight: 600;
}

.filter-label:hover {
    color: #3b82f6;
}

/* --- RESET BUTTON --- */
#resetFilters {
    background: rgba(20,20,20,0.55);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: none; /* domyślnie ukryty */
}

#resetFilters:hover {
    background: rgba(30,30,30,0.65);
    border-color: #3b82f6;
    color: #3b82f6;
}


.work-card {
    background: rgba(20,20,20,0.55);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.work-link {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.work-img {
    width: 100%;
    border-radius: 16px 16px 0 0;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.work-card:hover .work-img {
    transform: scale(1.05);
}

.work-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.work-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.work-type {
    font-size: 0.85rem;
    color: #bdbdbd;
    margin: 0;
}

.work-author {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.author-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 0.85rem;
    color: #fff;
}
