* {
    font-family: 'Inter', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background: #000000;
    color: #fff;
}



#showreel {
    width: 100%;              /* ❗ zamiast 200vw */
    height: calc(100vh - 320px);
    overflow: hidden;
    position: relative;
}

#showreel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    will-change: transform;
}




/* ===== MENU ===== */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}

nav {
    max-width: 1400px;
    margin: auto;
    padding: 16px 40px; /* MNIEJSZY PADDING */
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    
    
}

h1 {
    font-weight: 200;
    letter-spacing: 1px;
}

/* LEWA STRONA */
.nav-left {
    display: flex;
    align-items: center;
    gap: 28px; /* MNIEJSZY ODSTĘP */
}

 
    
.nav-links a {
    color: #fff;
    text-decoration: none;
    margin-right: 20px; /* MNIEJSZY ODSTĘP */
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-links a:hover {
    color: #ec0883;
    opacity: 1;
}

/* TELEFON */
.nav-phone {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 300;
    white-space: nowrap;
}
    
    

.nav-phone a {
    color: #ec0883;
    text-decoration: none;
    font-weight: 400;
}

.nav-phone a:hover {
    opacity: 0.8;
}

/* LOGO */
.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* ===== SHOWREEL ===== */
#showreel {
    width: 100%;              /* ❗ zamiast 200vw */
    height: calc(100vh - 320px);
    overflow: hidden;
    position: relative;
}

#showreel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    will-change: transform;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,.7),
        rgba(0,0,0,.3),
        rgba(0,0,0,.8)
    );
}

.hero-text {
    position: absolute;
    bottom: 80px;
    left: 80px;
    max-width: 900px;
}

.hero-text h1 {
    font-size: 64px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    opacity: 0.85;
}

/* ===== SEKCJE ===== */
section {
    max-width: 1400px;
    margin: auto;
    padding: 140px 40px;
}

h2 {
    color: #FFF;
    font-size: 42px;
    margin-bottom: 80px;
    font-weight: 200;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== OFERTA ===== */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
}

.service {
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 30px;
}

.service h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service p {
    opacity: 0.75;
    line-height: 1.6;
}

/* ===== KLIENCI ===== */
.clients {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 40px;
    align-items: center;
}

.client-logo {
    aspect-ratio: 1 / 1;
    border: 3px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    border-color: #ec0883;
    transform: scale(1.05);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== CASE STUDIES ===== */
.case {
    margin-bottom: 140px;
    max-width: 900px;
}

.case span {
    opacity: 0.5;
    letter-spacing: 2px;
    font-size: 12px;
}

.case h3 {
    font-size: 36px;
    margin: 15px 0;
}

.case p {
    font-size: 18px;
    opacity: 0.75;
    line-height: 1.7;
}

/* ===== KONTAKT ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1000px;
    margin: auto;
}

.contact-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 6px;
    filter: grayscale(100%);
}

.contact-info p {
    font-size: 22px;
    margin-bottom: 15px;
    opacity: 0.85;
}

/* ===== FOOTER ===== */
footer {
    color: #FFF;
    padding: 40px;
    text-align: center;
    font-size: 14px;
    opacity: 0.5;
}

    .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 24px;
    height: 2px;
    background: #fff;
}

    
  

    
    
@media (max-width: 768px) {

    nav {
        flex-direction: column;
        padding: 12px 20px;
        align-items: center;
     
    }

    .nav-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }


   @media (max-width: 768px) {

    .nav-links {
        position: static;
        width: 100%;
        margin-left: 0 !important;

        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;

        padding: 16px 0 8px;
        background: transparent;
    }

    .nav-links a {
        margin: 8px 0;
        font-size: 14px;
        letter-spacing: 2px;
    }
       
       
       

}

    .nav-links.open {
        display: flex;
    }

}


    
    
    

    .burger {
        display: flex;
    }
}

    
    @media (max-width: 768px) {

    body {
        padding-top: 140px;
    }

}
section {
    scroll-margin-top: 120px;
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 140px;
    }
}
    
    #showreel-mobile {
    display: none;
}
@media (max-width: 768px) {

    #showreel {
        display: none;
    }

    #showreel-mobile {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 100%;
        min-height: calc(100vh - 260px); 
        /* 260px ≈ header + menu */

        padding: 20px 0;
         margin-top: 200px;
    }

    #showreel-mobile video {
        width: 90%;
        max-width: 460px;
        aspect-ratio: 1 / 1;
        object-fit: cover;
    }

}

    .nav-mobile-contact {
    display: none;
}
    
    @media (max-width: 768px) {

    .nav-mobile-contact {
        display: block;
        position: absolute;
        top: 13%;
        right: 20px;

        font-size: 12px;
        letter-spacing: 1px;
        opacity: 0.85;
        white-space: nowrap;
    }

    .nav-mobile-contact a {
        color: #ec0883;
        text-decoration: none;
        font-weight: 400;
    }

}

   /* ===== MOBILE HEADER ===== */
@media (max-width: 768px) {

    nav {
        flex-direction: column;
        padding: 12px 20px;
        align-items: stretch;
    }

    .nav-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* kontakt po prawej */
    .nav-mobile-contact {
        display: block;
        font-size: 12px;
        letter-spacing: 1px;
        white-space: nowrap;
        opacity: 0.85;
        text-align: right;
    }

    .nav-mobile-contact a {
        color: #ec0883;
        text-decoration: none;
        font-weight: 400;
        margin-left: 4px;
    }

    /* menu pod spodem */
    .nav-links {
        margin-left: 0 !important;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 14px 0 6px;
    }

    .nav-links a {
        margin: 8px 0;
        font-size: 14px;
        letter-spacing: 2px;
    }

}
 /* ===== LANGUAGE SWITCH (MOBILE) ===== */
.lang-switch {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.85;
}

.lang-switch a {
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
}

.lang-switch a.active,
.lang-switch a:hover {
    opacity: 1;
    color: #ec0883;
}

.lang-switch span {
    margin: 0 4px;
    opacity: 0.5;
}

/* RIGHT SIDE TOP GROUP */
.nav-top-right {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

/* MOBILE ONLY */
@media (max-width: 768px) {
    .nav-top-right {
        justify-content: flex-end;
    }
}

    
    
/* ===== DESKTOP LANG SWITCH ===== */
.nav-lang {
    margin-left: 24px;
    font-size: 13px;
    letter-spacing: 1px;
    white-space: nowrap;
}

.nav-lang a {
    color: #fff;
    opacity: 0.6;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-lang a.active {
    color: #ec0883; /* róż */
    opacity: 1;
}
.nav-lang a:hover {
    opacity: 1;
    color: #ec0883;
}

.nav-lang span {
    margin: 0 4px;
    opacity: 0.5;
}

    
    
    @media (max-width: 768px) {
    .nav-lang {
        display: none;
    }
}
    
    
/* ===== DESKTOP CONTACT UNDER MENU ===== */
.nav-desktop-contact {
    margin-top: 60px;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-desktop-contact a {
    color: #ec0883;
    text-decoration: none;
    margin-left: 6px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .nav-desktop-contact {
        display: none;
    }
}
    
/* ===== RIGHT DESKTOP GROUP ===== */
.nav-right {
    display: flex;
        margin-top: 20px;
    flex-direction: column;
    align-items: flex-end; /* KLUCZ */
    text-align: right;
}

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

.nav-links a {
    margin-right: 20px;
}

.nav-desktop-contact {
    margin-top: 16px;
    margin-right: 21px;
    font-size: 13px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.nav-desktop-contact a {
    color: #ec0883;
    text-decoration: none;
    margin-left: 6px;
}

    