/* === USTAWIENIA GLOBALNE I KOLORY === */
:root {
    --bg-dark: #0d1b2a;
    --bg-medium: #1b263b;
    --text-light: #ede7de;
    --text-normal: #c5bdbc;
    --text-gold: #d3b98e;
    --text-hero: #ffe7c2;
    --hero-bg-right: url('6.png'); 
    --hero-bg-left: url('');   
    --hero-overlay-color: rgba(13, 27, 42, 0.8);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-normal);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.decorator-line {
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--text-normal);
    margin: 20px auto;
}

.section-subheading {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--text-normal);
    margin-top: 40px;
}

/* === NAWIGACJA === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background: rgba(13, 27, 42, 0.95);
    border-bottom: 1px solid rgba(211, 185, 142, 0.1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    color: var(--text-gold);
    font-size: 1.5rem; /* Nieco większe */
    font-weight: 400; /* Lżejsza waga (nie pogrubione) */
 /* Kursywa - dodaje elegancji */
    letter-spacing: 1px; /* Mniejsze odstępy, żeby litery były bliżej siebie */
    text-transform: none; /* Wyłączamy wielkie litery - teraz będzie pisane naturalnie */
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8; /* Delikatny efekt po najechaniu */
}


.logo-link:hover .nav-logo-img {
    opacity: 0.8; /* Lekki efekt po najechaniu */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-gold);
}

.nav-cta {
    border: 1px solid var(--text-gold);
    padding: 8px 20px;
    color: var(--text-gold) !important;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background-color: var(--text-gold);
    color: var(--bg-dark) !important;
}

/* === SEKCJA GŁÓWNA (HERO) - ZDJĘCIE + GRAFIKA SKRZYPIEC === */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden; 
    
    /* WARSTWA 1 i 2: Ciemny filtr oraz Zdjęcie Tła */
    /* Zmień 'tlo-hero.jpg' na nazwę swojego zdjęcia */
    background-image: 
        linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.75)), 
        url('galeria8.jpg');
        
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efekt Parallax dla zdjęcia głównego */
}

/* WARSTWA 3: Grafika skrzypiec/wiolonczeli (PNG) */
/* WARSTWA 3: Grafiki skrzypiec/wiolonczeli (PNG) po bokach */
.hero-background-graphic {
    position: absolute;
    width: 50%; /* Rozmiar instrumentu */
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4; /* Lekka przezroczystość */
    z-index: 0; /* Pod tekstem */
    pointer-events: none; /* Żeby nie przeszkadzało w klikaniu */
    top: 0;
}


/* Grafika LEWA (Nowa - Odbicie lustrzane) */
.hero-background-graphic.left {
    background-image: var(--hero-bg-right); /* Używamy TEGO SAMEGO obrazka (6.png) */
    background-position: center left; /* Ustawiamy go po lewej */
    left: -5%; /* Lekkie przesunięcie poza ekran z lewej */
    
    /* KLUCZOWA LINIJKA: Tworzy odbicie lustrzane w poziomie */
    transform: scaleX(-1); 
}

/* NA TELEFONACH: Ukrywamy obie grafiki, żeby nie zasłaniały tekstu */
@media (max-width: 768px) {
    .hero-background-graphic {
        display: none;
    }
}

/* Treść (Tekst i przyciski) */
.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 1; /* Musi być wyżej niż grafiki */
    text-align: center;
    margin-top: 60px;
}

/* Reszta stylów bez zmian... */
.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--text-hero);
    font-weight: 400;
}

.hero-content h2 {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--text-hero);
}

.hero-section .decorator-line {
    background-color: var(--text-hero);
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: var(--text-hero); 
}

.hero-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-section .cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--text-hero);
    min-width: 220px;
    height: 50px;
}

.hero-section .primary-btn {
    background-color: var(--text-hero);
    color: var(--bg-dark);
    font-weight: 700;
}

.hero-section .primary-btn:hover {
    background-color: transparent;
    color: var(--text-hero);
}

.hero-section .secondary-btn {
    background-color: transparent;
    color: var(--text-hero);
}

.hero-section .secondary-btn:hover {
    background-color: rgba(255, 231, 194, 0.1);
}

.hero-section .secondary-btn i {
    font-size: 0.8em;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--text-hero);
    opacity: 0.7;
    z-index: 2;
    animation: bounce 2s infinite;
}

/* === SEKCJA "O NAS" === */
.about-section {
    /* Mniejszy odstęp na dole, żeby skleić z Ofertą */
    padding: 80px 0 0 0; 
    background-color: var(--bg-dark);
    text-align: center;
}

.about-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-gold);
    font-weight: 400;
    letter-spacing: 5px;
}

.about-section .decorator-line {
    background-color: var(--text-gold);
    margin-bottom: 50px;
}

.about-vertical-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 60px; 
    width: 100%;
}

.about-text-narrow {
    text-align: left;
    max-width: 750px; 
    width: 100%;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.8;
}

.drop-cap {
    float: left;
    font-size: 4.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-gold);
    line-height: 0.8;
    margin-right: 15px;
    margin-top: 5px;
}

.text-block-single {
    border-left: 2px solid var(--text-gold);
    padding-left: 30px;
    margin-bottom: 30px;
}

.text-block-single p {
    font-size: 1rem;
    color: var(--text-normal);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify; 
}

.conclusion-text {
    font-weight: 700;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid rgba(211, 185, 142, 0.3);
    padding-top: 30px;
}

