body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #111;
    color: #eee;
}

.fullwidth-video-bg {
    position: fixed;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    z-index: -1;
    overflow: hidden;
}
.fullwidth-video-bg video {
    width: 100vw;
    height: 110vh;
    object-fit: cover;
    filter: grayscale(1) brightness(0.5);
}

/* --- MENU --- */
nav {
    background: #111;
    position: sticky; top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 8px 0;
    width: 100vw;
    box-sizing: border-box;
}
#logo-nav-desktop {
    height: 55px;
    margin: 0 40px;
}
nav .zawartosc ol {
    display: flex;
    list-style: none;
    gap: 26px;
    margin: 0; padding: 0;
}
nav .zawartosc a {
    color: #eee;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 7px;
    letter-spacing: 1px;
    transition: background 0.2s;
}
nav .zawartosc a:hover,
nav .zawartosc a:focus {
    background: #fff;
    color: #111;
}

/* --- MENU MOBILE --- */
.burger {
    display: none;
    position: fixed;
    top: 20px; right: 20px;
    font-size: 32px;
    color: #fff;
    background: none;
    border: none;
    z-index: 1201;
    cursor: pointer;
}
.nakladka {
    position: fixed;
    left: 0; top: 0;
    width: 0; height: 100%;
    background: rgba(20,20,20,0.98);
    z-index: 1200;
    overflow-x: hidden;
    transition: width 0.4s cubic-bezier(.77,0,.18,1);
}
.nakladka.open { width: 100vw; }
.nakladka ol {
    list-style: none;
    padding: 90px 20px 20px 20px;
    margin: 0; text-align: center;
}
.nakladka a {
    display: block;
    color: #fff;
    font-size: 2rem;
    margin: 22px 0;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
}
.zamknijX {
    position: absolute;
    top: 30px; right: 40px;
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    z-index: 1202;
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero::after {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.32) 0%,rgba(0,0,0,0.14) 100%);
    z-index: 1;
    pointer-events: none;
}
.home-zawartosc {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}
.hero h4 {
    font-size: 2.1rem;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 14px #000;
    letter-spacing: 2px;
}
.hero .logo img {
    display: block;
    margin: 30px auto 22px auto;
    width: 1200px;
    max-width: 85vw;
    height: auto;
    filter: drop-shadow(0 3px 18px #000a) grayscale(0) contrast(1.18);
}
.hero .scroll h3, .hero .scroll h5 {
    color: #e1e1e1;
    margin-top: 30px;
    font-size: 1.25rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #000;
}

/* --- O FILMIE --- */
.o-filmie-karta {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #111;
    z-index: 2;
    margin: 0;
    padding: 0;
    scroll-margin-top: 80px;
}
.o-filmie-tlo {
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: url('https://images.squarespace-cdn.com/content/v1/66ffe713cf1b3f5f3d2be612/fca45ada-e624-4964-9363-4743f2b9605f/030_007.JPG?format=2500w') center center/cover no-repeat;
    filter: grayscale(1) brightness(0.6);
    z-index: 1;
}
.o-filmie-zawartosc {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    gap: 44px;
    padding: 60px 40px;
}
.o-filmie-grafika img {
    width: 650px;
    max-width: 40vw;
    border-radius: 2px;
    filter: grayscale(1) contrast(1.12);
}
.o-filmie-opis {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-width: 560px;
    width: 100%;
}
.film-opis {
    color: #fff;
    font-size: 1.18rem;
    line-height: 1.7;
    padding-bottom: 22px;
    margin-bottom: 22px;
    font-weight: 400;
    letter-spacing: 0.4px;
    text-align: left;
    background: none;
    border-radius: 0;
    box-shadow: none;
}
.ofilmie {
    width: 100%;
    max-width: 380px;
    border-radius: 14px;
    filter: grayscale(1) brightness(0.92);
    box-shadow: 0 2px 18px #000b;
}
.ofilmie:hover {
    filter: grayscale(0.3) brightness(1);
}

/* --- RECENZJE --- */
#recenzje {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}
.recenzje-grafika {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 24px;
}
.recenzje-grafika img {
    max-width: 390px;
    width: 95vw;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 24px #000a) grayscale(0) contrast(1.15);
}
#recenzje hr {
    border: none;
    border-top: 3px solid #fff;
    width: 75%;
    max-width: 1000px;
    margin: 0 auto 45px auto;
    opacity: 0.25;
}
.recenzje-wrapper {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.recenzje-kolumna {
    flex: 1 1 320px;
    min-width: 240px;
    max-width: 340px;
    text-align: center;
    color: #fff;
    padding: 0 12px;
    margin: 0;
    border: none;
    background: none;
}
.recenzje-kolumna h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: 1px;
}
.ocena {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: 2px;
    color: #fff;
}
.recenzje-kolumna p {
    margin: 18px 0 0 0;
    font-size: 1.14rem;
    color: #ccc;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 1.55;
}

