/*
Theme Name: Jordaszka | ADSCode
Description: Design 1:1 Nature Style
Version: 3.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    --primary-green: #97a73a;
    --dark-green: #4b5e26;
    --gold-text: #8e9a48;
    --white: #ffffff;
    --text-grey: #4a4a4a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-grey);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; font-weight: 400; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* --- 1. HERO SLIDER --- */
.hero-section {
    position: relative;
    height: 100vh; /* Pełna wysokość */
    overflow: hidden;
    padding: 0 !important;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center top;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.hero-slide.active { opacity: 1; z-index: 2; }

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 900px;
}

.hero-content h1 { font-size: 4rem;
        color: #fff;
        margin-bottom: 0.2em;
        line-height: 70px;
        font-weight:200;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-content p { font-size: 2.2rem;
        font-weight: 200;
        margin-top:40px;
        margin-bottom:80px;
        font-family: 'Playfair Display', serif; 
        line-height:45px; }
.hero-content .btn-primary {
    background: transparent; border: 2px solid #fff; color: #fff; padding: 12px 35px;
    border-radius: 50px; text-transform: uppercase; font-weight: 700; text-decoration: none;
    transition: 0.3s;
}
.hero-content .btn-primary:hover { background: #fff; color: #333; }

/* =========================================
   HERO SLIDER - RWD (TABLETY I TELEFONY)
   ========================================= */

/* --- TABLETY (Poniżej 992px) --- */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2rem; /* Zmniejszenie nagłówka */
    }
    .hero-content p {
        font-size: 1.2rem;
        padding: 0 30px; /* Marginesy bezpieczeństwa po bokach */
    }
}

/* --- SMARTFONY (Poniżej 769px) --- */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh; 
        height: 100dvh; 
        min-height: 500px;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%);
    }

    .hero-content {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
        text-shadow: 0 2px 5px rgba(0,0,0,0.6);
    }

    /* 1. ZWIĘKSZONY, BARDZIEJ CZYTELNY OPIS */
    .hero-content p {
        font-size: 1.15rem; /* Zwiększone z 1rem - lepsza proporcja do nagłówka */
        line-height: 1.6;
        margin-bottom: 35px; /* Więcej oddechu nad przyciskiem */
        padding: 0;
        
        display: -webkit-box;
        -webkit-line-clamp: 5; /* Zwiększyłem limit widocznych linijek do 5 */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* 2. ZMNIEJSZONY, ELEGANCKI PRZYCISK */
    .hero-content .btn-primary {
        display: inline-block; /* Wyłącza tryb pełnego bloku (100% szerokości) */
        width: auto;
        padding: 14px 35px; /* Nadaje smukłe, hotelowe proporcje */
        font-size: 0.95rem;
        background: rgba(255, 255, 255, 0.15); 
        backdrop-filter: blur(5px); 
        border: 1px solid rgba(255, 255, 255, 0.3); /* Subtelna ramka uwydatniająca przycisk */
    }

    .hero-content .btn-primary:active {
        background: #fff;
        color: #333;
        transform: scale(0.98); 
    }
}

/* --- BARDZO MAŁE EKRANY (np. iPhone SE, poniżej 380px) --- */
@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    .hero-content p {
        font-size: 0.95rem;
        -webkit-line-clamp: 3; /* Tylko 3 linie, by nie zasłonić przycisku */
    }
}

