   :root {
            --dark-green: #1a2e26; 
            --sage-green: #4a5d55; 
            --white: #ffffff;
            --accent: #c5a37d; /* Zlatavý detail pro "polevu" */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--white);
            color: var(--dark-green);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* --- HEADER --- */
        header {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            padding: 20px 5%;
            background: rgba(255, 255, 255, 0.95);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .header-left {
            display: flex;
            gap: 25px;
        }

        .header-left a {
            color: var(--dark-green);
            text-decoration: none;
            font-size: 1.1rem;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .header-left a:hover { opacity: 0.5; }

        .logo-container {
            text-align: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.4rem;
            letter-spacing: 10px;
            text-transform: uppercase;
            font-weight: 400;
            line-height: 1;
        }

        .logo-underline {
            width: 50px;
            height: 1.5px;
            background: var(--accent);
            margin: 12px auto 0;
        }

        .header-right {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 30px;
        }

        .btn-reserve {
            background-color: var(--dark-green);
            color: var(--white);
            padding: 14px 28px;
            text-decoration: none;
            font-size: 0.7rem;
            letter-spacing: 2px;
            font-weight: 600;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .btn-reserve:hover {
            background-color: var(--sage-green);
            letter-spacing: 3px;
        }

        /* --- HAMBURGER MENU --- */
        .menu-toggle {
            background: none;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .menu-toggle span {
            display: block;
            width: 100%;
            height: 1px;
            background-color: var(--dark-green);
            transition: all 0.3s ease;
        }

        /* --- OVERLAY MENU --- */
        .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: #768a7e;

    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

        .menu-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        .close-menu {
            position: absolute;
            top: 40px;
            right: 5%;
            background: none;
            border: none;
            font-size: 2rem;
            font-weight: 100;
            cursor: pointer;
            color: var(--dark-green);
        }

        .overlay-nav ul {
            list-style: none;
            text-align: center;
        }

        .overlay-nav ul li { margin: 35px 0; }

        .overlay-nav ul li a {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            text-decoration: none;
            color: var(--dark-green);
            text-transform: uppercase;
            letter-spacing: 8px;
            transition: 0.4s;
        }

        .overlay-nav ul li a:hover {
            color: var(--accent);
            font-style: italic;
            padding-left: 20px;
        }

       /* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;

background: linear-gradient(
    to right,
    rgba(15, 35, 25, 0.9) 0%,
    rgba(15, 35, 25, 0.85) 40%,
    rgba(15, 35, 25, 0.0) 100%
),
url('img/hero.png');

    background-size: cover;
    background-position: center;
}

/* obsah */
.hero-content {
    max-width: 650px;
    margin-top: 80px;
}

/* HEADLINE */
.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 30px;

    color: #ffffff;

    opacity: 0;
    animation: fadeIn 2.5s ease-out forwards;
    animation-delay: 0.5s;
}

/* zvýrazněný text */
.hero h1 span {
    font-style: italic;
    color: #dfe8e2; /* jemná off-white zelená */
}

/* SUBTITLE */
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 50px;
    font-weight: 300;

    opacity: 0;
    animation: fadeIn 2.5s ease-out forwards;
    animation-delay: 1.8s;
}

/* CTA BUTTON */
.btn-main {
    display: inline-block;
    background-color: #ffffff;
    color: #1f3d2b;

    padding: 22px 55px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.85rem;

    opacity: 0;
    animation: fadeIn 2.5s ease-out forwards;
    animation-delay: 3s;

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
}

.btn-main:hover {
    background-color: #dfe8e2;
    letter-spacing: 4px;
}

/* TRUST SECTION */
.trust-section {
    display: flex;
    gap: 60px;
    margin-top: 80px;

    opacity: 0;
    animation: fadeIn 2.5s ease-out forwards;
    animation-delay: 4.2s;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;

    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;

    color: rgba(255,255,255,0.8);
}

.trust-item span {
    width: 8px;
    height: 1px;
    background-color: rgba(255,255,255,0.5);
}

/* ANIMACE */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero h1 { font-size: 2.8rem; }
    .trust-section { flex-direction: column; gap: 20px; }
}
		.problem-section {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 150px 8%;
            background-color: #ffffff;
            gap: 100px;
            overflow: hidden;
        }

   .problem-image-container {
    flex: 1;
    max-width: 600px;

    aspect-ratio: 4/3; /* 🔥 široké a nízké */

    background-image: url('newimg/uvod.jpeg');
    background-size: cover;
    background-position: center;

    opacity: 0;
    transform: translateX(-50px);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

        /* --- TEXTOVÝ KONTEJNER --- */
        .problem-text-container {
            flex: 1;
            max-width: 480px;
        }

        /* Jednotlivé prvky textu - výchozí stav */
        .reveal-item {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease-out;
        }

        /* --- TŘÍDY PRO AKTIVACI ANIMACE (přidá JS) --- */
        .reveal-active .problem-image-container {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-active .reveal-item {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- ODSTUPŇOVANÉ ZPOŽDĚNÍ (Stagger) --- */
        .delay-1 { transition-delay: 0.4s; } /* Nadpis */
        .delay-2 { transition-delay: 0.6s; } /* První bod */
        .delay-3 { transition-delay: 0.7s; } /* Druhý bod */
        .delay-4 { transition-delay: 0.8s; } /* Třetí bod */
        .delay-5 { transition-delay: 1.1s; } /* Emoční punch */
        .delay-6 { transition-delay: 1.4s; } /* Tlačítko */

        /* Stylistika textů */
        .problem-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 25px;
            color: var(--dark-green);
        }

        .symptoms-list {
            list-style: none;
            margin-bottom: 35px;
        }

        .symptoms-list li {
            font-size: 1.05rem;
            color: var(--sage-green);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .symptoms-list li::before {
            content: '';
            width: 20px;
            height: 1px;
            background-color: var(--accent);
        }

        .emotional-punch {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-style: italic;
            color: var(--dark-green);
            margin-bottom: 40px;
            line-height: 1.4;
        }

        .btn-bait {
    display: inline-block;
    background-color: var(--dark-green);
    color: var(--white);
    padding: 20px 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.8rem;
    /* Upravená transition pro více "slow-motion" efekt */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: none;
}

.btn-bait:hover {
    background-color: #768a7e; /* Sjednocená šalvějová zelená */
    letter-spacing: 3px;       /* Jemný "bait" pohyb textu */
    color: var(--white);
}
        @media (max-width: 900px) {
            .problem-section { flex-direction: column; padding: 100px 10%; gap: 50px; text-align: center; }
            .problem-image-container { transform: translateY(30px); }
            .symptoms-list li { justify-content: center; }
        }
	.solution-center-layout {
            padding: 40px 5% 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 60px;
            opacity: 0;
            transition: opacity 1.8s ease;
        }

        /* Fotky po stranách - menší, aby netříštily pozornost */
        .side-collage {
    flex: 0 0 300px; /* Zvětšeno z 220px na 300px */
    display: flex;
    flex-direction: column;
    gap: 0; /* Mezeru vyřešíme přesahy */
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

        .side-single {
    flex: 0 0 300px; /* Sjednoceno na 300px */
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.8s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.8s;
}

        .img-box {
    width: 100%;
    aspect-ratio: 4/5; /* Trochu vyšší, elegantnější formát */
    background-size: cover;
    background-position: center;
    background-color: #eee;
}

        /* Druhá fotka v koláži - menší a odsazená */
        .img-overlap {
    width: 90%; /* Zvětšeno z 80% */
    aspect-ratio: 1/1;
    margin-top: -80px; /* Větší přesah pro větší fotku */
    margin-left: -50px; /* Více vysunuté do strany */
    border: 12px solid #f9faf9; /* Širší bílý rám pro "high-end" pocit */
    z-index: 2;
}

        /* HLAVNÍ TEXT UPROSTŘED - UX/UI Bait */
        .center-text-content {
            flex: 1;
            max-width: 400px; /* Úzký sloupec pro prémiový vzhled */
            text-align: center;
            opacity: 0;
            transform: translateY(20px);
            transition: all 1.8s ease-out;
            transition-delay: 0.4s;
        }

        .center-text-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--dark-green);
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .center-text-content p {
            font-size: 1.05rem;
            color: var(--sage-green);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .center-text-content strong {
            color: var(--dark-green);
            font-weight: 600;
        }

        /* Tlačítko - Minimalistický bait */
        .btn-minimal {
            display: inline-block;
            margin-top: 20px;
            padding: 180px 0 0 0; /* Jen pro vizuální mezeru, pokud chceš */
            padding: 18px 45px;
            background: var(--dark-green);
            color: white;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.75rem;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-minimal:hover {
            background: var(--sage-green);
            letter-spacing: 3px;
        }

        /* Aktivace animací */
        .reveal-active { opacity: 1 !important; }
        .reveal-active .side-collage, 
        .reveal-active .center-text-content, 
        .reveal-active .side-single {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 900px) {
            .solution-center-layout { flex-direction: column; padding: 80px 10%; }
            .side-collage, .side-single { display: none; } /* Na mobilu necháme jen text pro rychlost */
        }
		.services-dark-section {
            background-color: #1a2e26; 
            padding: 100px 5%;
            text-align: center;
        }

        .services-title {
            font-family: 'Playfair Display', serif;
            color: #ffffff;
            font-size: 2.5rem;
            margin-bottom: 60px;
            opacity: 0;
            transform: translateY(30px);
            /* Nadpis se objeví velmi plynule */
            transition: all 2.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .service-card {
            background: #ffffff;
            display: flex;
            flex-direction: column;
            height: 100%;
            padding-bottom: 30px;
            opacity: 0;
            transform: translateY(60px); /* Větší vzdálenost pro dramatičtější pohyb */
            /* Zvýšení trvání animace na 2.2 sekundy pro každou kartu */
            transition: all 2.2s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* --- STAGGERED DELAY (Zpoždění mezi kartami) --- */
        
        .reveal-active .services-title {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-active .service-card {
            opacity: 1;
            transform: translateY(0);
        }

        /* První karta vyjede s odstupem po nadpisu */
        .reveal-active .card-1 { transition-delay: 0.6s; }
        
        /* Druhá karta vyjede až po vteřině a půl */
        .reveal-active .card-2 { transition-delay: 1.4s; }
        
        /* Třetí karta jako finále po více než dvou vteřinách */
        .reveal-active .card-3 { transition-delay: 2.2s; }

        /* Zbytek stylů pro vnitřek karet zůstává stejný pro UX čistotu */
        .service-card-img {
            width: 100%;
            aspect-ratio: 3/2;
            background-size: cover;
            background-position: center;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: #1a2e26;
            margin: 0 20px 10px;
        }

        .service-description {
            flex-grow: 1;
            font-size: 0.9rem;
            line-height: 1.6;
            color: #555;
            padding: 0 25px;
            margin-bottom: 25px;
        }

        .btn-wrapper { padding: 0 25px; }

       .btn-card {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    width: 100%;
    padding: 15px 0;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    /* Plynulý přechod barvy a písmen */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    cursor: pointer;
}

.btn-card:hover {
    background-color: #768a7e; /* Světlejší šalvějová zelená */
    letter-spacing: 3px;       /* Jemné roztažení pro prémiový look */
    color: #ffffff;
}
		.about-me-section {
            padding: 150px 8%; /* Hodně prostoru, dýcháme */
            display: grid;
            grid-template-columns: 1fr 1.3fr; /* Přesný poměr fotka/text */
            align-items: center;
            gap: 120px; /* Velká mezera mezi fotkou a textem */
            overflow: hidden; /* Pro čistý nájezd animací */
        }

        /* --- LEVÁ STRANA: FOTKA --- */
        .about-image-container {
            opacity: 0;
            transform: translateX(-40px); /* Přijede zleva */
            /* Super pomalý, plynulý přechod */
            transition: all 2.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .about-photo {
            width: 100%;
            aspect-ratio: 4/5; /* Portrétní formát fotky */
            background-image: url('newimg/ja.jpeg'); /* !!! SEM VLOŽ SVOU FOTKU !!! */
            background-size: cover;
            background-position: center;
        }

        /* --- PRAVÁ STRANA: TEXT --- */
        .about-text-content {
            opacity: 0;
            transform: translateX(40px); /* Přijede zprava */
            transition: all 2.5s cubic-bezier(0.22, 1, 0.36, 1);
            transition-delay: 0.6s; /* Text přijede až chvíli po fotce */
        }

        .about-text-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: 30px;
            color: var(--dark-green); /* Tmavě zelená barva textu */
        }

        /* Hlavní prodejní zpráva v textu */
        .about-message {
            max-width: 450px; /* UX optimalizace: Užší šířka pro lepší čitelnost */
            font-family: 'Montserrat', sans-serif;
            font-weight: 300;
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--sage-green); /* Šalvějová barva pro doplňující text */
            margin-bottom: 25px;
        }

        .about-message strong {
            font-weight: 600;
            color: var(--dark-green);
        }

        /* Emoční punch textu (Kurzíva) */
        .about-punch {
            font-family: 'Playfair Display', serif;
            font-style: italic;
            font-size: 1.4rem;
            color: var(--dark-green);
            line-height: 1.5;
        }

        /* --- AKTIVACE ANIMACÍ (Reveal Active) --- */
        .reveal-active .about-image-container,
        .reveal-active .about-text-content {
            opacity: 1;
            transform: translate(0, 0);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1000px) {
            .about-me-section {
                grid-template-columns: 1fr;
                padding: 100px 5%;
                gap: 60px;
                text-align: center;
            }

            .about-image-container {
                max-width: 400px;
                margin: 0 auto;
                transform: translateY(30px); /* Na mobilu raději zespodu */
            }

            .about-text-content {
                transform: translateY(30px);
                transition-delay: 0.3s;
            }

            .about-text-content h2 {
                font-size: 2.2rem;
            }
        }
		.pricing-section {
            /* Tmavé džunglové listy v pozadí - nahraď vlastní fotkou */
            background-image: url('img/cenik.png'); 
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Parallax efekt pro extra luxus */
            padding: 160px 5%; /* Hodně prostoru pro dýchání */
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden; /* Čistý nájezd */
        }

        /* --- BÍLÝ PRÉMIOVÝ RÁMEČEK CENÍKU (Střed) --- */
        .pricing-box {
            background-color: #ffffff; /* Čistě bílá z předlohy */
            padding: 80px 70px; /* Hodně prostoru uvnitř */
            max-width: 600px; /* Kompaktní, snadno čitelné */
            width: 100%;
            text-align: center;
            border: 1px solid rgba(26, 46, 38, 0.05); /* Neviditelný detail */
            
            /* Výchozí stav pro pomalý nájezd */
            opacity: 0;
            transform: translateY(50px);
            transition: all 2.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .pricing-box h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            line-height: 1.1;
            margin-bottom: 25px;
            color: var(--dark-green); /* Tmavě zelená */
        }

        /* --- STYLIZACE CEN (UX optimalizace) --- */
        .price-category {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            color: var(--sage-green); /* Šalvějová pro nadpis kategorie */
            margin-top: 50px;
            margin-bottom: 25px;
            display: inline-block;
            border-bottom: 1px solid var(--accent); /* Jemná linka accentu */
            padding-bottom: 10px;
        }

        .price-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .price-item {
            display: flex;
            justify-content: space-between; /* Čas vlevo, Cena vpravo */
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid rgba(26, 46, 38, 0.05); /* Jemná linka */
        }

        .price-item span {
            font-size: 1.15rem;
            font-weight: 300;
            color: var(--dark-green);
        }

        .price-item strong {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--dark-green);
        }

        /* --- POZNÁMKA POD ČAROU --- */
        .pricing-note {
            font-size: 0.95rem;
            font-style: italic;
            color: var(--sage-green);
            margin-top: 60px;
            line-height: 1.6;
            padding-top: 30px;
            border-top: 1px solid rgba(26, 46, 38, 0.05);
        }

        /* --- AKTIVACE ANIMACE (Reveal Active) --- */
        .reveal-active .pricing-box {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .pricing-section { padding: 100px 5%; }
            .pricing-box { padding: 50px 30px; }
            .pricing-box h2 { font-size: 2.2rem; }
            .price-item { flex-direction: column; text-align: center; gap: 5px; }
        }
		.final-cta-section {
    background-color: #ffffff; /* Čistě bílá pro pocit úlevy */
    padding: 90px 5%;
    text-align: center;
    overflow: hidden; /* Čisté nájezdy */
}

.cta-container {
    max-width: 750px; /* UX: Optimální šířka pro čtení */
    margin: 0 auto;
}

/* --- SPOLEČNÉ NASTAVENÍ PRO POSTUPNÉ PRVKY --- */
/* Všechny prvky jsou na začátku schované a posunuté dolů */
.reveal-item {
    opacity: 0;
    transform: translateY(30px);
    /* Super pomalý, plynulý přechod */
    transition: all 2.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform; /* Optimalizace výkonu */
}

/* Nadpis Playfair Display */
.final-cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem; /* Větší a dominantnější */
    color: var(--dark-green);
    line-height: 1.15;
    margin-bottom: 40px;
}

/* Odstavec Montserrat */
.final-cta-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: var(--sage-green);
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* Zvýraznění textu */
.final-cta-section p strong {
    font-weight: 600;
    color: var(--dark-green);
}

/* --- FINÁLNÍ BAIT TLAČÍTKO --- */
.btn-final-call {
    display: inline-block;
    background-color: var(--dark-green);
    color: #ffffff;
    padding: 24px 65px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    /* Plynulý přechod pro hover */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
}

/* Hover efekt pro tlačítko */
.btn-final-call:hover {
    background-color: #768a7e; /* Šalvějová zelená */
    letter-spacing: 5px; /* Jemné "bait" roztažení */
    transform: scale(1.02); /* Mírné zvětšení */
}

/* --- AKTIVACE ANIMACÍ (Reveal Active) --- */
/* Když skript aktivuje sekci, prvky se začnou zobrazovat */
.reveal-active .reveal-item {
    opacity: 1;
    transform: translateY(0);
}

/* --- POSTUPNÉ ČASOVÁNÍ (Staggered Delays) --- */
/* První prvek (Nadpis) vyjede hned */
.reveal-active .reveal-1 { transition-delay: 0.2s; }
/* Druhý prvek (Odstavec) vyjede po vteřině */
.reveal-active .reveal-2 { transition-delay: 1.2s; }
/* Třetí prvek (Silný závěr textu) vyjede po dvou vteřinách */
.reveal-active .reveal-3 { transition-delay: 2.2s; }
/* Čtvrtý prvek (Tlačítko) vyjede jako finále po třech vteřinách */
.reveal-active .reveal-4 { transition-delay: 3.2s; }


/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .final-cta-section h2 { font-size: 3rem; }
    .final-cta-section { padding: 140px 8%; }
}

@media (max-width: 600px) {
    .final-cta-section h2 { font-size: 2.2rem; }
    .final-cta-section p { font-size: 1.1rem; }
}
		.infinite-gallery-section {
    background-color: #1a2e26;
    padding: 80px 0; 
    overflow: hidden; 
    position: relative;
    
    /* Výchozí stav pro nájezd */
    opacity: 0;
    transform: translateY(30px);
    transition: all 2.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Stav po aktivaci skriptem */
.reveal-active.infinite-gallery-section {
    opacity: 1;
    transform: translateY(0);
}

        /* Hlavní kontejner pro fotky */
        .gallery-track {
            display: flex; /* Fotky vedle sebe */
            gap: 20px; /* Mezera mezi fotkami */
            width: calc(300px * 10); /* Šířka = (fotka+mezera) * počet unikátních fotek * 2 */
            animation: infiniteSlide 30s linear infinite; /* Nekonečná animace */
        }

        /* Hover efekt pro zastavení animace (dobré pro UX) */
        .gallery-track:hover {
            animation-play-state: paused;
        }

        /* Jednotlivá fotka - Hranatá */
        .gallery-item {
            flex: 0 0 280px; /* Pevná šířka fotky */
            aspect-ratio: 1/1; /* Čtvercový formát dle předlohy */
            background-size: cover;
            background-position: center;
            
            /* Jemný vizuální detail */
            border: 1px solid rgba(26, 46, 38, 0.05); 
        }

        /* !!! ANIMACE PRO NEKONEČNÝ POSUN !!! */
        /* Musíme posunout o přesnou šířku jedné "sady" fotek */
        @keyframes infiniteSlide {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-300px * 5)); } /* Šířka jedné sady: (280px fotka + 20px gap) * 5 fotek */
        }

.footer-section {
            background-color: #ffffff; /* Celý hlavní blok je teď na čistě bílé */
            padding: 100px 8% 0; /* Prostor pro dýchání, srovnáno s okraji webu */
            text-align: left;
            
            /* Výchozí stav pro plynulý nájezd (Scroll Reveal) */
            opacity: 0;
            transform: translateY(30px);
            transition: all 2s cubic-bezier(0.22, 1, 0.36, 1);
        }

        /* Hlavní flex kontejner - drží vše pohromadě */
        .contact-unified-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr; /* Levá užší, pravá širší (mapa) */
            gap: 100px; /* Velká mezera pro luxusní pocit */
            align-items: start; /* Zarovná začátky na horní hranu */
        }

        /* --- LEVÁ STRANA: NADPIS & ÚDAJE & TLAČÍTKO --- */
        .contact-content-col {
            display: flex;
            flex-direction: column;
            gap: 50px; /* Mezery mezi nadpisem, seznamem a tlačítkem */
        }

        /* Sjednocený Nadpis "KONTAKTY" */
        .contact-unified-grid h2 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem; /* Větší a dominantnější */
            color: var(--dark-green);
            text-transform: uppercase;
            letter-spacing: 2px;
            line-height: 1.1;
            margin: 0; /* Čisté zarovnání */
        }

        /* Stylizace Kontaktního seznamu */
        .contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1.1rem;
            color: var(--dark-green);
            font-weight: 300;
            padding: 15px 0;
            border-bottom: 1px solid rgba(26, 46, 38, 0.05); /* Jemná linka */
        }

        .contact-item svg {
            width: 22px;
            height: 22px;
            fill: var(--sage-green); /* Šalvějová barva ikon */
        }

        .contact-item a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--accent); /* Změna na accent barvu */
            transform: translateX(5px);
        }

        /* --- FINÁLNÍ BAIT TLAČÍTKO V PATIČCE --- */
        .btn-footer-reserve {
            display: inline-block;
            background-color: var(--dark-green);
            color: #ffffff;
            padding: 22px 55px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
            /* Plynulý přechod */
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            align-self: flex-start; /* Nechceme tlačítko přes celou šířku */
        }

        .btn-footer-reserve:hover {
            background-color: #768a7e; /* Sjednocená šalvějová */
            letter-spacing: 5px; /* Jemné bait roztažení */
        }

        /* --- PRAVÁ STRANA: MAPA --- */
        .map-unified-col {
            position: relative;
            width: 100%;
            height: 550px; /* Vyšší mapa pro vizuální srovnání */
            background-color: #eee;
            border: 1px solid rgba(26, 46, 38, 0.05);
            overflow: hidden;
        }

        /* Minimalistický styl pro Google Maps (pokud funguje embed) */
        .map-unified-col iframe {
            width: 100%;
            height: 100%;
            border: 0;
            filter: grayscale(1) opacity(0.8); /* Šedý, nerušivý filtr */
        }

      .dark-footer-pruh-unified {
    background-color: var(--dark-green);
    color: rgba(255, 255, 255, 0.6);
    padding: 25px 8%;

    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;

    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100vw; 
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    margin-top: 100px;
}

        .pruh-links {
            display: flex;
            gap: 25px;
        }

        .pruh-links a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        .pruh-links a:hover {
            color: #ffffff;
            letter-spacing: 1px;
        }

        /* --- AKTIVACE ANIMACE (Reveal Active) --- */
        /* Ujisti se, že máš ID 'footer-reveal' přidané v targetSections ve skriptu */
        .reveal-active.footer-section {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1100px) {
            .contact-unified-grid { gap: 50px; }
            .contact-unified-grid h2 { font-size: 2.8rem; }
        }

        @media (max-width: 900px) {
            .contact-unified-grid { grid-template-columns: 1fr; text-align: center; }
            .contact-content-col { align-items: center; }
            .btn-footer-reserve { align-self: center; }
            .contact-item { justify-content: center; }
            .map-unified-col { height: 350px; max-width: 500px; margin: 0 auto; }
            .dark-footer-pruh-unified { flex-direction: column-reverse; gap: 15px; text-align: center; }
        }
		.social-links {
    display: flex;
    gap: 20px;
    margin-top: -20px;
}

