/* FONTY */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

/* GLOBAL */
body {
    margin: 0;
    font-family: 'Cormorant', serif;
    /* Zlatý gradient inspirovaný tvým písmem */
    background: linear-gradient(90deg, #F5E6D3 0%, #FDF7FF 100%);
    background-attachment: fixed;
}
html {
    scroll-behavior: smooth;
	overflow-x: hidden;
}
  .service-block {
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 120px;
        }

        /* Tady je opravený selektor pro efekt na přeskáčku */
        .service-block:nth-of-type(even) {
            flex-direction: row-reverse;
        }

        .service-image {
            flex: 1;
        }

        .service-image img {
            width: 100%;
            height: auto;
            border-radius: 30px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            display: block;
        }

        .service-text {
            flex: 1;
        }

        .service-text h2 {
            font-size: 2.4rem;
            color: #111;
            margin-bottom: 15px;
            font-weight: 700;
        }

        /* Úprava barvy podnadpisu, aby byl čitelný */
        .service-subtitle {
            font-style: italic;
            color: #5D3F6A; 
            margin-bottom: 20px;
            display: block;
        }

        .service-text ul {
            list-style: none;
            padding: 0;
            margin: 0 0 30px 0;
        }

        .service-text ul li {
            font-size: 1.2rem;
            line-height: 1.6;
            color: #000;
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }

        .service-text ul li::before {
            content: "•";
            color: #000;
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.5rem;
            line-height: 1;
        }

        .price-tag {
            display: block;
            background: #faf7f2;
            border-left: 4px solid #a67c52;
            padding: 20px;
            border-radius: 0 15px 15px 0;
        }

        .price-tag strong {
            color: #111;
            display: block;
            margin-bottom: 5px;
        }

        .price-val {
            font-size: 1.3rem;
            color: #a67c52;
            font-weight: 800;
        }

        @media (max-width: 992px) {
            .service-block, .service-block:nth-of-type(even) {
                flex-direction: column;
                gap: 40px;
                text-align: center;
                margin-bottom: 80px;
            }
            .service-text ul li { text-align: left; }
        }
/* NAV */
.nav {
    padding: 22px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.nav a {
    text-decoration: none;
    color: #000;
    margin-right: 38px;
    transition: 0.2s ease;
}

.nav a:hover {
    opacity: 0.6;
}

.btn-primary {
    background: #000;
    padding: 10px 26px;
    border-radius: 4px;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
}

/* LINE UNDER NAV */
.nav-line {
    width: 100%;
    height: 1px;
    background: rgba(0,0,0,0.17);
    margin-bottom: 50px;
}

/* ========================= */
/*          HERO             */
/* ========================= */

.hero {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 120px 0 200px;
}

.hero-wrapper {
    width: 95%;
    max-width: 1700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    align-items: center;
}

/* --- TEXT (FIXNÍ OVERLAY) --- */
.hero-title {
    font-size: clamp(80px, 12vw, 170px);
    line-height: 0.85;
    margin: 0;
}

/* ZLATOHNĚDÝ NADPIS NA SVĚTLÉM POZADÍ */
.title-dark {
    color: #8C6A43; /* gold-brown */
}

/* ZLATOHNĚDÝ NADPIS V OBRÁZKU – ABSOLUTNÍ POZICE */
.title-light {
    position: absolute;
    left: 10%;
    top: 80%;
    transform: translateY(-50%);
    z-index: 11;
    color: #8C6A43; /* gold-brown */
    display: block;
    margin: 0;
}

/* Logo */
.hero-logo {
    width: 320px;
    margin-top: -225px;
}

/* --- OBRÁZEK --- */
.hero-right {
    grid-column: 2;
}

.hero-img {
    width: 100%;
    max-width: 1200px;
    border-radius: 0;
    display: block;
    margin-top: -140px;
}

/* ========================= */
/*      RESPONSIVNÍ VERZE    */
/* ========================= */

@media (max-width: 1100px) {

    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    /* Text se vrací do normálního flow + centrování */
    .title-light {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin-top: -10px;
        margin-left: 0;
        text-align: center;
        display: block;
        z-index: 5;
    }

    .hero-title {
        text-align: center;
        line-height: 1;
    }

    .hero-right {
        grid-column: 1;
        margin-top: 40px;
    }

    .hero-img {
        margin-top: 0;
        max-width: 100%;
    }
}
.benefits {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 200px 0;
    margin-top: -380px;
}

.benefits-wrapper {
    width: 95%;
    max-width: 1650px;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr; /* LEVÁ UZŠÍ, PRAVÁ ŠIRŠÍ */
    align-items: center;
    gap: 100px;
}

/* LEVÁ STRANA – 2 OVLÁLNÉ OBRÁZKY VEDLE SEBE */
.benefits-left {
    display: flex;
    flex-direction: row;      /* <<< vedle sebe */
    gap: 40px;
    align-items: center;
}

.benefit-oval {
    width: 260px;
    height: 160px;            /* <<< OVAL, NE KOLO */
    border-radius: 40px;      /* <<< měkké oválné rohy */
    object-fit: cover;
    display: block;
}

/* PRAVÁ STRANA – 4 BOXY VEDLE SEBE */
.benefits-right {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 benefity vedle sebe */
    gap: 40px;
}

.benefit-box h3 {
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Cormorant', serif;
    font-weight: 500;
}

.benefit-box p {
    font-size: 17px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}


/* RESPONSIVE TABLET */
@media (max-width: 1200px) {
    .benefits-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .benefits-left {
        flex-direction: row;
        justify-content: center;
    }

    .benefits-right {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 50px;
    }
}

/* MOBILE */
@media (max-width: 700px) {
    .benefits-right {
        grid-template-columns: 1fr;
    }

    .benefit-img {
        width: 180px;
        height: 180px;
    }
}
/*/* ========================= */
/*         ABOUT SEKCE       */
/* ========================= */

.about {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 160px 0;
    margin-top: -150px;
}

.about-wrapper {
    width: 90%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* zarovnání na přesný střed */
    align-items: center;
    gap: 80px;
    margin: 0 auto; /* jistota centrování */
}

/* LEVÁ STRANA */
.about-left {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bg {
    width: 83%; 
    border-radius: 6px;
    object-fit: cover;
    display: block;
}

.about-main {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, -50%);
    border-radius: 40px;
    object-fit: cover;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.15);
}

/* PRAVÁ STRANA */
.about-box {
    background: #EDE5D8;
    padding: 70px 55px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    width: 100%;
    max-width: 520px;
    min-height: auto;
    margin: 0 auto;
}

.about-box2 {
    background: #EDE5D8;
    padding: 70px 55px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    width: 100%;
    max-width: 700px;
    min-height: auto;
    margin: 0 auto;
}

.about-box2 h2 {
    font-family: 'Cormorant', serif;
    font-size: 46px;
    margin-bottom: 20px;
}

.about-box2 p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 18px;
    color: #333;
}