/* --- GALERIA --- */
#galeria {
    width: 100vw;
    min-height: 100vh;
    background: #222;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.galeria-title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
    width: 100%;
}
.galeria-title img {
    max-width: 430px;
    width: 50vw;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 22px #000a) grayscale(0) contrast(1.13);
}
.galeria-zawartosc {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.galeria-zawartosc img {
    width: 260px;
    aspect-ratio: 1/1.08;
    object-fit: cover;
    border-radius: 18px;
    filter: grayscale(1) contrast(1.14);
    box-shadow: 0 2px 14px #000b;
    cursor: pointer;
    transition: filter 0.35s, box-shadow 0.3s, transform 0.24s;
    background: #232323;
}
.galeria-zawartosc img:hover {
    filter: grayscale(0) contrast(1.2);
    transform: scale(1.07) translateY(-6px);
    box-shadow: 0 8px 32px #000d, 0 0 0 #fff0;
}

/* --- SKLEP (przykład) --- */
.sekcja-sklep {
    width: 100vw;
    min-height: 60vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0 30px 0;
    text-align: center;
}
.sekcja-sklep h1 {
    font-size: 2rem;
    margin-bottom: 32px;
    letter-spacing: 1px;
    font-weight: 700;
}
.sklep-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.sklep-merch {
    width: 820px;
    max-width: 90vw;
}
.przycisk-kup {
    display: inline-block;
    background: #fff;
    color: #111;
    text-decoration: none;
    padding: 14px 38px;
    border-radius: 50px;
    font-size: 1.18rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 5px;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    box-shadow: 0 2px 10px #0006;
}
.przycisk-kup:hover, .przycisk-kup:focus {
    background: #1e1e1e;
    color: #fff;
    transform: scale(1.05);
}

/* --- SOCIAL BAR --- */
.social-bar {
    width: 100vw;
    background: #181818;
    color: #fff;
    text-align: center;
    padding: 10px 0 7px 0;
    font-size: 1.09rem;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-top: 1.5px solid #232323;
    border-bottom: 1.5px solid #232323;
}
.social-bar span {
    margin-right: 10px;
    color: #eee;
    font-weight: 600;
    font-size: 1.06rem;
    letter-spacing: 2px;
}
.social-bar a {
    display: inline-block;
    margin: 0 7px;
    transition: transform 0.17s;
}
.social-bar a:hover {
    transform: scale(1.13) translateY(-2px);
}
.social-bar img {
    width: 27px;
    height: 27px;
    filter: invert(1) grayscale(1);
    vertical-align: middle;
}

/* --- STOPKA --- */
footer, .stopka {
    background: #111;
    color: #888;
    text-align: center;
    padding: 24px 10px 16px 10px;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 0;
}

/* --- MEDIA QUERIES (RESPONSYWNOŚĆ) --- */
@media (max-width: 700px) {
    nav {
        width: 110vw;
        min-width: 110vw;
        left: 0; right: 0;
        border-radius: 0;
    }
    nav .zawartosc ol { display: none; }
    .burger { display: block; }
    #logo-nav-desktop { height: 36px; margin: 0 18px; }
    .hero .logo img { width: 80vw; max-width: 98vw; min-width: 120px; }
    .o-filmie-zawartosc { flex-direction: column; gap: 28px; padding: 34px 10px; }
    .o-filmie-grafika img { max-width: 95vw; width: 95vw; margin-bottom: 16px; }
    .o-filmie-opis { align-items: center; max-width: 98vw; }
    .film-opis { text-align: center; padding: 0 2vw 18px 2vw; font-size: 1.02rem; }
    .ofilmie { max-width: 92vw; }
    .recenzje-wrapper { flex-direction: column; gap: 18px; align-items: center; }
    .recenzje-grafika img { max-width: 74vw; }
    .recenzje-kolumna { padding: 0 3vw; }
    .ocena { font-size: 1.4rem; }
    #recenzje h1 { font-size: 1.2rem; }
    .galeria-title img { max-width: 85vw; width: 90vw; }
    .galeria-zawartosc {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0 8px;
    }
    .galeria-zawartosc img {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    .social-bar { font-size: 0.97rem; gap: 10px; padding: 7px 0 6px 0; }
    .social-bar img { width: 22px; height: 22px; }
    .social-bar span { font-size: 0.96rem; letter-spacing: 1px; }
    .sekcja-sklep h1 { font-size: 1.15rem; }
    .sklep-merch { width: 96vw; }
    .przycisk-kup { font-size: 1rem; padding: 12px 22px; }
}

/* Galeria: 1 kolumna na bardzo małych ekranach */
@media (max-width: 500px) {
    .galeria-zawartosc { grid-template-columns: 1fr; }
}