.social-links a {
    width: 22px;
    height: 22px;
    display: inline-block;
    opacity: 0.7;
    transition: 0.3s;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-links svg {
    width: 100%;
    height: 100%;
    fill: var(--dark-green);
}
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #7a8d84;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

#loader-wrapper .logo-container {
    text-align: center;
    /* Spustí animaci pulzování */
    animation: luxuryPulse 2.5s infinite ease-in-out;
}

#loader-wrapper .logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    letter-spacing: 10px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1;
    color: #000; /* Případně změň podle potřeby */
}

#loader-wrapper .logo-underline {
    width: 50px;
    height: 1.5px;
    background: var(--accent, #000); /* Použije tvou proměnnou accent */
    margin: 12px auto 0;
}

/* Jemná animace pulzování (světelnost) */
@keyframes luxuryPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.99); }
    50% { opacity: 1; transform: scale(1); }
}

/* Třída pro zmizení */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
#back-to-top {
    /* Pozice: fixní vpravo dole */
    position: fixed;
    bottom: 20px;
    right: 20px;
    
    /* Vzhled a barvy */
    background-color: #7a8d84; /* Ta stejná šalvějová zelená (image_1.png) */
    color: #ffffff;            /* Bílá šipka */
    
    /* Tvar a velikost */
    width: 45px;
    height: 45px;
    border-radius: 50%;        /* Kulaté tlačítko */
    
    /* Centrování šipky */
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Odstranění defaultního stylu tlačítka */
    border: none;
    cursor: pointer;
    
    /* Stíny a písmo */
    font-size: 20px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    
    /* Počáteční stav: skryté a průhledné */
    visibility: hidden;
    opacity: 0;
    
    /* Z-index: nad vším obsahem webu, ale pod loaderem */
    z-index: 999;
    
    /* Plynulá tranzice zobrazení/skrytí a hover efektu */
    transition: all 0.3s ease-in-out;
}