.about-box h2 {
    font-family: 'Cormorant', serif;
    font-size: 46px;
    margin-bottom: 20px;
}

.about-box p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 18px;
    color: #333;
}

/* RESPONSIVE */
@media (max-width: 1100px) {

    .about-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        align-items: center;
        gap: 60px;
    }

    .about-left {
        height: auto;
    }

    .about-bg {
        width: 75%;
    }

    .about-main {
        width: 60%;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        margin: -40px auto 0 auto;
    }

    .about-box {
        margin-top: 20px;
        width: 90%;
        max-width: 600px; /* víc místa pro text v mobilnějším režimu */
        padding: 50px 35px;
    }
}

@media (max-width: 700px) {

    .about-bg {
        width: 85%;
    }

    .about-main {
        width: 75%;
    }

    .about-box {
        padding: 35px 22px;
        width: 95%;
        max-width: 95%;
    }
}
/* NEZÁVISLÁ NOVÁ SEKCE */
.empathy-quote {
    width: 100%;
    padding: 140px 40px;
    text-align: center;
    color: #fff;
    margin-top: -190px;
}

/* Střední kontejner – drží text uprostřed stránky */
.empathy-quote-inner {
    max-width: 900px;
    margin: 0 auto;
}

.empathy-quote p {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 45px;
    opacity: 0.95;
}

.empathy-quote .highlight {
    font-family: 'Cormorant', serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.7;
    margin-top: 60px;
}