/* --- 2. BOOKING SEARCH BAR --- */
.booking-search-container {
    position: relative; z-index: 10; margin-top: -60px; padding: 0 20px;
}
.search-bar-wrapper {
    background: #fff; padding: 30px 40px; border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); display: flex; align-items: flex-end; gap: 20px;
    max-width: 1200px; margin: 0 auto;
}
.search-field { flex: 1; }
.search-field label { font-size: 0.75rem; text-transform: uppercase; color: #999; font-weight: 700; display: block; margin-bottom: 5px;}
.search-field input, .search-field select {
    width: 100%; border: none; border-bottom: 1px solid #ddd; padding: 10px 0; font-size: 1rem;
    border-radius: 0; background: transparent;
}
.btn-check-availability {
    background: var(--primary-green); color: #fff; border: none; padding: 15px 40px;
    font-weight: 700; text-transform: uppercase; border-radius: 4px; cursor: pointer; height: 50px;
}

/* --- 3. SEKCJA O NAS --- */
.about-section-design {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* KLUCZOWY ELEMENT: Tło liści */
.leaf-bg-top {
    position: absolute;
    top: 0; right: 0;
    width: 400px;
    height: 400px;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.about-design-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative; z-index: 1;
}

.owners-photo {
    width: 100%; height: auto; border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content h2 { font-size: 1.2rem; color: var(--gold-text); margin-bottom: 30px; }
.about-desc p { margin-bottom: 15px; color: #444; font-size: 1rem; line-height: 1.8; }

/* =========================================
   SEKCJA O NAS (ADSCode Pro Design)
   ========================================= */

.about-section-design {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #fdfdfd; /* Bardzo subtelne odcięcie tła od reszty strony */
}

/* --- DEKORACYJNE LIŚCIE (Z panelu WP) --- */
.leaf-bg-top-right {
    position: absolute;
    top: -50px; 
    right: -50px;
    width: 450px;
    height: 450px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8; /* Lekkie przygaszenie, by nie odciągać uwagi od tekstu */
}

.leaf-bg-bottom-left {
    position: absolute;
    bottom: -50px; 
    left: -50px;
    width: 400px;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* --- KONTENER I GRID --- */
.about-design-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px; /* Nieco większy oddech między zdjęciem a tekstem na PC */
    align-items: center;
    position: relative; 
    z-index: 2; /* Wyciąga treść nad liście */
}

/* --- ZDJĘCIE WŁAŚCICIELI --- */
.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 6px; /* Nowoczesne, delikatne zaokrąglenie */
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); /* Miękki, elegancki cień */
}

.owners-photo {
    width: 100%; 
    height: auto; 
    display: block;
    transition: transform 0.6s ease; /* Płynna animacja powiększenia */
}

.about-image-wrapper:hover .owners-photo {
    transform: scale(1.03); /* Luksusowy efekt przy najechaniu myszką */
}

/* --- TYPOGRAFIA (TEKSTY) --- */
.about-content {
    padding-right: 20px;
}

.about-content h2 { 
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem; 
    color: var(--primary-color, #7e9128); /* Główny kolor hotelu */
    margin-bottom: 30px; 
    font-weight: 400;
    line-height: 1.1;
}

.about-desc p { 
    margin-bottom: 20px; 
    color: #555; /* Delikatnie łagodniejszy szary (lepszy UX do czytania) */
    font-size: 1.05rem; 
    line-height: 1.8; 
    font-family: 'Open Sans', sans-serif;
}

.about-desc p:last-child {
    margin-bottom: 0;
}


/* =========================================
   RWD (TABLETY I TELEFONY)
   ========================================= */

@media (max-width: 991px) {
    .about-section-design {
        padding: 80px 0;
    }
    
    .about-design-grid {
        grid-template-columns: 1fr 1fr; /* Zrównanie kolumn na mniejszym tablecie */
        gap: 40px;
    }
    
    .about-content h2 { 
        font-size: 2.5rem; 
    }
    
    /* Zmniejszenie liści, by nie zasłaniały tekstu */
    .leaf-bg-top-right { display:none; }
    .leaf-bg-bottom-left { display:none; }
}

@media (max-width: 768px) {
    .about-section-design {
        padding: 60px 0;
    }
    
    .about-design-grid {
        grid-template-columns: 1fr; /* Przejście na JEDNĄ kolumnę (smartfony) */
        gap: 40px;
        text-align: center; /* Wyśrodkowanie na telefonach wygląda czytelniej */
    }
    
    /* Na mobile odwracamy kolejność, żeby zdjęcie było NAD tekstem (jeśli HTML ma tekst na odwrót, używamy 'order') */
    .about-image-wrapper {
        order: -1; 
        margin: 0 auto;
        max-width: 500px; /* Ograniczenie wielkości zdjęcia na mobile */
    }
    
    .about-content {
        padding-right: 0;
    }
    
    .about-content h2 { 
        font-size: 2.2rem; 
        margin-bottom: 20px;
    }
    
    .about-desc p { 
        font-size: 1rem; 
        text-align: left; /* Zostawiamy wyrównanie do lewej dla długich paragrafów - lepsze dla oka */
        padding: 0 10px;
    }

    /* Niemal całkowite wygaszenie liści, by uniknąć problemów z czytelnością na małym ekranie */
    .leaf-bg-top-right { width: 200px; height: 200px; opacity: 0.15; top: 0; right: 0; }
    .leaf-bg-bottom-left { display: none; } /* Dolny liść można ukryć by zaoszczędzić miejsce i odciążyć renderowanie */
}
/* =========================================
   4. PASEK USŁUG (STYLISTYKA INVERTED BOXÓW)
   ========================================= */

.services-strip-design {
    /* Utrzymujemy gradient w tle sekcji dla głębi */
    background-image: linear-gradient(135deg, #7e9128 0%, #5a7018 100%);
    padding: 80px 0;
    color: var(--white);
    position: relative;
    z-index: 5;
}

/* Tytuł sekcji - profesjonalny oddech */
.services-strip-design .section-title-gold {
    color: var(--white);
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 60px;
    font-weight: 700;
}

/* Kontener Siatki */
.services-text-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pojedynczy Box Usługi (Link/Item) */
.service-text-item, 
a.service-text-item {
    /* ODWRÓCENIE KOLORÓW */
    background: #ffffff !important; /* Czysta biel */
    border: 1px solid #ffffff;
    border-radius: 12px; /* Nowocześniejsze zaokrąglenie */
    padding: 30px 20px;
    
    display: flex;
    align-items: center;    
    justify-content: center; 
    
    min-height: 160px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Typografia wewnątrz boxa - ZIELONY TEKST */
.service-text-item h3,
a.service-text-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    /* Kolor zielony spójny z Twoją marką */
    color: #7e9128 !important; 
    margin: 0;
    text-align: center;
    transition: transform 0.3s ease;
}

/* Efekt najazdu myszką - Subtelny i elegancki */
a.service-text-item:hover {
    background: #f8f9f2 !important; /* Bardzo jasna oliwka */
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

a.service-text-item:hover h3 {
    transform: scale(1.05);
}

/* --- PROFESJONALNY RWD (MOBILE) --- */

/* Tablety (iPad, mniejsze laptopy) */
@media (max-width: 1024px) {
    .services-text-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .services-strip-design .section-title-gold {
        font-size: 2.5rem;
    }
}

/* Telefony (iPhone, Android) - FULL UX */
@media (max-width: 767px) {
    .services-strip-design {
        padding: 50px 0;
    }

    .services-strip-design .section-title-gold {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .services-text-grid {
        /* Ustawienie 1 kolumny dla wygody kciuka */
        grid-template-columns: 1fr; 
        gap: 15px;
    }

    .service-text-item, 
    a.service-text-item {
        min-height: 100px; /* Mniejsza wysokość na mobile dla oszczędności miejsca */
        padding: 20px;
        border-radius: 10px;
    }

    a.service-text-item h3 {
        font-size: 1.3rem;
    }

    /* Wyłączamy transformację hover na dotyku, żeby nie "wisiała" po kliknięciu */
    a.service-text-item:hover {
        transform: translateY(0);
    }
    
    /* Dodajemy efekt aktywnego kliknięcia dla feedbacku UX */
    a.service-text-item:active {
        background: #ececec !important;
        transform: scale(0.98);
    }
}

/* =========================================
   4. PASEK USŁUG - IDENTYCZNY UKŁAD DESKTOP & MOBILE
   ========================================= */

/* Kontener główny sekcji */
.services-strip-design {
    background-image: linear-gradient(135deg, #7e9128 0%, #5a7018 100%);
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    z-index: 5;
}

/* Tytuł sekcji */
.services-strip-design .section-title-gold {
    color: #ffffff;
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem); /* Responsywny font: min 2rem, max 3rem */
    margin-bottom: 60px;
    font-weight: 700;
}

/* Siatka kafelków */
.services-text-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* POJEDYNCZY KAFEL - KONSTRUKCJA IDENTYCZNA DLA WSZYSTKICH EKRANÓW */
.service-text-item {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 40px 30px 25px 30px;
    
    /* Mechanizm Flexbox dla wyrównania pionowego */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
    min-height: 250px; /* Stała wysokość minimalna dla balansu */
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

/* Nagłówek w kafelku */
.service-text-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #7e9128; /* Kolor marki ADSCode / Jordaszka */
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.3;
}

/* CTA - WYPCHNIĘTE NA SAM DÓŁ (margin-top: auto) */
.service-cta-label {
    margin-top: auto; /* Kluczowe: spycha element na sam dół */
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #7e9128; /* Na mobile od razu w kolorze dla lepszego UX */
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 20px;
}

.service-cta-label .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

/* --- EFEKTY INTERAKCJI (Desktop) --- */
@media (min-width: 992px) {
    .service-cta-label { color: #999; } /* Na desktopie startujemy z szarym */
    
    .service-text-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-color: #7e9128;
    }

    .service-text-item:hover .service-cta-label {
        color: #7e9128;
        letter-spacing: 2.5px;
    }

    .service-text-item:hover .dashicons {
        transform: translateX(6px);
    }
}

/* --- RESPONSYWNOŚĆ (IDENTYCZNY LOOK) --- */

@media (max-width: 1100px) {
    .services-text-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny dla tabletów */
    }
}

@media (max-width: 767px) {
    .services-strip-design {
        padding: 50px 0;
    }

    .services-text-grid {
        grid-template-columns: 1fr; /* 1 kolumna dla telefonów - wygoda kciuka */
        gap: 20px;
    }
    
    .service-text-item {
        min-height: 220px; /* Nieco mniejsza wysokość na smartfony, by nie zajmować całego ekranu */
        padding: 35px 25px 20px 25px;
    }

    .service-text-item h3 {
        font-size: 1.45rem;
    }
    
    /* Feedback dotykowy dla mobile */
    .service-text-item:active {
        background-color: #f9f9f9;
        transform: scale(0.98);
    }
}
/* =========================================
   SEKCJA OPINII BOOKING.COM (Trust Banner)
   ========================================= */

.hotel-booking-section {
    padding: 50px 20px;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Główna karta banera */
.booking-strip-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto; /* Żelazna zasada centrowania poziomego */
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 53, 128, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.booking-strip-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* --- LEWA STRONA (Logo i Ocena) --- */
.booking-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Logo Booking.com */
.booking-logo-img {
    max-height: 35px; /* Optymalna wysokość, by nie przytłaczała oceny */
    width: auto;
    object-fit: contain;
}

.booking-left strong {
    font-family: var(--font-sans, 'Open Sans', sans-serif);
    font-size: 1.4rem;
    color: #003580; /* Oryginalny kolor Booking.com */
}

/* Detale oceny (Wynik + Słowo) */
.booking-details {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid #eee; /* Delikatny separator między logo a oceną */
    padding-left: 30px;
}

/* Charakterystyczny kafelek z oceną (Booking Style) */
.b-score {
    background-color: #003580; /* Granat Booking */
    color: #ffffff;
    font-family: var(--font-sans, 'Open Sans', sans-serif);
    font-size: 1.4rem;
    font-weight: 800;
    padding: 8px 12px;
    /* Specyficzne zaokrąglenie: jeden róg ostry (dolny lewy) - ikona Booking.com */
    border-radius: 8px 8px 8px 0; 
    line-height: 1;
    display: inline-block;
}

.b-label {
    font-family: var(--font-sans, 'Open Sans', sans-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: #333333;
    text-transform: capitalize;
}

/* --- PRAWA STRONA (Przycisk) --- */
.booking-right {
    display: flex;
    align-items: center;
}

.btn-booking-outline {
    display: inline-block;
    font-family: var(--font-sans, 'Open Sans', sans-serif);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #003580;
    text-decoration: none;
    padding: 12px 25px;
    border: 2px solid #003580;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-booking-outline:hover {
    background-color: #003580;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 53, 128, 0.2);
}


/* =========================================
   RWD (Responsywność dla Tabletów i Telefonów)
   ========================================= */

@media (max-width: 991px) {
    .booking-strip-banner {
        padding: 25px 30px;
    }
    
    .booking-left {
        gap: 20px;
    }
    
    .booking-details {
        padding-left: 20px;
    }
}

@media (max-width: 768px) {
    .booking-strip-banner {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }
    
    .booking-left {
        flex-direction: column;
        gap: 15px;
    }
    
    .booking-details {
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 15px;
        flex-direction: column; /* Wynik i napis jedno pod drugim na bardzo wąskich ekranach */
        gap: 10px;
    }

    .b-score {
        font-size: 1.6rem;
        padding: 10px 15px;
    }
    
    .b-label {
        font-size: 1.1rem;
    }
    
    .booking-right {
        width: 100%;
    }
    
    .btn-booking-outline {
        width: 100%; /* Duży, wygodny przycisk na telefony */
        box-sizing: border-box;
        text-align: center;
        padding: 15px;
    }
}
/* --- 6. CTA (Drzewo) --- */
.cta-tree-section {
    position: relative;
    background-size: cover;
    padding: 120px 0; text-align: center; color: #fff;
}
.cta-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.4); }
.cta-title { position: relative; z-index: 2; font-size: 3rem; margin-bottom: 40px; }
.cta-buttons-row { position: relative; z-index: 2; display: flex; justify-content: center; gap: 20px; }
.btn-white-pill { background: #fff; color: #333; padding: 12px 40px; border-radius: 50px; font-weight: 700; text-decoration: none; }
/* =========================================
   MOBILE OPTIMIZATION: CTA TITLE (ADSCode)
   ========================================= */

@media (max-width: 767px) {
    .cta-title {
        font-size: 2rem;       /* Zmniejszenie wielkości fontu do bezpiecznych ~32px */
        margin-bottom: 25px;   /* Redukcja pustej przestrzeni pod nagłówkiem */
        line-height: 1.3;      /* Zacieśnienie wierszy, gdyby tekst spadł na 2 linijki */
        text-align: center;    /* Wymuszenie wyśrodkowania (najlepszy UX dla CTA na mobile) */
    }
}

/* Zabezpieczenie dla bardzo małych ekranów (np. stare modele telefonów) */
@media (max-width: 480px) {
    .cta-title {
        font-size: 1.75rem; 
        margin-bottom: 20px;
    }
}
/* --- 7. DLACZEGO MY --- */
.why-us-section { padding: 80px 0; background: #fff; }
.why-us-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; text-align: center; }
.why-col h3 { color: #5d6b2f; font-size: 1.5rem; margin: 20px 0; }
.why-icon { height: 60px; width: auto; display: inline-block; }


/* Główny kontener - usuwamy domyślne paddingi sekcji, 
   bo chcemy, aby kolory dotykały krawędzi ekranu */
.food-split-section {
    padding: 0;
    width: 100%;
    overflow: hidden;
    background-color: var(--white);
}

.food-split-wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 650px; /* Minimalna wysokość sekcji dla "dużego" wrażenia */
}

/* --- LEWA STRONA (TEKST) - ZMODYFIKOWANA --- */
.food-left-content {
    flex: 1 1 50%;
    background-color: var(--primary-green);
    color: var(--white);
    
    /* KLUCZOWA ZMIANA: Asymetryczny padding */
    /* Góra | Prawa (Bliżej zdjęcia) | Dół | Lewa (Daleko od krawędzi ekranu) */
    padding: 80px 50px 80px 15%; 
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start; /* Tekst wyrównany do lewej wewnątrz bloku */
}

/* Mały nagłówek nad tytułem */
.tiny-header {
    margin-left:5px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px; /* Szerokie litery wyglądają ekskluzywnie */
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 20px;
    display: block;
    font-family: 'Open Sans', sans-serif;
}

/* Główny tytuł */
.food-left-content h2 {
    font-size: 3rem; /* Duży, wyraźny font */
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-weight: 400; /* Szeryfy wyglądają lepiej, gdy nie są pogrubione */
}

/* Opis */
.food-left-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    width: 100%;      /* Zajmij całą dostępną szerokość */
    max-width: 700px; /* Zwiększamy nieco max-width */
}

/* --- LISTA Z PTASZKAMI --- */
.check-list {
    list-style: none;
    margin: 0 0 50px 0;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: center; /* Wyrównanie ikony z tekstem */
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.05rem;
    font-weight: 600; /* Lekko pogrubiony tekst */
}

.check-icon {
    background: rgba(255, 255, 255, 0.2); /* Półprzezroczyste kółko */
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0; /* Zapobiega zgniataniu kółka przy długim tekście */
}

/* --- PRZYCISK (OUTLINE) --- */
.btn-outline-large {
    display: inline-block;
    background-color: var(--primary-color);
    padding: 16px 45px;
    border: 1px solid var(--white);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}


.btn-outline-large:hover {
    background-color: var(--dark-green);
    color: var(--white);
    border: 1px solid var(--dark-green);
    transform: translateY(-3px); /* Lekkie uniesienie przycisku */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}



/* --- PRAWA STRONA (ZDJĘCIE) --- */
.food-right-image {
    flex: 1 1 50%; /* Zajmuje drugie 50% */
    position: relative;
    min-height: 500px; /* Zabezpieczenie, żeby zdjęcie nie zniknęło */
}

.food-right-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* KLUCZOWE: Obrazek wypełnia kadr bez deformacji */
    display: block;
}

/* =========================================
   RESPONSYWNOŚĆ (TABLETY I TELEFONY)
   ========================================= */
@media (max-width: 1200px) {
    .food-left-content {
        padding: 60px 40px 60px 10%; 
    }
    .food-left-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .food-split-wrapper {
        flex-direction: column;
    }

    .food-left-content {
        padding: 60px 30px; 
        align-items: center; /* Na telefonie ładniej wygląda wyśrodkowane */
        text-align: center;
    }

    .food-right-image {
        flex: auto;
        height: 400px; /* Stała wysokość zdjęcia na mobile */
        min-height: 400px;
        order: 2; /* Zdjęcie pod spodem */
    }
    
    .food-left-content h2 {
        font-size: 2.5rem;
    }
}




/* RWD */
@media (max-width: 992px) {
    .about-design-grid, .services-text-grid, .why-us-grid, .food-split-wrapper {
        grid-template-columns: 1fr;
    }
    .booking-search-container { margin-top: 0; }
    .search-bar-wrapper { flex-direction: column; }
    .btn-check-availability { width: 100%; }
}


/* =========================================
   FOOTER STYLES (Stopka)
   ========================================= */

/* Główny kontener stopki */
.site-footer {
    background-color: #1a1b1d; /* Ciemny grafit (zgodny z projektem) */
    color: #aaaaaa;            /* Jasnoszary tekst */
    padding: 80px 0 30px;      /* Duży odstęp od góry, mniejszy na dole */
    font-size: 0.95rem;        /* Nieco mniejszy font niż w treści strony */
    line-height: 1.8;          /* Dobra czytelność */
    margin-top: 0;             /* Stopka przylega do poprzedniej sekcji */
}

/* Siatka 3 kolumn */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 równe kolumny */
    gap: 50px;                             /* Odstępy między kolumnami */
    margin-bottom: 60px;                   /* Odstęp od paska copyright */
}

/* Nagłówki w kolumnach (Jordaszka, Wesela, Lokalizacja) */
.footer-column h3 {
    color: #ffffff;
    font-family: 'Playfair Display', serif; /* Elegancki font szeryfowy */
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

/* Opcjonalnie: Delikatna linia pod nagłówkiem (jeśli pasuje do gustu) */
/* .footer-column h3::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #97a73a;
    margin-top: 10px;
} */

/* Teksty w kolumnach */
.footer-column p {
    margin-bottom: 10px;
    color: #aaaaaa;
}

/* Linki (Telefony, Emaile) */
.footer-column a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Efekt najechania na link (Zielony kolor firmowy) */
.footer-column a:hover {
    color: #97a73a; 
}

/* Pasek Copyright na samym dole */
.copyright {
    border-top: 1px solid #333333; /* Bardzo subtelna linia oddzielająca */
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: #666666; /* Ciemniejszy szary dla mniej ważnych informacji */
}

/* =========================================
   RESPONSYWNOŚĆ (MOBILE & TABLET)
   ========================================= */

@media (max-width: 992px) {
    .site-footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr; /* Jedna kolumna pod drugą */
        gap: 40px;
        text-align: center; /* Wyśrodkowanie tekstu na telefonach */
    }

    /* Opcjonalnie: większe przyciski/linki na mobile dla wygody */
    .footer-column a {
        display: inline-block;
        padding: 2px 0;
    }
}
/* =========================================
   DEKORACJE LIŚCIE - POZYCJONOWANIE (DESKTOP ONLY)
   ========================================= */

/* 1. Rodzic sekcji "O Nas" musi pozwalać elementom wystawać */
.about-section-design {
    position: relative;
    overflow: visible !important; 
    z-index: 10;
}

/* Sekcja usług */
.services-strip-design {
    position: relative;
    overflow: hidden; 
}

/* Klasa wspólna dla wszystkich liści */
.deco-leaf {
    position: absolute;
    pointer-events: none; 
    z-index: 2;           
    opacity: 1;
    max-width: 50vw;
}

/* --- LIŚĆ 1: PRAWY GÓRNY --- */
.leaf-top-right {
    top: -360px;
    right: -700px;
    width: 1250px;
    max-width: 100%;
}

/* --- LIŚĆ 2: LEWY DOLNY --- */
.leaf-bottom-left {
    bottom: -520px;
    left: -800px;
    width: 1250px;
    max-width: 100%;
}

/* --- LIŚĆ 3: PRAWY (Sekcja Usługi) --- */
.leaf-services-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 400px;     
    opacity: 0.8;
}

/* --- UKRYWANIE NA MOBILE I TABLETACH --- */
@media (max-width: 992px) {
    /* To polecenie ukryje wszystkie elementy z klasą .deco-leaf 
       na ekranach węższych niż 992px */
    .deco-leaf {
        display: none !important;
    }
}

/* =========================================
   STRONA HOTEL (PDF LAYOUT)
   ========================================= */

.hotel-pdf-wrapper {
    font-family: 'Open Sans', sans-serif; /* Lub Twój domyślny font */
    background-color: #fff;
    color: #333;
    /* Upewniamy się, że tło jest białe, aby efekty tła (deszcz/liście) nie zasłaniały tekstu */
    position: relative;
    z-index: 20; 
}

/* 1. HERO */
.hotel-hero {
    position: relative;
    height: 60vh; /* Wysokość nagłówka */
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Tekst do lewej jak w PDF */
    color: #fff;
    padding-top: 80px; /* Miejsce na menu */
}

.hotel-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4); /* Przyciemnienie zdjęcia */
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hotel-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hotel-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hotel-hero-divider {
    width: 100px;
    height: 3px;
    background-color: #7e9128; /* Zielony z PDF */
    margin-bottom: 30px;
}

.hotel-hero-desc {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}

/* 2. INTRO */
.hotel-intro {
    padding: 60px 0;
    background: #fff;
}
.hotel-intro-box {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* 3. FEATURES (3 COLUMNS) */
.hotel-features {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.hotel-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.hotel-feat-col {
    text-align: center;
    padding: 20px;
}

.feat-icon img {
    height: 60px;
    margin-bottom: 20px;
}

.hotel-feat-col h3 {
    color: #7e9128; /* Zielony nagłówek */
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.hotel-feat-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* 4. CTA STRIP */
.hotel-cta-strip {
    background-color: #e0e0e0;
    padding: 40px 0;
    border-top: 4px solid #7e9128;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-text {
    font-size: 1.3rem;
    font-style: italic;
    color: #444;
    font-family: 'Playfair Display', serif;
}

.btn-hotel-cta {
    background: #7e9128;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.3s;
}
.btn-hotel-cta:hover {
    background: #5a7018;
    color: #fff;
}

/* 5. FAMILY & 6. AMENITIES */
.section-header-green {
    color: #7e9128;
    font-size: 2rem;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    display: inline-block;
}

.hotel-family, .hotel-amenities {
    padding: 50px 0;
    background: #fff;
}

.hotel-family-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.fam-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.fam-content ul, .amenities-box ul {
    list-style: disc;
    padding-left: 20px;
}
.fam-content li, .amenities-box li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

/* 7. BOTTOM LINKS */
.hotel-bottom-links {
    padding: 40px 0;
    background-color: #333;
    color: #fff;
}

.links-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.h-link-item {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.h-link-item:hover {
    border-bottom: 1px solid #7e9128;
    color: #7e9128;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hotel-features-grid, .hotel-family-grid {
        grid-template-columns: 1fr;
    }
    .cta-flex {
        flex-direction: column;
        text-align: center;
    }
    .links-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

.booking-search-banner {
    padding: 60px 0;
    background: #fff;
}

.search-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-bottom: 4px solid #7e9128; /* Zielony Jordaszki */
}

.search-header {
    text-align: center;
    margin-bottom: 25px;
}

.search-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #333;
    margin-bottom: 5px;
}

.search-header p {
    font-size: 14px;
    color: #777;
}

.booking-form {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.booking-form .input-group {
    flex: 1;
    min-width: 200px;
    position: relative;
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 5px 15px;
    border-radius: 6px;
}

.booking-form .input-group .dashicons {
    color: #7e9128;
    margin-right: 10px;
}

.booking-form input, .booking-form select {
    border: none;
    background: transparent;
    width: 100%;
    padding: 10px 0;
    font-size: 15px;
    color: #333;
    outline: none;
}

.btn-booking-search {
    flex: 1;
    min-width: 200px;
    background: #7e9128; /* Kolor Booking dla zaufania */
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    letter-spacing: 1px;
}

.btn-booking-search:hover {
    background: var(--dark-green);
}

/* Responsywność */
@media (max-width: 991px) {
    .booking-form {
        flex-direction: column;
    }
    .booking-form .input-group, .btn-booking-search {
        width: 100%;
    }
}

/* =========================================
   ZAAWANSOWANY CENNIK (PRICING)
   ========================================= */

.pricing-section {
    padding: 80px 0;
    background-color: var(--bg-light, #F9FBF9); /* Pasuje do motywu Jordaszka */
}

.pricing-header {
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center; /* Ważne, żeby wyróżniony pakiet mógł być wyższy */
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Wyróżniony pakiet (Polecany) */
.pricing-card.popular-card {
    border: 2px solid var(--primary-color, #97a73a);
    box-shadow: 0 10px 30px rgba(151, 167, 58, 0.15);
    padding: 50px 30px; /* Nieco wyższy od innych */
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color, #97a73a);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pack-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.pack-price-box {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.pack-price-box .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color, #97a73a);
    line-height: 1;
}

.pack-price-box .period {
    display: block;
    font-size: 14px;
    color: #888;
    margin-top: 5px;
}

.pack-features {
    flex-grow: 1; /* Pozwala wyrównać przyciski na dole */
}

.pack-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pack-features li {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.pack-features li .dashicons {
    color: var(--primary-color, #97a73a);
    margin-right: 10px;
    font-size: 20px;
    margin-top: 2px;
}

.pack-footer {
    margin-top: 30px;
    text-align: center;
}

/* Przyciski */
.btn-pricing {
    display: inline-block;
    width: 100%;
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-pricing.btn-primary {
    background: var(--primary-color, #97a73a);
    color: #fff;
    border: 2px solid var(--primary-color, #97a73a);
}

.btn-pricing.btn-primary:hover {
    background: #333;
    border-color: #333;
    color: #fff;
}

.btn-pricing.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.btn-pricing.btn-outline:hover {
    border-color: var(--primary-color, #97a73a);
    color: var(--primary-color, #97a73a);
}

@media (max-width: 768px) {
    .pricing-card.popular-card {
        padding: 40px 30px;
    }
}

/* =========================================
   SEKCJA UDOGODNIENIA (IKONY + TEKST)
   ========================================= */
.hotel-amenities-section {
    padding: 60px 0;
    background: #fff;
}

/* Grid ikon - 4 kolumny na desktopie */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 40px 20px;
    margin-bottom: 50px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
}

/* Kontener ikony (utrzymuje równą wysokość nawet jak obrazki są różne) */
.amenity-icon {
    height: 70px; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.amenity-icon img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Podpis ikony */
.amenity-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    color: #555;
    line-height: 1.3;
}

/* Sekcja "Inne udogodnienia" na dole */
.other-amenities-box {
    text-align: left;
    padding-top: 10px;
}

.other-amenities-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 24px;
    color: var(--primary-color, #7e9128); /* Główny zielony kolor Jordaszki */
    margin-bottom: 8px;
    font-weight: 600;
}

.other-amenities-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* --- Responsywność (Tablety i Telefony) --- */
@media (max-width: 991px) {
    .amenities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny na tabletach/smartfonach */
        gap: 30px 15px;
    }
    .other-amenities-box {
        text-align: center; /* Wyśrodkowanie tekstu na telefonach dla lepszego UX */
    }
}

@media (max-width: 480px) {
    .amenity-text {
        font-size: 16px; /* Nieco mniejszy font na bardzo małych ekranach */
    }
}
/* =========================================
   SITE HEADER - PRO DESIGN (ADSCode.pl)
   ========================================= */

/* --- ZMIENNE GLOBALNE (Łatwe zarządzanie kolorami) --- */
:root {
    --primary-color: #97a73a;
    --topbar-bg: #23282d;
    --text-dark: #333333;
    --text-light: #f1f1f1;
    --bg-white: #ffffff;
    --header-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --transition-speed: 0.3s;
}

/* Reset dla headera */
.site-header a { text-decoration: none; }
.site-header ul { list-style: none; margin: 0; padding: 0; }

/* --- 1. KONTENER GŁÓWNY (STICKY) --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    background-color: var(--bg-white);
    box-shadow: var(--header-shadow);
    transition: all var(--transition-speed) ease;
}

.site-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* --- 2. HEADER TOP (Pasek Kontaktowy) --- */
.header-topbar {
    background-color: var(--topbar-bg);
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 8px 0;
    font-family: 'Open Sans', sans-serif;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-contact {
    display: flex;
    gap: 20px;
}

.topbar-link {
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color var(--transition-speed) ease;
}

.topbar-link:hover {
    color: var(--primary-color);
}

.topbar-link .dashicons, 
.topbar-info .dashicons {
    font-size: 16px;
    margin-right: 6px;
    color: var(--primary-color);
    line-height: 1;
}

.topbar-divider {
    color: rgba(255, 255, 255, 0.2);
}

.topbar-info {
    display: flex;
    align-items: center;
}

/* --- 3. HEADER MAIN (Logo + Menu + CTA) --- */
.header-main {
    padding: 15px 0;
    background-color: var(--bg-white);
    position: relative;
}

.header-main-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Pozwala menu spaść w dół na mobile */
}

/* Logo (Do lewej) */
.site-branding {
    flex: 1;
    display: flex;
}

.site-logo-img {
    max-height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.site-title-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

/* --- 4. NAWIGACJA DESKTOP (Na środku) --- */
.main-navigation {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    transition: color var(--transition-speed) ease;
    display: block;
}

/* Animowane podkreślenie (Twój ulubiony efekt) */
.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* --- 5. PRZYCISK CTA (Do prawej) --- */
.header-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.btn-header-cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 4px 15px rgba(151, 167, 58, 0.2);
}

.btn-header-cta:hover {
    background-color: var(--text-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Klawisze widoczności pomocnicze */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0;
}

.hide-on-desktop { display: none; }


/* =========================================
   6. RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================= */
@media (max-width: 991px) {
    .hide-on-mobile { display: none; }
    .hide-on-desktop { display: flex; }
    
    /* Pasek górny na środku */
    .topbar-contact {
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap; /* ZABRANIA spadania do nowej linii */
        gap: 8px; /* Zmniejszony odstęp na małych ekranach */
        font-size: 11px; /* Delikatnie mniejsza czcionka, by numery się zmieściły */
    }

    .topbar-link {
        white-space: nowrap; /* Numery telefonów nie przełamią się w połowie */
    }

    /* Opcjonalnie: ukrycie pionowej kreski separatora na bardzo wąskich telefonach, jeśli wolisz sam odstęp */
    @media (max-width: 380px) {
        .topbar-divider { display: none; }
    }

    /* Przycisk menu po lewej */
    .menu-toggle {
        flex: 1;
        justify-content: flex-start;
    }

    /* Logo idealnie na środku */
    .site-branding {
        flex: 2;
        justify-content: center;
    }
    
    .site-logo-img {
        max-height: 45px; /* Nieco mniejsze logo dla mobile */
    }

    /* Pusty blok z prawej dla idealnego balansu środka */
    .header-main-inner::after {
        content: '';
        display: block;
        flex: 1;
    }

    /* Menu ląduje pod spodem (Push Down) */
    .main-navigation {
        display: none; /* Domślnie ukryte */
        flex-basis: 100%;
        order: 10;
        background-color: var(--bg-white);
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px solid #f0f0f0;
    }

    /* Aktywacja menu z JS */
    .main-navigation.is-open {
        display: block;
        animation: menuFadeIn 0.3s ease-out forwards;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f9f9f9;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li a {
        padding: 15px 20px;
        text-align: center;
        font-size: 1rem;
    }

    .nav-menu li a::after {
        display: none; /* Wyłączamy animowane podkreślenie na telefonach */
    }
}

/* Lekka animacja pojawiania się menu */
@keyframes menuFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   SEKCJA RODZINA PREMIUM (CLEAN LOOK)
   ========================================= */

/* Tło całej sekcji - delikatny szary dla kontrastu z białą kartą */
.family-section-modern {
    padding: 80px 0;
    background-color: #f8f9fa; 
    position: relative;
}

/* --- GŁÓWNA KARTA PREMIUM --- */
.family-premium-card {
    background: #ffffff;
    border-radius: 16px; /* Nowoczesne zaokrąglenie */
    overflow: hidden; /* Aby zdjęcie nie wystawało poza zaokrąglenie */
    box-shadow: 0 20px 40px rgba(0,0,0,0.06); /* Bardzo miękki, luksusowy cień */
    display: flex;
    flex-direction: row;
    min-height: 500px; /* Minimalna wysokość karty */
}

/* --- LEWA KOLUMNA: ZDJĘCIE --- */
.family-card-image {
    flex: 1; /* Zajmuje 50% szerokości (lub mniej zależnie od ustawień prawej kolumny) */
    min-width: 40%; /* Zdjęcie nie będzie węższe niż 40% */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- PRAWA KOLUMNA: TREŚĆ --- */
.family-card-content {
    flex: 1.5; /* Prawa kolumna jest nieco szersza dla lepszego oddechu tekstu */
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Typografia */
.family-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #333; /* Ciemny szary, nie czarny, dla elegancji */
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.2;
}

.family-sub-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-color, #7e9128); /* Zielony kolor marki */
    margin-bottom: 20px;
    font-weight: 600;
}

/* --- SIATKA DLA LIST (Obok siebie na PC) --- */
.family-lists-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dwie równe kolumny */
    gap: 40px; /* Odstęp między listami */
}

/* --- PROFESJONALNA LISTA Z PTASZKAMI --- */
.premium-check-list {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.premium-check-list li {
    position: relative;
    padding-left: 30px; /* Miejsce na ikonę */
    margin-bottom: 12px;
    color: #555; /* Stonowany kolor tekstu */
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

/* Zielony "ptaszek" zamiast kropki */
.premium-check-list li::before {
    content: '✓'; /* Można tu użyć też ikony z dashicons lub fontawesome */
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color, #7e9128);
    font-weight: 900;
    font-size: 1.1rem;
}


/* =========================================
   RWD (RESPONSYWNOŚĆ)
   ========================================= */

/* Tablety i mniejsze ekrany */
@media (max-width: 992px) {
    .family-premium-card {
        flex-direction: column; /* Zdjęcie nad tekstem */
        min-height: auto;
    }

    .family-card-image {
        width: 100%;
        height: 350px; /* Ustalamy wysokość zdjęcia na mobile */
        min-width: auto;
    }

    .family-card-content {
        padding: 40px 30px;
    }

    .family-main-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
    }
}

/* Telefony */
@media (max-width: 767px) {
    .family-section-modern {
        padding: 60px 0;
    }

    /* Listy jedna pod drugą na telefonach */
    .family-lists-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .family-card-image {
        height: 250px;
    }
    
    .family-sub-title {
        text-align: center;
    }
}

/* --- LISTY WNĘTRZ SEKCJI ZIG-ZAG --- */
.feature-lists-inline {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Dwie kolumny obok siebie */
    gap: 30px;
    margin-top: 30px;
    text-align: left; /* Wymuszamy wyrównanie do lewej dla list */
}

.feature-sub-title {
    font-size: 1.3rem;
    color: var(--c-gold);
    margin-bottom: 15px;
    font-family: var(--font-serif);
}

.premium-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.premium-check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--c-text);
    line-height: 1.5;
}

/* Stylowy zielony 'ptaszek' */
.premium-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--c-dark-green);
    font-weight: 800;
    font-size: 1.1rem;
}

/* RWD - Telefony */
@media (max-width: 768px) {
    .feature-lists-inline {
        grid-template-columns: 1fr; /* Składa listy jedna pod drugą na komórkach */
        gap: 20px;
    }
}

.feature-section {
    padding: 100px 0 0 0;
    background-color: #ffffff;
    overflow: hidden;
}



    .feature-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 50px;
        margin-bottom: 80px;
    }
    /* To tutaj odpowiada za lustrzane odbicie co drugiego wiersza */
    .feature-row:nth-child(even) {
        flex-direction: row-reverse;
    }
    .feature-img {
        flex: 1;
        min-width: 300px;
    }
    
    /* --- EDYCJA: PROFESJONALNY ZIELONY CIEŃ --- */
    .feature-img img {
        width: 100%;
        height: auto;
        border-radius: 4px;
        /* Używamy RGBA dla koloru #1e3d2f (Dark Green) z przezroczystością */
        box-shadow: 0 20px 40px -10px rgba(30, 61, 47, 0.4);
        transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    /* Efekt uniesienia po najechaniu */
    .feature-img img:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 60px -12px rgba(30, 61, 47, 0.6);
    }
    /* ------------------------------------------ */

    .feature-text {
        flex: 1;
        min-width: 300px;
    }
    .feature-text h3 {
        font-size: 2.2rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 20px;
    }
    .feature-text h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--c-gold);
    }
    /* Linia pod tytułem też się odbija */
    .feature-row:nth-child(even) .feature-text h3::after {
        right: auto;
        left: 0;
    }
    .feature-row:nth-child(even) .feature-text {
        text-align: left;
    }

    /* Złoty kropka/ptaszek zamiast myślnika */
.feature-desc ul li::before {
    content: '—'; /* Elegancka długa pauza */
    position: absolute;
    left: 0;
    color: var(--c-gold);
    font-weight: bold;
}

/* =========================================
   SEKCJA STYL (BANNER WESELNY/HOTELOWY)
   ========================================= */

.style-banner-section {
    position: relative;
    padding: 100px 0;
    color: #ffffff;
    text-align: center;
    overflow: hidden; /* Ważne dla wystających liści */
}

.style-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.style-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #ffffff !important;
    margin-bottom: 40px;
}

.style-description {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.4;
    margin-bottom: 30px;
    font-style: italic;
}

.style-subtext {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 50px;
    opacity: 0.95;
}

/* Przycisk obramowany (jak na screenie) */
.btn-style-outline {
    display: inline-block;
    padding: 15px 45px;
    border: 2px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-style-outline:hover {
    background: #ffffff;
    color: var(--c-dark-green);
}

/* Dekoracyjne liście w tle */
.style-leaf {
    position: absolute;
    height: 100%;
    width: auto;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.style-leaf-left {
    left: -5%;
    bottom: -10%;
    transform: rotate(15deg);
}

.style-leaf-right {
    right: -5%;
    top: -10%;
    transform: rotate(-15deg) scaleX(-1);
}

@media (max-width: 768px) {
    .style-banner-section { padding: 60px 20px; }
    .style-leaf { display: none; } /* Ukrywamy na mobile dla czytelności */
}

/* =========================================
   ADSCODE PREMIUM GALLERY (Zgodna z Projektem)
   ========================================= */

.adscode-premium-gallery {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Układ Tytułu i Filtrów */
.gallery-header-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.adscode-gallery-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #556b5d; /* Ciemniejsza zieleń z projektu */
    margin: 0;
}

/* FILTRY (Wygląd z pliku JPG) */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-filters .filter-btn {
    background: transparent;
    border: 1px solid #556b5d;
    color: #556b5d;
    padding: 8px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
    background: #556b5d;
    color: #ffffff;
    border-color: #556b5d;
    box-shadow: 0 4px 10px rgba(85, 107, 93, 0.2);
}

/* SIATKA MASONRY (3 Zdjęcia w Rzędzie) */
.gallery-masonry-grid {
    column-count: 2;
    column-gap: 20px;
    width: 100%;
}



.gallery-masonry-item {
    break-inside: avoid;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px; /* Zaokrąglenia z projektu */
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Subtelny cień */
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-masonry-item.hidden {
    display: none; 
}

.gallery-item-inner {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.gallery-item-inner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.6s ease, filter 0.3s ease;
}

/* Subtelny efekt Hover na zdjęciach */
.gallery-masonry-item:hover .gallery-item-inner img {
    transform: scale(1.03);
    filter: brightness(1.05);
}

/* --- LIGHTBOX MODAL --- */
.adscode-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.95); /* Jasny modal, modny i ekskluzywny */
    cursor: pointer;
}
.lightbox-content {
    position: relative;
    z-index: 2;
    max-width: 90vw;
    max-height: 90vh;
}
.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    display: block;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: #333;
    font-size: 40px;
    cursor: pointer;
    z-index: 3;
    transition: color 0.3s;
    padding: 20px;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: #556b5d; }
.lightbox-close { top: 10px; right: 20px; font-size: 50px; line-height: 1; }
.lightbox-prev { left: 10px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 10px; top: 50%; transform: translateY(-50%); }

/* RESPONSYSNOŚĆ MOBILE */
@media (max-width: 991px) {
    .gallery-masonry-grid { column-count: 2; }
    .gallery-header-row { flex-direction: column; align-items: flex-start; gap: 15px; }
}
@media (max-width: 576px) {
    .gallery-masonry-grid { column-count: 1; }
    .gallery-filters { justify-content: flex-start; }
    .lightbox-prev, .lightbox-next { padding: 5px; font-size: 30px; }
}

/* PROFESJONALNY ZIELONY PRZYCISK (ADSCode Style) */
.btn-green-pill {
    display: inline-block;
    background-color: #556b5d; /* Twoja ciemna zieleń */
    color: #ffffff !important;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none !important;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #556b5d;
}

.btn-green-pill:hover {
    background-color: transparent;
    color: #556b5d !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(85, 107, 93, 0.2);
}
/* ROZSZERZENIE DLA PRZYCISKU NA PEŁNĄ SZEROKOŚĆ */
.btn-green-pill.btn-block {
    display: block;      /* Zmieniamy z inline-block na block */
    width: 100%;         /* Zajmuje 100% szerokości rodzica */
    text-align: center;  /* Centruje napis wewnątrz */
    box-sizing: border-box; /* Gwarantuje, że padding nie powiększy przycisku poza blok */
}

/* Opcjonalnie: ograniczenie szerokości na desktopie, by nie był nienaturalnie długi */
@media (min-width: 992px) {
    .btn-green-pill.btn-block {
        max-width: 400px; /* Maksymalna szerokość na komputerach */
        margin-left: auto;
        margin-right: auto;
    }
}

/* =========================================
   ADSCODE PREMIUM SUBMENU
   ========================================= */

/* Kontener rodzica (pozycja relatywna) */
.nav-menu .menu-item-has-children {
    position: relative;
}

/* Ukryte podmenu domyślnie */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px); /* Lekkie przesunięcie w dół dla animacji */
    width: 240px;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth easing */
    z-index: 1000;
    backdrop-filter: blur(5px); /* Efekt szklanego tła */
}

/* Strzałka u góry podmenu */
.nav-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.98);
}

/* Efekt Hover na rodzicu - wyświetlanie */
.nav-menu .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Linki wewnątrz podmenu */
.nav-menu .sub-menu li {
    padding: 0;
    margin: 0;
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 10px 25px;
    color: #4a6c5a; /* Twoja zieleń */
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: left;
}

/* Hover na linku w podmenu */
.nav-menu .sub-menu li a:hover {
    background-color: #f8f9f8;
    color: #c5a065; /* Twój złoty akcent */
    padding-left: 30px; /* Delikatny ruch w prawo */
}
/* =========================================
   ADSCODE SUBMENU - Jordaszka Style
   ========================================= */

/* Kontener główny (Twoja klasa menu-item-90) */
.nav-menu .menu-item-has-children {
    position: relative;
}

/* Stylizacja strzałki, którą dodałeś skryptem */
.menu-arrow {
    display: inline-block;
    margin-left: 6px;
    font-size: 10px;
    transition: transform 0.3s ease;
    vertical-align: middle;
}

/* Obrót strzałki przy hoverze lub gdy menu jest aktywne */
.menu-item-has-children:hover > a .menu-arrow,
.menu-item-has-children.active > a .menu-arrow {
    transform: rotate(180deg);
}

/* Wygląd listy podmenu */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 220px;
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.05);
    
    /* Animacja i widoczność */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 999;
}

/* Wyświetlanie przy hover */
.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Elementy listy wewnątrz podmenu */
.sub-menu li {
    margin: 0;
    padding: 0;
}

.sub-menu li a {
    display: block;
    padding: 12px 25px;
    font-size: 14px;
    font-family: var(--font-sans); /* Upewnij się, że masz tę zmienną */
    color: #4a6c5a !important; /* Twoja zieleń */
    text-decoration: none;
    transition: all 0.2s ease;
    text-align: center; /* Wyśrodkowanie tekstu zgodnie z luksusowym stylem */
    background: transparent;
}

/* Efekt Hover na konkretnym linku podmenu */
.sub-menu li a:hover {
    background-color: #f4f6f5;
    color: #c5a065 !important; /* Twój złoty akcent */
}

/* Wyróżnienie aktywnej podstrony w menu (Twoja klasa current-menu-item) */
.sub-menu li.current-menu-item a {
    color: #c5a065 !important;
    font-weight: 700;
    background-color: #fcfcfc;
}

/* Opcjonalny dekoracyjny separator między linkami */
.sub-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

/* STYLIZACJA STRZAŁKI W MENU (ADSCode) */

.menu-arrow {
    display: inline-block;
    margin-left: 8px;
    font-size: 10px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

/* Obrót strzałki po najechaniu na rodzica */
.menu-item-has-children:hover .menu-arrow {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--c-gold, #c5a065);
}

/* Wersja Mobile - obrót przy aktywnej klasie */
.menu-item-has-children.active .menu-arrow {
    transform: rotate(180deg);
}

/* =========================================
   MOBILE OPTIMIZATION: UNIFIED HERO HEIGHTS (ADSCode)
   ========================================= */

@media (max-width: 767px) {
    /* 1. Unifikacja i obniżenie kontenerów Hero */
    .hero-section,
    .weddings-hero,
    .business-hero,
    .przyjecia-hero,
    .hotel-hero {
        height: auto !important; 
        min-height: 45vh !important; /* Obniżone z 70-100vh do optymalnych 45% wysokości ekranu */
        padding: 100px 20px 50px 20px !important; /* Zapas z góry na mobilny Header (70px) */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    /* 2. Zabezpieczenie wielkości fontów H1, aby zmieściły się w niższej sekcji */
    .hero-content h1,
    .weddings-hero h1,
    .business-hero h1,
    .przyjecia-hero h1,
    .hotel-hero h1 {
        font-size: clamp(2rem, 6vw, 2.5rem) !important; /* Płynne skalowanie dla H1 */
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
        text-align: center;
    }

    /* 3. Zabezpieczenie dla paragrafów (opisów) pod nagłówkami */
    .hero-content p,
    .weddings-hero p,
    .business-hero p,
    .przyjecia-hero p,
    .hotel-hero p {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        margin-top: 0 !important;
        margin-bottom: 25px !important;
        text-align: center;
    }

    /* 4. Opcjonalne zabezpieczenie dla bardzo starych/małych ekranów (np. iPhone SE) */
    @media (max-width: 380px) {
        .hero-section,
        .weddings-hero,
        .business-hero,
        .przyjecia-hero,
        .hotel-hero {
            min-height: 350px !important;
            padding-top: 80px !important;
        }
    }
}

/* =========================================
   ADSCODE PREMIUM FOOTER
   ========================================= */

.adscode-premium-footer {
    background-color: #2a3b22; /* Głęboka zieleń Jordaszki */
    color: #e4e6e3;            /* Bardzo jasny, ciepły szary dla czytelności */
    font-family: var(--font-sans, 'Open Sans', sans-serif);
    padding: 80px 0 20px 0;
    margin-top: 60px;
    border-top: 5px solid #c5a065; /* Złoty akcent oddzielający stronę od stopki */
}

.adscode-premium-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Siatka (Grid) --- */
.adscode-premium-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* --- Nagłówki kolumn --- */
.footer-heading {
    color: #c5a065; /* Złoto */
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #c5a065;
}

/* --- Listy i Teksty --- */
.footer-contact-list,
.footer-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li,
.footer-bullets li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bullets li::before {
    content: '•';
    color: #c5a065;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-col a {
    color: #e4e6e3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #c5a065;
}

.footer-contact-list span[class^="icon-"] {
    font-size: 1.1rem;
    filter: grayscale(100%) brightness(200%); /* Dopasowanie emoji/ikon do bieli */
    opacity: 0.8;
}

/* --- Social Media --- */
.footer-socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-socials svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.footer-socials a:hover svg {
    fill: #c5a065;
    transform: translateY(-3px);
}

.social-btn-text {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-btn-text:hover {
    border-color: #c5a065;
    background-color: #c5a065;
    color: #2a3b22 !important;
}

/* --- Dolny pasek (Copyright) --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom strong {
    color: #fff;
}

.adscode-credit a {
    color: #c5a065;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.adscode-credit a:hover {
    text-decoration: underline;
}

/* =========================================
   FOOTER MOBILE OPTIMIZATION
   ========================================= */

@media (max-width: 991px) {
    .adscode-premium-footer .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny na tabletach */
    }
}

@media (max-width: 767px) {
    .adscode-premium-footer {
        padding: 60px 0 20px 0;
    }
    .adscode-premium-footer .footer-grid {
        grid-template-columns: 1fr; /* 1 kolumna na smartfonach */
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    /* Centrowanie na mobile dla lepszego efektu wizualnego */
    .footer-col {
        text-align: center;
    }
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-contact-list li,
    .footer-bullets li {
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
    }
}
/* =========================================
   ADSCODE QUANTUM SCROLLBAR (FIXED UI/UX)
   ========================================= */

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
body::-webkit-scrollbar {
    display: none;
}

.adscode-custom-scrollbar-track {
    position: fixed;
    top: 0;
    right: 0;
    width: 14px; /* Nieco szerszy tor dla łatwiejszego klikania */
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.01); /* Prawie niewidoczne, ale musi istnieć dla interakcji */
    z-index: 999999;
    pointer-events: auto; /* Zmieniono z none, aby track reagował na kliknięcie */
}

.adscode-custom-scrollbar-thumb {
    position: absolute;
    top: 0;
    right: 2px;
    width: 8px; /* Optymalna szerokość do złapania */
    background: linear-gradient(180deg, #c5a065 0%, #a3824b 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(197, 160, 101, 0.4);
    transition: width 0.3s ease, background 0.3s ease;
    cursor: pointer; /* Sygnał dla użytkownika, że można złapać */
    pointer-events: auto; /* Musi być auto! */
    user-select: none; /* Zapobiega zaznaczaniu tekstu podczas przeciągania */
}

.adscode-custom-scrollbar-thumb.is-scrolling {
    width: 12px;
    background: linear-gradient(180deg, #2a3b22 0%, #c5a065 100%);
    box-shadow: 0 0 15px rgba(197, 160, 101, 0.8);
}

/* =========================================
   ADSCODE BOOKING MODAL
   ========================================= */

/* Tło zaciemniające (Overlay) */
.adscode-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(42, 59, 34, 0.85); /* Ciemna zieleń Jordaszki z przezroczystością */
    backdrop-filter: blur(5px); /* Efekt rozmycia tła (Glassmorphism) */
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Animacja pojawiania się */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.adscode-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* Główne okno Modala */
.adscode-modal-box {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    
    /* Animacja wjazdu od dołu */
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.adscode-modal-overlay.is-active .adscode-modal-box {
    transform: translateY(0) scale(1);
}

/* Przycisk Zamknij (X) */
.adscode-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.adscode-modal-close:hover {
    color: #c5a065; /* Złoto */
}

/* Nagłówek modala */
.adscode-modal-header h3 {
    font-size: 1.8rem;
    color: #2a3b22;
    margin-bottom: 10px;
}

.adscode-modal-header p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Podsumowanie wybranych dat */
.adscode-modal-summary {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-label {
    color: #888;
}

.summary-value {
    font-weight: 700;
    color: #2a3b22;
}

/* Pola formularza wewnątrz modala */
.adscode-modal-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.adscode-modal-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.adscode-modal-form input {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.adscode-modal-form input:focus {
    outline: none;
    border-color: #c5a065;
    box-shadow: 0 0 0 3px rgba(197, 160, 101, 0.1);
}

/* Dostosowanie do Mobile */
@media (max-width: 767px) {
    .adscode-modal-box {
        margin: 20px;
        padding: 30px 20px;
    }
    .adscode-modal-header h3 {
        font-size: 1.5rem;
    }
}

/* =========================================
   ADSCODE: PRZYCISK FORMULARZA (Gold Filled & Block)
   ========================================= */

/* --- Wygląd bazowy przycisku --- */
.btn-gold-filled {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #c5a065; /* Luksusowe złoto Jordaszki */
    color: #ffffff;
    font-family: var(--font-sans, 'Open Sans', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px 32px;
    border: none;
    border-radius: 6px; /* Minimalistyczne zaokrąglenie */
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(197, 160, 101, 0.25); /* Subtelna, złota poświata */
    
    /* Płynna fizyka ADSCode */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

/* --- Modyfikator pełnej szerokości (dla formularzy) --- */
.btn-gold-filled.btn-block {
    display: block;
    width: 100%;
    box-sizing: border-box; /* Zabezpiecza przed wylewaniem się za kontener */
}

/* --- EFEKT HOVER (Najechanie myszką) --- */
.btn-gold-filled:hover {
    background-color: #4b5e26; /* Przejście w firmową, bezpieczną zieleń */
    color: #ffffff;
    transform: translateY(-3px); /* Uniesienie nad tło (Float) */
    box-shadow: 0 12px 25px rgba(75, 94, 38, 0.3); /* Zmiana koloru cienia */
}

/* --- EFEKT ACTIVE (Fizyczne kliknięcie / dotknięcie ekranu) --- */
.btn-gold-filled:active {
    transform: translateY(1px); /* Wciśnięcie */
    box-shadow: 0 4px 10px rgba(75, 94, 38, 0.2);
}

/* --- DOSTĘPNOŚĆ I SEO (Accessibility) --- */
/* Niezbędne do uzyskania wysokich wyników w Google Lighthouse */
.btn-gold-filled:focus-visible {
    outline: 3px solid #4b5e26;
    outline-offset: 4px;
}

/* --- OPTYMALIZACJA MOBILE --- */
@media (max-width: 767px) {
    .btn-gold-filled {
        padding: 18px 20px; /* Grubszy przycisk = łatwiejszy klik dla kciuka */
        font-size: 0.95rem;
    }
}
/* =========================================
   ADSCODE: SAFE MENU FIX (GALERIA & ALIGNMENT)
   ========================================= */

/* 1. Naprawa łamania się pozycji "GALERIA" */
.nav-menu > li > a {
    white-space: nowrap !important; /* Blokuje spadanie strzałki pod napis */
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
}

/* 2. Zabezpieczenie miejsca w nagłówku (tylko na desktopie) */
@media (min-width: 992px) {
    /* Pozwala menu zająć tyle miejsca, ile potrzebuje, bez spychania loga */
    .header-main-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    /* Jeśli menu jest za długie, lekko zmniejszamy odstępy między linkami */
    .nav-menu > li > a {
        padding-left: 10px !important;
        padding-right: 10px !important;
        font-size: 0.95rem; /* Subtelne zmniejszenie fontu uratuje layout */
    }

    /* Przycisk rezerwuj nie może się ściskać */
    .header-cta {
        flex-shrink: 0 !important;
    }
}

/* 3. Całkowity zakaz ingerencji w menu mobilne (naprawia błąd ze zdjęć) */
@media (max-width: 991px) {
    .nav-menu > li > a {
        display: block !important; /* Przywracamy standardowy wygląd na mobile */
        white-space: normal !important;
    }
    
    .header-main-inner {
        display: block !important; /* Przywracamy układ bazowy dla mobilki */
    }
}
/* =========================================
   ADSCODE: PERFECT MOBILE ALIGNMENT FIX
   ========================================= */

@media (max-width: 991px) {
    /* 1. Resetujemy i ustawiamy kontener jako elastyczny rząd */
    .header-main-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important; /* To klucz: wyrównuje dzieci w pionie do środka */
        justify-content: flex-start !important;
        padding: 15px !important;
        height: auto !important;
        min-height: 80px !important; /* Zapewnia odpowiednią przestrzeń */
    }

    /* 2. Hamburger - usuwamy zbędne marginesy i pozycjonujemy */
    #mobile-menu-toggle {
        margin: 0 !important;
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 40px !important; /* Stała wysokość dla wyrównania */
        width: 40px !important;
        flex-shrink: 0 !important;
    }

    /* 3. Logo - usuwamy absolutne pozycjonowanie, które go spycha */
    .site-branding {
        margin: 0 0 0 15px !important; /* Odstęp tylko z lewej od hamburgera */
        padding: 0 !important;
        display: flex !important;
        align-items: center !important;
        position: static !important; /* Ważne: wracamy do normalnego przepływu */
        transform: none !important;
    }

    .site-logo-img {
        max-height: 50px !important;
        width: auto !important;
        display: block !important;
    }

    /* 4. Ukrywamy Topbar na mobile, jeśli nachodzi na nawigację (widoczne na screenach) */
    .header-topbar {
        display: none !important;
    }
}

/* =========================================
   ADSCODE: ULTRA-LEFT MOBILE ALIGNMENT
   ========================================= */

@media (max-width: 991px) {
    /* 1. Resetujemy marginesy kontenera, aby elementy mogły dojść do samej krawędzi */
    .header-main-inner.container, 
    .container.header-main-inner {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 5px !important; /* Minimalny odstęp od krawędzi szkła */
        padding-right: 5px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* 2. Hamburger maksymalnie do lewej */
    #mobile-menu-toggle {
        margin-left: 0 !important;
        padding: 10px !important; /* Większy obszar dotyku, ale bez przesuwania ikony */
        order: 1 !important;
        display: flex !important;
        align-items: center !important;
    }

    /* 3. Logo zaraz obok hamburgera */
    .site-branding {
        margin-left: 5px !important; /* Subtelny odstęp od burgera */
        padding: 0 !important;
        order: 2 !important;
        display: flex !important;
        align-items: center !important;
    }

    .site-logo-img {
        max-height: 45px !important;
        width: auto !important;
    }

    /* 4. Ukrywamy topbar, który może blokować kliknięcia (zrzut image_983c5b) */
    .header-topbar {
        display: none !important;
    }
}

/* =========================================
   ADSCODE: ULTIMATE LAYOUT REPAIR (HOTEL & CONTACT)
   ========================================= */

/* --- 1. NAPRAWA MENU DESKTOP (ZDROWA ŻYWNOŚĆ + GALERIA) --- */
@media (min-width: 992px) {
    .header-main-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        max-width: 1440px !important; /* Większy margines boczny */
        gap: 10px !important;
    }

    .main-navigation {
        flex-grow: 1;
        display: flex;
        justify-content: flex-end; /* Menu dosunięte do przycisku Rezerwuj */
        margin-right: 20px;
    }

    .nav-menu {
        display: flex !important;
        gap: 12px !important; /* Mniejsze odstępy, by wszystko weszło */
    }

    .nav-menu li a {
        white-space: nowrap !important; /* Blokada łamania GALERII i ZDROWEJ ŻYWNOŚCI */
        font-size: 13px !important; /* Lekko mniejszy font uratuje layout */
        display: inline-flex !important;
        align-items: center !important;
    }
}

/* --- 2. NAPRAWA HAMBURGERA I LOGO NA MOBILE ( image_9838bd ) --- */
@media (max-width: 991px) {
    .header-main-inner {
        display: flex !important;
        align-items: center !important; /* To wyrównuje hamburgera w pionie do logo */
        justify-content: flex-start !important;
        padding: 10px 15px !important;
        height: 80px !important;
    }

    #mobile-menu-toggle {
        order: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 40px !important;
        display: flex !important;
        align-items: center !important; /* Centrowanie ikony wewnątrz przycisku */
    }

    .site-branding {
        order: 2 !important;
        margin-left: 15px !important; /* Odstęp od hamburgera */
        display: flex !important;
        align-items: center !important;
    }

    .site-logo-img {
        max-height: 45px !important;
        width: auto !important;
    }
    
    /* Ukrycie zbędnych elementów z góry, które spychają header */
    .header-topbar {
        height: 35px !important;
    }
}

/* --- 3. NAPRAWA MAPY NA STRONIE KONTAKT ( image_8b6f34 ) --- */
.contact-map-side {
    position: relative !important;
    min-height: 450px !important;
    height: 100% !important;
    background: #eee;
}

.contact-map-side iframe {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
}


/* =========================================
   ADSCODE: FLOATING EU BADGE STYLE
   ========================================= */

.adscode-eu-floating-badge {
    position: fixed;
    top:230px; /* Pozycja poniżej Twojego headera */
    right: 20px;
    z-index: 999; /* Zawsze na wierzchu */
    width: 100px; /* Szerokość optymalna dla logotypu */
    transition: all 0.4s ease-in-out;
    opacity: 0.85;
}

.adscode-eu-floating-badge img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.8);
    display: block;
}

/* Interakcja PRO - podświetlenie i uniesienie */
.adscode-eu-floating-badge:hover {
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Dostosowanie dla urządzeń mobilnych */
@media (max-width: 991px) {
    .adscode-eu-floating-badge {
        top: 90px; /* Wyżej na mobile, by nie zasłaniać treści */
        right: 10px;
        width: 70px; /* Mniejszy rozmiar na telefonie */
    }
}

/* Ukrycie na bardzo małych ekranach, jeśli zasłaniałoby menu (opcjonalne) */
@media (max-width: 480px) {
    .adscode-eu-floating-badge {
        opacity: 0.6;
    }
}


/* =========================================
   ADSCODE: BLOG & SINGLE POST PREMIUM STYLES
   ========================================= */

/* --- WSPÓLNE --- */
.adscode-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- KATEGORIA (ARCHIWUM) --- */
.adscode-archive-wrapper {
    background-color: #fbfbfb;
    padding-bottom: 80px;
}

.adscode-archive-header {
    padding: 100px 0 60px;
    background: #ffffff;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.adscode-subtitle {
    display: block;
    color: var(--c-gold, #c5a065);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.adscode-archive-title {
    font-family: var(--font-serif, 'Playfair Display', serif);
    color: var(--c-dark-green, #2a3b22);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin: 0;
}

.adscode-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 40px;
}

.adscode-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.adscode-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(197, 160, 101, 0.15); /* Złoty blask od ADSCode */
}

.adscode-post-thumb {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.adscode-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.adscode-post-card:hover .adscode-post-thumb img {
    transform: scale(1.08); /* Efekt luksusowego zoomu */
}

.adscode-post-date {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--c-gold, #c5a065);
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.adscode-post-date .d-day { display: block; font-size: 1.4rem; font-weight: 700; line-height: 1; }
.adscode-post-date .d-month { display: block; font-size: 0.8rem; text-transform: uppercase; }

.adscode-post-content {
    padding: 40px 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.adscode-post-title {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.adscode-post-title a {
    color: var(--c-dark-green, #2a3b22);
    text-decoration: none;
    transition: color 0.3s;
}

.adscode-post-title a:hover { color: var(--c-gold, #c5a065); }

.adscode-post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.adscode-read-more {
    color: var(--c-gold, #c5a065);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.adscode-read-more .arrow {
    margin-left: 5px;
    transition: transform 0.3s;
}

.adscode-post-card:hover .arrow { transform: translateX(5px); }

/* Paginacja */
.adscode-pagination {
    margin-top: 60px;
    text-align: center;
}
.adscode-pagination .page-numbers {
    display: inline-block;
    padding: 10px 18px;
    background: #fff;
    color: var(--c-dark-green, #2a3b22);
    text-decoration: none;
    margin: 0 5px;
    border-radius: 4px;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.adscode-pagination .page-numbers.current,
.adscode-pagination .page-numbers:hover {
    background: var(--c-gold, #c5a065);
    color: #fff;
}

/* --- POJEDYNCZY WPIS (SINGLE) --- */
.adscode-single-wrapper {
    background: #fff;
}

.adscode-single-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.adscode-single-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(42,59,34,0.4), rgba(42,59,34,0.9));
}

.adscode-single-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.adscode-single-title {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-top: 20px;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.adscode-single-meta {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.adscode-single-meta a { color: var(--c-gold, #c5a065); text-decoration: none; }
.meta-sep { margin: 0 10px; opacity: 0.5; }

.adscode-single-body {
    max-width: 800px;
    margin: -60px auto 60px;
    position: relative;
    z-index: 10;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* Typografia wewnątrz wpisu (SEO & Weryfikacja UX) */
.adscode-single-content-area {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.adscode-single-content-area h2, 
.adscode-single-content-area h3 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    color: var(--c-dark-green, #2a3b22);
    margin-top: 2em;
    margin-bottom: 0.8em;
}

.adscode-single-content-area img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.adscode-single-content-area blockquote {
    border-left: 4px solid var(--c-gold, #c5a065);
    padding-left: 20px;
    font-style: italic;
    color: var(--c-dark-green, #2a3b22);
    font-size: 1.3rem;
    margin: 40px 0;
}

.adscode-share-bar {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.share-btn {
    padding: 8px 16px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s;
}
.share-btn:hover { opacity: 0.8; }
.share-btn.fb { background: #1877F2; }
.share-btn.tw { background: #000000; }

.adscode-back-to-blog {
    text-align: center;
    margin-bottom: 80px;
}

/* Mobile */
@media (max-width: 768px) {
    .adscode-single-body {
        margin-top: 0;
        border-radius: 0;
        padding: 40px 20px;
        box-shadow: none;
    }
    .adscode-posts-grid { gap: 20px; }
}