/* Hover efekt: při najetí myší se barva změní */
#back-to-top:hover {
    background-color: #5c6c64; /* Trochu tmavší zelená pro hover */
    transform: translateY(-3px); /* Jemný pohyb nahoru */
}

/* Třída pro zobrazení tlačítka pomocí JS */
#back-to-top.visible {
    visibility: visible;
    opacity: 1;
}
/* --- DETAIL SLUŽEB (Nová stránka) --- */
.services-detail-page {
    padding-top: 180px; /* Aby text nezačínal pod fixním headery */
    background-color: var(--white);
}

.category-section {
    padding: 100px 8%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Štítek nad nadpisem */
.category-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.category-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--dark-green);
    margin-bottom: 80px;
    line-height: 1.1;
}

/* Kontejner pro jednotlivé služby */
.services-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 120px; /* Velké mezery mezi službami pro přehlednost */
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Text a doplňující info */
    gap: 60px;
    align-items: start;
    border-top: 1px solid rgba(26, 46, 38, 0.1);
    padding-top: 60px;
}

.service-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 25px;
}

.service-info p {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: var(--sage-green);
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 550px;
}

/* Seznam benefitů (ty tvoje odrážky) */
.benefits-box {
    background-color: #f9faf9; /* Velmi jemná zelenobílá */
    padding: 40px;
    border-left: 2px solid var(--accent);
}