/* Mobile */
@media (max-width: 700px) {
    .empathy-quote {
        padding: 90px 25px;
    }

    .empathy-quote p {
        font-size: 18px;
    }

    .empathy-quote .highlight {
        font-size: 24px;
    }
}

/* ========================= */
/*     WELLNESS QUOTE        */
/* ========================= */

.wellness-quote {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 150px 0;
    background: transparent;
}

.wq-inner {
    text-align: center;
    max-width: 720px;
    padding: 0 20px;
}

/* malý nadpis */
.wq-label {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    display: block;
    margin-bottom: 25px;
}

/* hlavní citát */
.wq-text {
    font-family: 'Cormorant', serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.25;
    color: #2b2219;
    margin-bottom: 30px;
}

/* autor/rubrika */
.wq-author {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #6e5b48;
    display: block;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .service-block,
    .service-block.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-image {
        order: 1 !important;
    }

    .service-text {
        order: 2 !important;
    }

    .service-image img {
        width: 80%;
        margin: 0 auto;
    }
}
/* ========================= */
/*      SERVICES HEADER      */
/* ========================= */

.services-header {
    width: 100%;
    text-align: center;
    padding: 120px 0 60px 0;
    margin-top: -180px;
    margin-bottom: -100px;
}
.services-header h2 {
    font-family: 'Cormorant', serif;
    font-size: 64px;
    font-weight: 500;
    color: #2b2219;
    margin-bottom: 15px;
}

.services-header p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #5d4d3c;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.55;
}

/* responsive */
@media (max-width: 700px) {
    .services-header h2 {
        font-size: 42px;
    }
    .services-header p {
        font-size: 17px;
    }
}
.extra-services {
    width: 100%;
    max-width: 900px;
    margin: -160px auto;
    padding: 0 20px;
}

.extra-services h2 {
    text-align: center;
    font-family: 'Cormorant', serif;
    font-size: 58px;
    margin-bottom: 60px;
    color: #2b2219;
}

/* ITEM BOX */
.extra-item {
    background: #f8f5ef;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

/* HLAVIČKA */
.extra-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 22px 30px;
    font-size: 20px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #3a2e22;
    gap: 20px;
}

/* název vlevo */
.extra-header .title {
    flex: 1;
    text-align: left;   /* 😎 tohle ho odcentruje a zarovná vlevo */
    display: block;     /* jistota */
}

/* cena napravo */
.extra-header .price {
    font-weight: 700;
    color: #b08c63; /* luxusní béžovo-zlatavá */
    font-size: 19px;
    margin-right: 10px;
}

/* šipka */
.extra-header .arrow {
    font-size: 28px;
    color: #9c866f;
    transition: 0.3s;
}

.extra-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.extra-content.open {
    padding: 20px 30px;
}

.extra-content p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #3a2e22;
    line-height: 1.55;
    margin: 12px 0;
}

/* otevřené */
.extra-item.active .extra-content {
    max-height: 750px;
    padding: 10px 30px 25px;
}

.extra-item.active .arrow {
    transform: rotate(90deg);
}
/* ========================= */
/*     KONTAKTNÍ SEKCE       */
/* ========================= */

.contact-section {
    width: 100%;
    max-width: 1400px;
    margin: -30px auto 160px auto; /* upraveno – horní margin -50px */
    padding: 60px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ========= LEVÁ STRANA ========= */

.contact-left {
    color: #2b2219;
    display: flex;
    flex-direction: column;
    gap: 25px;
	
}

.contact-logo {
    width: 180px;
    margin-bottom: 10px;
}

.contact-left h3 {
    font-family: 'Cormorant', serif;
    font-size: 36px;
    margin-bottom: 10px;
    color: #2b2219;
}

.contact-left p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 12px;
    color: #4c4033;
}

.contact-details p strong {
    font-weight: 700;
    color: #2b2219;
}

/* MAPA */

.contact-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin-top: -30px;
}


/* ========= FORMULÁŘ VPRAVO ========= */

.contact-form {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(6px);
    padding: 40px 45px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.3);
    margin-top: 40px;
}


.contact-form h3 {
    font-family: 'Cormorant', serif;
    font-size: 38px;
    margin-bottom: 25px;
    color: #2b2219;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 18px;
}