/* ZDJĘCIA W RZĘDZIE */
.about-images-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px;
    width: 100%;
    max-width: 1200px; 
}

.row-img {
    width: 100%;
    /* Zredukowana wysokość, żeby zdjęcia były szersze optycznie */
    height: 220px; 
    object-fit: cover;
    display: block;
    border: 1px solid rgba(211, 185, 142, 0.3);
    transition: all 0.4s ease;
    filter: brightness(0.95);
}

.row-img:hover {
    transform: translateY(-10px);
    filter: brightness(1.1);
    border-color: var(--text-gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    z-index: 2;
}

/* === SEKCJA "OFERTA" === */
.offer-section {
    /* Zmniejszony odstęp od góry - bliżej zdjęć */
    padding: 40px 0 80px 0; 
    text-align: center;
    background-color: var(--bg-dark);
}

.offer-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-gold);
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.offer-section .decorator-line {
    background-color: var(--text-gold);
}

.event-types-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
    text-align: left;
}

.event-types-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: var(--text-normal);
}

.event-types-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    background-color: var(--text-gold);
    opacity: 0.7;
}

/* === SEKCJA "PROGRAMY KONCERTOWE" (Z TŁEM PARALLAX) === */
.programs-section {
    position: relative; 
    padding: 100px 0;
    text-align: center;
    /* UPEWNIJ SIĘ ŻE MASZ TEN PLIK W FOLDERZE */
    background-image: url('galeria5.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efekt Parallax */
    overflow: hidden;
}

.programs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 27, 42, 0.75); /* Przyciemnienie tła */
    z-index: 1;
}

.programs-section .container {
    position: relative;
    z-index: 2;
}

.programs-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #ffffff; /* Biały tekst na ciemnym tle */
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.programs-section .decorator-line {
    background-color: var(--text-gold);
    margin-bottom: 60px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Szklane kafelki */
.program-item {
    background-color: rgba(13, 27, 42, 0.6); 
    border: 1px solid rgba(211, 185, 142, 0.3); 
    padding: 40px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px); 
}

.program-item:hover {
    background-color: rgba(13, 27, 42, 0.9); 
    border-color: var(--text-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.program-item i {
    font-size: 1.8rem;
    color: var(--text-gold);
    margin-bottom: 20px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

.program-item:hover i {
    transform: rotate(10deg) scale(1.1);
}

.program-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-gold); 
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.program-item p {
    font-size: 1rem;
    color: #e0e0e0; 
    line-height: 1.6;
}

/* === SEKCJA "ARANŻACJE" === */
.arrangements-section {
    padding: 60px 0;
    text-align: center;
}

.arrangements-content {
    position: relative;
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.arrangements-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--text-gold);
    opacity: 0.5;
}

.arrangements-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--text-gold);
    opacity: 0.5;
}

.arrangements-content h3 {
    font-family: 'Playfair Display', serif;
    color: var(--text-gold);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
}

.arrangements-content p {
    font-size: 1rem;
    color: var(--text-normal);
}

/* === SEKCJA MULTIMEDIA === */
.multimedia-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

.multimedia-section .container {
    width: 100%;
    max-width: 1100px;
    text-align: center;
}

.multimedia-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-gold);
    font-weight: 400;
    letter-spacing: 5px;
    display: block;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.multimedia-section .decorator-line {
    background-color: var(--text-gold);
    margin: 20px auto 50px auto;
}

.single-video-container {
    max-width: 100%; 
    margin: 0 auto;
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid var(--text-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}

.multimedia-caption {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-normal);
    opacity: 0.8;
}

/* === SEKCJA "KONTAKT" === */
.contact-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-dark);
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--text-gold);
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.contact-section .decorator-line {
    background-color: var(--text-gold);
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.contact-item {
    background-color: var(--bg-medium);
    padding: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item a {
    text-decoration: none;
    color: var(--text-normal);
}

.contact-item i {
    font-size: 2rem;
    color: var(--text-gold);
    margin-bottom: 20px;
}

.contact-item p {
    font-size: 0.9rem;
    margin-top: 5px;
}

.contact-item:hover {
    background-color: #3b4554;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

.contact-section p {
    font-size: 1rem;
    margin-bottom: 30px;
}

.contact-section .cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-family: 'Lato', sans-serif;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 1px solid var(--text-gold);
    color: var(--text-gold);
}

.contact-section .cta-button:hover {
    background-color: var(--text-gold);
    color: var(--bg-dark);
}

/* === STOPKA === */
footer {
    padding: 40px 0;
    text-align: center;
}

footer hr {
    border: none;
    height: 1px;
    background-color: #4a5462;
    margin: 0 auto 30px auto;
    width: 90%;
    max-width: 1100px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    color: var(--text-gold);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-normal);
    opacity: 0.7;
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 900px) {
    /* Na tabletach zdjęcia 2x2 */
    .about-images-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        display: none; /* Na razie ukrywamy pasek na małych ekranach */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-section .cta-button {
        width: 100%; 
        max-width: 300px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-background-graphic {
        display: none;
    }
}

@media (max-width: 600px) {
    /* Na telefonach zdjęcia jedno pod drugim */
    .about-images-row {
        grid-template-columns: 1fr;
    }
    
    .row-img {
        height: 250px;
    }
    
    .about-text-narrow {
        padding: 0 10px;
    }
}

/* === ANIMACJE === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.about-section,
.offer-section,
.programs-section,
.arrangements-section,
.multimedia-section,
.contact-section {
    animation: fadeIn 1s ease-out;
}