.benefits-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--dark-green);
}

.benefits-box ul {
    list-style: none;
}

.benefits-box li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--sage-green);
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.benefits-box li strong {
    color: var(--dark-green);
}

/* --- SEKCE SLUŽEB (DETAIL) --- */

/* Kontejner pro celou stránku služeb */
.services-detail-page {
    padding-top: 120px; /* Aby nám header nepřekryl začátek */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Barevné podklady pro jednotlivé bloky */
.category-wrapper { padding: 80px 0; }
.light-sage { background-color: #f4f6f5; } /* Velmi jemná zelenkavá */
.white-bg { background-color: #ffffff; }
.dark-section { background-color: var(--dark-green); color: var(--white); }

/* Typografie v sekci */
.category-label {
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    color: var(--accent);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 400;
}

/* Rozvržení řádku: Text + Obrázek */
.service-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

/* Třída pro prohození stran (fotka napravo) */
.service-row.flex-reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    /* Ten stylový barevný blok za fotkou z tvé předlohy */
    box-shadow: 20px 20px 0px var(--dark-green); 
}

/* U prohozeného řádku dáme jinou barvu stínu (zlatavou) */
.service-row.flex-reverse .service-image img {
    box-shadow: -20px 20px 0px var(--accent);
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Seznam výhod */
.benefits {
    list-style: none;
    margin-bottom: 30px;
}

.benefits li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.benefits li::before {
    content: '🌿'; /* Malý lístek místo odrážky */
    position: absolute;
    left: 0;
    font-size: 0.9rem;
}

/* Tlačítko pod textem */
.btn-dark-small {
    display: inline-block;
    background: var(--dark-green);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: 0.3s;
}

.btn-dark-small:hover {
    background: var(--sage-green);
    transform: translateY(-2px);
}

/* Responzivita pro mobily */
@media (max-width: 900px) {
    .service-row, .service-row.flex-reverse {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    .service-image img {
        height: 300px;
        box-shadow: 15px 15px 0px var(--dark-green) !important;
    }
    .section-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    /* overflow-x: hidden forces overflow-y to compute to auto on WebKit/Blink, which can
       interact badly with mobile viewport resizing (100vh / dynamic toolbars) until layout
       stabilizes. clip avoids that pairing while still suppressing horizontal bleed. */
    html, body {
        overflow-x: clip;
    }

    img,
    iframe,
    video {
        max-width: 100%;
        height: auto;
    }

    header {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px 20px;
    }

    .header-left,
    .logo-container,
    .header-right {
        justify-content: center;
    }

    .header-left {
        gap: 18px;
    }

    .header-right {
        width: 100%;
        gap: 16px;
    }

    .btn-reserve {
        padding: 12px 18px;
    }

    .logo {
        font-size: 1.5rem;
        letter-spacing: 4px;
    }

    .overlay-nav ul li {
        margin: 24px 0;
    }

    .overlay-nav ul li a {
        font-size: clamp(1.4rem, 8vw, 2.2rem);
        letter-spacing: 4px;
    }

    .close-menu {
        top: 20px;
    }

    .hero {
        /* 100vh alone tracks the large/layout viewport on phones; visible height differs until
           the browser chrome settles, so scroll extent can be wrong briefly. Layer svh/dvh
           and -webkit-fill-available so min-height tracks the real screen sooner. */
        min-height: 100vh;
        min-height: -webkit-fill-available;
        min-height: 100dvh;
        min-height: 100svh;
        height: auto;
        padding: 140px 20px 80px;
        background-position: 68% center;
    }

    .hero-content {
        max-width: 100%;
        margin-top: 0;
    }

    .hero h1 {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 32px;
    }

    .btn-main,
    .btn-bait,
    .btn-minimal,
    .btn-final-call,
    .btn-footer-reserve {
        width: 100%;
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
        text-align: center;
    }

    .trust-section {
        gap: 16px;
        margin-top: 40px;
    }

    .problem-section {
        flex-direction: column;
        padding: 80px 20px;
        gap: 36px;
        text-align: center;
        /* Base rule uses overflow: hidden; on phones it is not needed for layout and can
           interact with compositing while the first sections settle; allow normal overflow. */
        overflow: visible;
    }

    .problem-image-container,
    .problem-text-container {
        width: 100%;
        max-width: 100%;
    }

    .problem-section h2 {
        font-size: 2rem;
    }

    .emotional-punch {
        font-size: 1.25rem;
        margin-bottom: 28px;
    }

    .solution-center-layout {
        flex-direction: column;
        padding: 80px 20px;
        gap: 32px;
    }

    .side-collage,
    .side-single {
        display: none;
    }

    .center-text-content {
        max-width: 100%;
    }

    .center-text-content h2 {
        font-size: 2rem;
    }

    .center-text-content p {
        font-size: 1rem;
    }

    .services-dark-section {
        padding: 80px 20px;
    }

    .services-title {
        font-size: 2rem;
        margin-bottom: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-description,
    .btn-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-me-section {
        grid-template-columns: 1fr;
        padding: 80px 20px;
        gap: 40px;
        text-align: center;
    }

    .about-image-container {
        max-width: 100%;
    }

    .about-text-content h2 {
        font-size: 2.2rem;
    }

    .about-message {
        max-width: 100%;
        font-size: 1rem;
    }

    .about-punch {
        font-size: 1.2rem;
    }

    .pricing-section {
        padding: 100px 20px;
        background-attachment: scroll;
    }

    .pricing-box {
        padding: 40px 24px;
    }

    .pricing-box h2 {
        font-size: 2rem;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        text-align: left;
    }

    .price-item span,
    .price-item strong {
        font-size: 1rem;
    }

    .final-cta-section {
        padding: 80px 20px;
    }

    .final-cta-section h2 {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    .final-cta-section p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .infinite-gallery-section {
        padding: 48px 0;
    }

    .gallery-track {
        gap: 12px;
    }

    .gallery-item {
        flex: 0 0 200px;
    }

    .footer-section {
        padding: 80px 20px 0;
    }

    .contact-unified-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content-col {
        gap: 32px;
        align-items: stretch;
    }

    .contact-unified-grid h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .contact-item {
        justify-content: flex-start;
        align-items: flex-start;
        font-size: 1rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 0;
    }

    .map-unified-col {
        height: 320px;
    }

    .dark-footer-pruh-unified {
        width: 100%;
        left: auto;
        right: auto;
        margin-left: 0;
        margin-right: 0;
        padding: 24px 20px;
        flex-direction: column-reverse;
        gap: 12px;
        text-align: center;
    }

    .pruh-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }

    .services-detail-page {
        padding-top: 140px;
    }

    .category-wrapper {
        padding: 64px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 48px;
    }

    .service-row,
    .service-row.flex-reverse {
        flex-direction: column;
        gap: 32px;
        margin-bottom: 64px;
        text-align: left;
    }

    .service-image img {
        height: 280px;
        box-shadow: 12px 12px 0 var(--dark-green) !important;
    }

    .service-content h3 {
        font-size: 1.8rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .benefits li {
        text-align: left;
    }
}