form input,
form textarea {
    width: 100%;
    padding: 15px 18px;
    border-radius: 10px;
    border: 1px solid #d7d0c6;
    background: #fdfcf8;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    resize: none;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #b08c63;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    margin: 20px 0 30px;
}

.checkbox input {
    width: 18px;
    height: 18px;
}

.btn-submit {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    background: #b08c63;
    color: white;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #926f4d;
}

/* ========= RESPONSIVITA ========= */

@media (max-width: 900px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-logo {
        width: 140px;
    }

    .contact-map iframe {
        height: 220px;
    }
}
================================ */
/*   NADPIS KONTAKTNÍ SEKCE – SEO BAIT    */
/* ===================================== */

.contact-top {
    width: 100%;
    max-width: 1000px;
    margin: 0px auto -80px auto;
    text-align: center !important;
    padding: 0 20px;
}

.contact-top h2 {
    font-family: 'Cormorant', serif;
    font-size: 64px;
    font-weight: 500;
    color: #2b2219;
    margin-bottom: 20px;
    text-align: center !important;
    width: 100% !important;
    display: block;
}

.contact-top p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #4c4033;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center !important;
}

@media (max-width: 700px) {
    .contact-top h2 {
        font-size: 42px;
    }
    .contact-top p {
        font-size: 17px;
    }
}
/* ========================= */
/* FOOTER            */
/* ========================= */

.footer {
    width: 100%;
    /* Přidáno pro jistotu, aby padding nerozšiřoval šířku nad 100% */
    box-sizing: border-box; 
    padding: 90px 30px 50px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(4px);
    text-align: center;
    /* Zajistí, že footer nebude plavat nikde vedle něčeho */
    clear: both;
    display: block;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    /* Flexbox v inner části pomůže udržet elementy pod sebou na středu */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo {
    width: 240px;
    /* Pokud máš záporný margin, ujisti se, že logo nevyjíždí z viewportu */
    margin: -50px auto 20px auto; 
    display: block;
    opacity: 0.9;
}

/* Nadpis */
.footer h3 {
    font-family: 'Cormorant', serif;
    font-size: 40px;
    color: #2b2219;
    font-weight: 500;
    margin-bottom: 30px;
    width: 100%; /* Aby text zabral celý prostor pro centrování */
}

/* Ikonky */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-bottom: 45px;
    width: 100%;
}

/* Vyhoď ty marginy u 'a', máš tam 'gap' v flexboxu, bije se to */
.footer-social a {
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social .social-icon {
    width: 28px;
    height: 28px;
    filter: invert(0%) brightness(20%);
    transition: 0.25s ease;
}

.footer-social a:hover .social-icon {
    filter: invert(40%) sepia(30%) saturate(200%);
}

/* Spodní odkazy */
.footer-bottom {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap; /* Pro mobily, aby se to naskládalo pod sebe */
    margin-bottom: 15px;
    width: 100%;
}

.footer-bottom a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4c4033;
    text-decoration: none;
    transition: 0.3s;
}

.footer-bottom a:hover {
    color: #b08c63;
}

.copy {
    margin-top: 20px;
    font-size: 14px;
    color: #4c4033;
}
/* RESPONSIVE */
@media (max-width: 600px) {
    .footer h3 { font-size: 32px; }
    .footer-social a { font-size: 24px; }
    .footer-logo { width: 120px; }
}
/* ========================= */
/*   NEKONEČNÁ SCROLL GALERIE */
/* ========================= */

.infinite-gallery {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.gallery-track {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: scroll 35s linear infinite;
}

.gallery-track img {
    height: 160px;
    width: auto;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    user-select: none;
    pointer-events: none;
}

/* Plynulý nekonečný scroll */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Full-width světlejší pozadí pro 2. službu */
.service-block:nth-of-type(2) {
    position: relative;
    z-index: 1;
}

.service-block:nth-of-type(2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: rgba(248, 245, 238, 0.10);  /* 10% opacity */
    z-index: -1;
}
.service-block:nth-of-type(4) {
    position: relative;
    z-index: 1;
}
.service-block:nth-of-type(4)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: rgba(248, 245, 238, 0.10);  /* 10% opacity */
    z-index: -1;
}

.simple-gallery {
    padding: 60px 20px;
    max-width: 1400px;
    margin: 0 auto 80px auto; 
}
.gallery-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 35px;
}

.simple-gallery-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.simple-gallery-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}
/* ========================= */
/*   SMYSLOVݠRITUÁL SEKCE   */
/* ========================= */

.ritual-section {
    padding: 140px 20px;}

.ritual-header {
    text-align: center;
    margin-bottom: 80px;
}

.ritual-header h2 {
    font-family: 'Cormorant', serif;
    font-size: 58px;
    font-weight: 500;
    color: #2b2219;
    margin-bottom: 15px;
}

.ritual-header .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    color: #5d4d3c;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.55;
}

.ritual-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: start;
}
.ritual-photo {
    width: 90%;
    max-width: 380px;
    margin: 40px auto 0 auto;   /* <<< TOHLE ho vycentruje v r᭣i textov騯 sloupce */
    display: block;             /* <<< dùleit頪/
    border-radius: 26px;
    object-fit: cover;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}/* TEXTY */

.ritual-text p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.65;
    color: #3a2e22;
    margin-bottom: 22px;
}

/* CEN͋ BOX */

.ritual-pricelist {
    background: #f8f5ef;
    border-radius: 20px;
    padding: 45px 45px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ritual-pricelist h3 {
    font-family: 'Cormorant', serif;
    font-size: 40px;
    font-weight: 500;
    color: #2b2219;
    margin-bottom: 35px;
    text-align: center;
}

/* POLOKY */

.price-item {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.price-item strong {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #2b2219;
}

.price-item p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #5d4d3c;
    margin-top: 6px;
}

.price-item span {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #b08c63;
    white-space: nowrap;
}

/* BAL͈KY */

.price-packages {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px dashed rgba(0,0,0,0.25);
    text-align: center;
}

.price-packages h4 {
    font-family: 'Cormorant', serif;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #2b2219;
}

.price-packages p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #3a2e22;
    margin: 8px 0;
}

.price-packages span {
    color: #6e5b48;
}

/* CTA */

.ritual-cta {
    margin-top: 35px;
    text-align: center;
}

.ritual-cta a,
.ritual-cta button {
    display: inline-block;
    padding: 20px 40px;      /* velikost tlačítka */
    font-size: 20px;         /* velikost textu */
    border-radius: 14px;     /* zakulacení */
}

.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999999;
    isolation: isolate;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .ritual-content {
        grid-template-columns: 1fr;
        gap: 60px;

        justify-items: center;    /* centruje položky v gridu */
        align-items: center;

        margin-left: auto;        /* ⬅️ CENTRUJE CELÝ BLOK */
        margin-right: auto;

        text-align: center;
    }

    .ritual-header {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;      /* ⬅️ centruje vnitřek */
    }

    .ritual-header h2 {
        font-size: 44px;
        text-align: center;
    }

    .ritual-pricelist {
        margin-left: auto;        /* ⬅️ CENTRUJE BOX */
        margin-right: auto;
    }
}

@media (max-width: 700px) {
    .ritual-section {
        padding: 90px 20px;
    }

    .ritual-pricelist {
        padding: 
@media (max-width: 768px) {
    .simple-gallery-row {
        grid-template-columns: repeat(2, 1fr);
    }
}
    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
        border-color: #e0d5c8 !important;
    }

/* Základní styly pro navigaci */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff; /* nebo vaše barva */
  position: relative;
}

.nav-left {
  display: flex;
  align-items: center;
}

.nav-links a {
  margin-right: 20px;
  text-decoration: none;
  color: #333;
}

/* Hamburger menu - skryté na desktopu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 100;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #5D3F6A;
  transition: 0.3s;
}

/* Mobilní zobrazení (typicky pod 768px) */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none; /* Skryjeme klasické menu */
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    padding: 1rem 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 99;
  }

  .nav-links.active {
    display: flex; /* Zobrazíme při aktivaci JS */
  }

  .nav-links a {
    padding: 10px 20px;
    margin: 0;
    border-bottom: 1px solid #eee;
  }
  
  /* Volitelné: Skrytí tlačítka Reservio na malých mobilech, pokud překáží */
  .nav-right {
    scale: 0.8; 
  }
}
