/* =========================================
   1. PREMENNÉ A ZÁKLADNÉ NASTAVENIA
   ========================================= */
:root {
    --gold-grad: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fcf6ba, #aa771c);
    --gold-border: #d4af37;
    --gold-solid: #b38728;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
    font-family: 'Montserrat', sans-serif; 
    background-color: #fdfbf7; 
    color: #333; 
    line-height: 1.6; 
    overflow-x: hidden; 
}

/* =========================================
   2. ANIMÁCIE A EFEKTY (UPRATANÉ)
   ========================================= */
@keyframes fadeInUpMain { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: translateY(0); } }
@keyframes goldShine { 0% { background-position: 200% center; } 100% { background-position: 0% center; } }
@keyframes pulse-gold { 0% { box-shadow: 0 0 0 0 rgba(179, 135, 40, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(179, 135, 40, 0); } 100% { box-shadow: 0 0 0 0 rgba(179, 135, 40, 0); } }
@keyframes shiny-btn { 0% { left: -100%; } 20% { left: 150%; } 100% { left: 150%; } }

header, .nabeh-hned { animation: fadeInUpMain 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

.reveal { 
    opacity: 0; 
    transform: translateY(30px) scale(0.98); 
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1); 
}
.reveal.active { opacity: 1; transform: translateY(0) scale(1); }

/* =========================================
   3. HLAVIČKA A NAVIGÁCIA
   ========================================= */
header { background: #fff; padding: 15px 0; text-align: center; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; }
nav a { margin: 0 12px; text-transform: uppercase; font-size: 11px; letter-spacing: 1.5px; font-weight: 700; color: #000 !important; text-decoration: none; transition: 0.3s; display: inline-block; }
nav a:hover { color: var(--gold-solid) !important; }
nav a[href*="reservio"] { color: var(--gold-solid) !important; border: 1.5px solid var(--gold-solid); padding: 6px 18px; border-radius: 25px; margin-left: 15px; }
nav a[href*="reservio"]:hover { background: var(--gold-solid); color: #fff !important; }

/* =========================================
   4. LOGO A NADPISY 
   ========================================= */
.hero-container { 
    padding: 60px 20px 0 20px; /* Toto drží logo pekne hore bližšie k navigácii */
    text-align: center;        /* Vycentruje logo na stred */
    max-width: 900px; 
    margin: 0 auto; 
}

.logo-text, .gold-text-motto { 
    background: linear-gradient(to right, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fcf6ba 75%, #bf953f 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    animation: goldShine 10s linear infinite; 
    display: block;
    margin: 0 auto;
}

.logo-text { 
    font-family: 'Great Vibes', cursive !important; 
    font-size: clamp(38px, 7vw, 60px); 
    
    /* KĽÚČOVÉ ZMENY PRE CHÝBAJÚCE "Y": */
    line-height: 1.5;         /* Zväčšíme výšku riadku, aby mala slučka dosť miesta */
    padding-bottom: 15px;     /* Vytlačíme spodný okraj boxu nižšie, aby gradient neosekal písmeno */
    margin-bottom: -10px;     /* Kompenzácia: pritiahne motto späť bližšie k logu, aby nevznikla diera */
}
.gold-text-motto { font-size: 12px; text-transform: uppercase; letter-spacing: 7px; font-weight: 700; margin-top: 15px; text-align: center; }

.title-sub-small { font-family: 'Great Vibes', cursive !important; font-size: 32px !important; margin-bottom: 25px; display: block; color: var(--gold-solid); }

/* KRASA ZACINA ODDYCHOM..... */
.hero-description-small { 
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    font-weight: 400;              /* VRÁTENÁ PÔVODNÁ JEMNÁ HRÚBKA (písmo zostane elegantne tenké) */
    color: var(--gold-solid);      /* Tvoja pôvodná zlatá farba */
    font-size: 22px;    /* TÁTO HODNOTA BUDE REAGOVAŤ: Skúsme čistých 24px */
    line-height: 1.8; 
    margin: 0 auto 25px auto; 
    text-align: center; 
    max-width: 800px; 
    display: block; 
}

.divider-thin { width: 100px; height: 1px; background: var(--gold-border); margin: 30px auto; display: block; }

/* ==========================================================================
    NADPIS PRE PODSTRÁNKY (OBOČIE, MASÁŽE, KOZMETIKA...)
   ========================================================================== */

/* Ochranné okraje pre texty a prepojenie na scrollovací efekt */
body .vlastny-obsah-stranky {
    max-width: 850px; 
    margin: 0 auto; 
    text-align: center; 
    color: #333; 
    line-height: 1.9;
    padding: 0 25px; /* KĽÚČOVÝ RIADOK: Vytvorí voľné miesto od okrajov mobilu */
    
    /* ŠTART ANIMÁCIE PRE SCROLLOVANIE: */
    opacity: 0; 
    transform: translateY(30px) scale(0.98); 
    transition: opacity 1.2s ease, transform 1.2s cubic-bezier(0.22, 1, 0.36, 1); 
}

/* Keď pri scrollovaní váš JavaScript pridá triedu active, text sa plynule odhalí */
body .vlastny-obsah-stranky.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Veľký zlatý nadpis služby poistený pre mobil */
body .vlastny-nazov-sluzby {
        background: linear-gradient(to right, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fcf6ba 75%, #bf953f 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    animation: goldShine 10s linear infinite; 
    display: block;
    text-align: center;

    font-family: 'Montserrat', sans-serif; 
    font-size: 21px;              
    letter-spacing: 6px;          
    font-weight: 500;             
    text-transform: uppercase;    
    line-height: 1.2;

    margin: 40px auto 30px auto;
}

/* =========================================
    RIADENIE ÚVODNÝCH TEXTOV A ČIAR (ČISTÉ)
   ========================================= */

/* Kontajner, ktorý drží úvodné odseky textu */
.uvodny-text-kontajner {
    max-width: 850px; 
    margin: 0 auto; 
    text-align: center; 
    color: #666; 
    line-height: 1.9;
}

/* Štýlovanie pre samotné odseky textu */
.uvodny-text-kontajner p {
    font-size: 16px; 
    margin-bottom: 20px;
}

/* TU SÚ ZLATÉ ZVÝRAZNENIA V ÚVODE - Ovládate veľkosť, hrúbku a farbu na všetkých podstránkach */
.uvodny-text-kontajner p strong {
    color: var(--gold-solid); /* OPRAVENÉ: Pridaná farba, aby bol text skutočne zlatý */
    font-size: 18px;          /* Ak chcete zlaté slová zväčšiť, prepíšte na 17px alebo 18px */
    font-weight: 500;         /* Ak sa vám zdá písmo hrubé, prepíšte na 500. Ak ho chcete hrubšie, dajte 700 */
}

/* Reset spodného okraja pre úplne posledný odsek, aby nevznikla extra veľká diera */
.uvodny-text-kontajner p:last-child {
    margin-bottom: 0;
}

/* Čisté riadenie tenkej zlatej čiary */
.deliaca-ciara-tenka {
    width: 100px; 
    height: 1px; 
    background: var(--gold-border); /* Použije vašu zlatú farbu pre okraje */
    margin: 40px auto; 
    display: block; 
}

/* =========================================
   5. TLAČIDLÁ (S EFEKTOM BLESKU)
   ========================================= */

.review-card:hover, .review-card-compact:hover { 
    transform: translateY(-8px); 
    border-color: var(--gold-border); 
    box-shadow: 0 15px 35px rgba(179, 135, 40, 0.1); 
}
.btn-gold, .btn-outline-gold {
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; justify-content: center; padding: 16px 35px; border: 1px solid var(--gold-border); 
    color: var(--gold-solid); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; text-decoration: none; transition: 0.4s;
}
.btn-gold:hover, .btn-outline-gold:hover { background-color: var(--gold-solid); color: #fff !important; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(179, 135, 40, 0.2); }

.btn-gold::after, .btn-outline-gold::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg); animation: shiny-btn 6s infinite;
}


/* =========================================
   6. KARTY SLUŽIEB (S EFEKTOM VZNÁŠANIA)
   ========================================= */
/* Základné nastavenie pre MOBIL zostáva úplne nedotknuté, pôvodné a rýchle */
.services-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px; 
    max-width: 1150px; 
    margin: 20px auto 40px auto; 
    padding: 0 20px; 
}

.service-card { 
    background: #fff; 
    text-align: center; 
    border: 1px solid #f2f2f2; 
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s; 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
    border-radius: 2px;
}
.service-card:hover { transform: translateY(-12px); border-color: var(--gold-border); box-shadow: 0 20px 40px rgba(179, 135, 40, 0.15); }

.card-image { 
    width: 100%; 
    height: 360px; 
    object-fit: cover; 
    object-position: center center; 
    transition: transform 0.6s ease; 
}
.service-card:hover .card-image { transform: scale(1.05); }

.card-content-compact { padding: 30px 20px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.card-content-compact h3 { font-size: 16px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 15px; font-weight: 700; }
.card-desc-small { 
    font-size: 15px; 
    color: #666666; 
    margin-bottom: 20px; 
    line-height: 1.6; 
}

/* --------------------------------------------------------------------------
   ČISTÁ NADSTAVBA: OD ŠÍRKY 769px (TABLETY A PC) ROZTIAHNE KARTY POD SEBA
   -------------------------------------------------------------------------- */
@media (min-width: 769px) {
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 40px; 
    }

    .services-grid .service-card {
        flex-direction: row;
        width: 100%;
        align-items: stretch;
        text-align: left;
        height: 300px; 
    }

    .services-grid .service-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .services-grid .service-card .card-image {
        flex: 0 0 380px;
        width: 380px;
        height: 100%;
    }

    /* Prispôsobenie šírky fotky špecificky pre užšie displeje tabletov */
    @media (max-width: 1150px) {
        .services-grid .service-card .card-image {
            flex: 0 0 280px;
            width: 280px;
        }
    }

    .services-grid .service-card .card-content-compact {
        padding: 30px 45px; 
        justify-content: center;
        align-items: flex-start;
    }

    /* Príprava nadpisu na plynulú zmenu farby a pridanie spodného miesta */
    .services-grid .service-card .card-content-compact h3 {
        text-align: left;
        display: inline-block; 
        width: auto;
        position: relative;
        padding-bottom: 12px;
        margin-bottom: 15px;
        transition: color 0.4s ease;
    }

    /* LUXUSNÝ SVETELNÝ PRELIV: Nadpis pri hoveri ožije tečúcim zlatým odleskom */
    .services-grid .service-card:hover .card-content-compact h3 {
        background: linear-gradient(to right, #333 0%, #bf953f 25%, #fcf6ba 50%, #b38728 75%, #333 100%);
        background-size: 200% auto;
        -webkit-background-clip: text; 
        background-clip: text; 
        color: transparent; 
        -webkit-text-fill-color: transparent;
        animation: goldShine 4s linear infinite; /* Čerpá z animácie, ktorú už na webe máš */
    }

    /* Plynulá zlatá čiarka pod celým textom nadpisu */
    .services-grid .service-card .card-content-compact h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold-border);
        transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .services-grid .service-card:hover .card-content-compact h3::after {
        width: 100%;
    }

    .services-grid .service-card .card-content-compact h2,
    .services-grid .service-card .card-desc-small {
        text-align: left;
        width: 100%;
    }
    
    .services-grid .service-card .card-desc-small {
        margin-bottom: 15px;
    }

    .services-grid .service-card .btn-outline-gold {
        align-self: flex-start;
        margin-top: 5px;
        display: inline-flex;
        width: auto;
    }
}

/* =========================================
   7. CENNÍKY A VÝHODY
   ========================================= */
.cennik-nadpis {
    font-size: 15px;
    letter-spacing: 4px;
    margin: 50px 0 30px 0;
    color: var(--gold-solid);
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}

.price-list-box { margin: 20px auto; max-width: 750px; text-align: left; padding: 0 20px; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px !important; font-size: 16px; }
.price-dots { flex-grow: 1; border-bottom: 1px dotted #e0d0b0; margin: 0 10px; }
.price-value { font-weight: 700; color: var(--gold-solid); }

.price-description { 
    font-family: 'Montserrat', sans-serif; font-size: 14px; color: #858585; font-style: italic; 
    margin-top: -12px; margin-bottom: 22px; line-height: 1.5; display: block; text-align: left; 
}

/* =========================================================================
   HLAVNÝ SPOLOČNÝ OVLÁDAČ PRE VŠETKY ZLATÉ TEXTY NA STRÁNKE
   (Meníte veľkosť a hrúbku na jednom mieste pre Úvod, Výhody aj Priebeh hojenia)
   ========================================================================= */
.info-box-clean ul li strong { 
    color: var(--gold-solid); 
    font-size: 16px;   /* <--- TU ZMENÍTE VEĽKOSŤ PRE VŠETKO ZLATE NARAZ */
    font-weight: 400;  /* <--- TU ZMENÍTE HRÚBKU PRE VŠETKO ZLATE NARAZ */
}
/* =========================================
   ŠTÝLY PRE PODSTRÁNKU O NÁS (FINÁLNA VERZIA)
   ========================================= */

/* Kontajner pre vycentrovanie profilovej fotky */
body .owner-avatar-block {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Štýlovanie profilovej fotografie majiteľky - POISTENÉ PRE MOBIL */
body .jarka-nova-kruhova-fotka {
    width: 200px; 
    height: 200px; 
    object-fit: cover; 
    border-radius: 50%; 
    border: 2px solid var(--gold-border); /* Používa váš globálny zlatý okraj */
    display: block;
    margin: 0 auto;
}

/* Ozdobný trblietavý nadpis pre majiteľku Jarku - POISTENÉ PRE MOBIL */
body .jarka-novy-trblietavy-nadpis {
    font-family: 'Great Vibes', cursive; 
    font-size: 32px;
    background: linear-gradient(to right, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fcf6ba 75%, #bf953f 100%);
    background-size: 200% auto; 
    -webkit-background-clip: text; 
    background-clip: text;
    color: transparent; 
    -webkit-text-fill-color: transparent;
    animation: goldShine 12s linear infinite; 
    display: block; 
    text-align: center; 
    margin: 20px 0 30px 0; 
    letter-spacing: 1px;
} 
/* ==========================================================================
   8. RECENZIE (ZJEDNOTENÁ A VYČISTENÁ VERZIA BEZ DUPLICÍT)
   ========================================================================== */
.reviews-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 30px; 
    margin-top: 40px; 
}

/* KĽÚČOVÉ ZJEDNOTENIE: Základný čistý vzhľad pre všetky karty */
.review-card, .review-card-compact, .review-card-static { 
    background: #fff; 
    border: 1px solid #f9f0e0; 
    padding: 40px 30px; 
    flex: 0 0 auto;            /* Zmena z flex:1 na stabilný základ, aby iPhony nedeformovali šírku */
    width: 100%;
    min-width: 280px; 
    max-width: 450px; 
    border-radius: 15px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.03); 
    transition: 0.4s; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.review-card:hover, .review-card-compact:hover, .review-card-static:hover { 
    transform: translateY(-8px); 
    border-color: var(--gold-border); 
    box-shadow: 0 15px 35px rgba(179, 135, 40, 0.1); 
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 15px auto;
    border: 2px solid #f9f0e0; 
}

/* --- TRBLIETAVÉ HVIEZDIČKY S PRECHÁDZAJÚCIM LESKOM --- */
.review-stars { 
    font-size: 14px; 
    letter-spacing: 3px; 
    text-align: center;
    margin-bottom: 10px; 
    display: block; 
    background: linear-gradient(to right, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fcf6ba 75%, #bf953f 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; 
    background-clip: text; 
    color: transparent; 
    -webkit-text-fill-color: transparent;
    animation: goldShine 10s linear infinite; 
}

@keyframes goldShine {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* Text recenzie pre všetky verzie kariet */
.review-text, .review-card-compact p, .review-card-static p { 
    font-family: 'Playfair Display', serif; 
    font-style: italic; 
    color: #555; 
    font-size: 18px; 
    line-height: 1.8; 
    text-align: center;
    margin: 10px 0 0 0;
}

/* Meno autora pre všetky verzie kariet */
.review-author, .review-card-compact span, .review-card-static span { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 12px; 
    letter-spacing: 2px; 
    text-transform: uppercase; 
    color: var(--gold-solid); 
    font-weight: 700; 
    display: block; 
    margin-top: 15px; 
    text-align: center;
}

/* --- RESPONSIVITA (ÚPRAVY PRE MOBILNÝ SLIDER AJ MRIEŽKU POD 768px) --- */
@media screen and (max-width: 768px) {
    .review-card-compact p, .review-card-static p { 
        font-size: 17px; 
        line-height: 1.6;
    }
    
    .review-card-compact span, .review-card-static span { 
        font-size: 12px; 
    }

    /* Špecifické vycentrovanie kompaktnej karty priamo vo vnútri slideru na mobile */
    .slider-item-review .review-card-compact {
        width: 86%;
        margin: 0 auto;
    }
}

/* ==========================================================================
   DOPLNOK: OVLÁDANIE ROZBAĽOVANIA 14 RECENZIÍ
   ========================================================================== */
.reviews-hidden-grid {
    display: none;
    max-width: 930px; 
    margin: 40px auto 0 auto;
    gap: 30px; 
}

.reviews-hidden-grid.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================================================
   9. SLIDER (FOTKY + VIDEÁ + BODKY + PLAY)
   ============================================================ */
.slider-wrapper { 
    position: relative; 
    max-width: 100%; 
    margin: 40px auto; 
    overflow: visible; 
}

.salon-slider { 
    display: flex; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    scroll-behavior: smooth; 
    gap: 0; 
    padding: 10px 0; 
    scrollbar-width: none; 
    height: 500px; 
    background: transparent; 
}

#reviewSlider {
    height: auto;
}

.salon-slider::-webkit-scrollbar { 
    display: none; 
}

.slider-item { 
    flex: 0 0 100%; 
    scroll-snap-align: center; 
    display: flex; 
    justify-content: center; 
    position: relative; 
}

.slider-item-review {
    flex: 0 0 100%;       
    scroll-snap-align: center; 
    height: auto;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    padding: 0 10px;      
}

#salonSlider .slider-item img { 
    height: 100%; 
    width: auto; 
    max-width: 95%; 
    object-fit: cover; 
    border-radius: 15px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
}

.slider-item video { 
    height: 100%; 
    width: auto; 
    max-width: 95%; 
    object-fit: contain; 
    border-radius: 15px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    background-color: #000; 
    cursor: pointer;
    pointer-events: auto;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px; 
    height: 60px;
    background: rgba(188, 164, 122, 0.75); 
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none; 
    transition: transform 0.3s ease, opacity 0.5s ease;
    color: #ffffff;
    font-size: 24px;
    padding-left: 4px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    opacity: 1; 
}

.slider-item:hover .play-overlay {
    background: rgba(188, 164, 122, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.slider-btn { 
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); 
    background: rgba(255, 255, 255, 0.9); 
    border: 1px solid #bca47a; 
    color: #bca47a; 
    font-size: 20px; 
    width: 42px; 
    height: 42px; 
    border-radius: 50%; 
    cursor: pointer; 
    z-index: 100; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    transition: 0.3s;
}

.slider-btn:hover { background: #bca47a; color: #fff; }
.slider-btn.prev { left: 15px; } 
.slider-btn.next { right: 15px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background-color: #bca47a; 
    transform: scale(1.3);
}


/* =========================================
   11. OSTATNÉ A PÄTIČKA
   ========================================= */
.why-us-section { padding: 80px 20px; text-align: center; max-width: 1100px; margin: 0 auto; }
.benefits-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px; margin-top: 40px; }
.benefit-item { flex: 1; min-width: 250px; max-width: 320px; text-align: center; display: flex; flex-direction: column; align-items: center; }

.voucher-section { padding: 80px 20px; background-color: #fff; }
.voucher-container { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 50px; }
.voucher-img { width: 100%; max-width: 500px; height: 380px; object-fit: cover; border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }

.floating-contact { position: fixed; bottom: 30px; right: 30px; background: var(--gold-grad); width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2000; animation: pulse-gold 2s infinite; text-decoration: none; }
footer { text-align: center; padding: 50px 20px; font-size: 11px; color: #666666; text-transform: uppercase; letter-spacing: 2px; }

/* =========================================
   12. RESPONSIVITA (Mobil)
   ========================================= */
.mobile-hint { display: none; text-align: center; margin-top: 20px; }

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .salon-slider { height: 350px; }
    .logo-text { 
    font-size: 60px;       /* Zväčší text na mobile bolo 50, len ten riadok */
    letter-spacing: 2,5px;   /* Roztiahne okrasné písmo do šírky, aby sa vyrovnalo spodnému textu */
    line-height: 1.1; 
}

    .hero-description-small { font-size: 20px; }
    .voucher-container { flex-direction: column-reverse; text-align: center; gap: 30px; }
    .voucher-img { height: 280px; }
    .mobile-hint { display: block !important; }
    .slider-btn { display: none; }
}
/* ==========================================================================
   13. INFORMAČNÉ SEKCIE (FINÁLNA VERZIA - ZAROVNANIE OD KRAJA)
   ========================================================================== */

/* Spoločný kontajner pre informačné boxy */
.info-box-clean {
    max-width: 750px;
    margin: 40px auto;
    padding: 30px 25px;
    background: #fffaf0;
    border: 1px solid #f9f0e0;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Štýlovanie nadpisov sekcií */
.info-box-clean h3 {
    font-size: 14px;
    color: var(--gold-solid);
    margin-top: 0;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    font-weight: 400;
}

/* Jednotný základný zoznam */
.info-list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* NASTAVENIE PRE POČÍTAČ (DESKTOP) */
.info-list-clean li {
    display: flex;
    flex-direction: column;    
    align-items: flex-start;
    position: relative;
    padding-left: 25px;        
    margin-bottom: 20px;       
    line-height: 1.6;
    font-size: 16px;
    color: #666;
    text-align: left;          /* OPRAVA: Text už nebude centrovaný, ale začne pekne odľava */
}

/* AUTOMATICKÉ ZLATÉ BODKY */
.info-list-clean li::before {
    content: "•";
    color: var(--gold-solid);
    font-weight: bold;
    font-size: 22px;
    position: absolute;
    left: 5px;
    top: -2px;                 
    flex-shrink: 0;
}

/* AUTOMATICKÉ KRÍŽIKY (KONTRAINDIKÁCIE) */
.info-list-clean.kontraindikacie li::before {
    content: "✕";
    font-size: 13px;           
    position: absolute;
    left: 5px;
    top: 4px;          
    color: #c5a880;            
    flex-shrink: 0;
}

/* ZLATÉ NADPISY ODRÁŽOK */
.info-box-clean .info-list-clean li strong {
    color: var(--gold-solid);
    font-size: 18px;           
    font-weight: 500;
    display: block;            
    margin-bottom: 4px;        
    text-align: left;          /* OPRAVA: Aj zlatý nadpis pôjde striktne zľava */
}

/* RESPONZIVITA PRE MOBILY UNDER 768px */
@media screen and (max-width: 768px) {
    .info-list-clean li {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        text-align: left;      /* Poistka pre mobily: zarovnanie vľavo */
    }
    
    .info-list-clean li::before, .info-list-clean.kontraindikacie li::before {
        left: 2px;
    }

    .info-box-clean .info-list-clean li strong {
        font-size: 17px;       
        text-align: left;      /* Poistka pre mobily: zarovnanie vľavo */
    }
}

/* =========================================
   OPRAVENÁ SEKCIA: MAPA A TLAČIDLÁ
   ========================================= */
.map-link-beauty {
    text-decoration: none;
    display: block;
    width: 100%;
}

.map-wrapper-beauty {
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--gold-border);
    cursor: pointer;
    margin-top: 15px;
}

.map-img-beauty {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.map-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Drží tlačidlo presne v strede */
    background: transparent;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
    border-bottom: 2px solid var(--gold-solid);
    padding-bottom: 5px;
    transition: 0.3s ease;
    z-index: 10;
}

/* Efekty pri prejdení myšou */
.map-link-beauty:hover .map-img-beauty {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.map-link-beauty:hover .map-overlay-btn {
    /* Tu musíme zachovať -50% -50% a k tomu pridať jemný posun hore */
    transform: translate(-50%, -60%); 
    color: var(--gold-solid) !important;
}

/* ŠPECIÁLNA OPRAVA PRE MOBILY */
@media (max-width: 768px) {
    .map-wrapper-beauty { 
        height: 260px; /* Jednotná výška pre mobily */
    }
    
    .map-overlay-btn {
        font-size: 11px;
        padding-bottom: 3px;
        letter-spacing: 2px;
    }

    .contact-container a.btn-gold {
        min-width: 100% !important; 
        width: 100% !important;
        box-sizing: border-box;
    }
}
/* --- MOBILNÉ MENU (HAMBURGER S TEXTOM) --- */
.hamburger { 
    display: none; 
    cursor: pointer; 
    align-items: center; /* Zarovná text a čiarky presne vedľa seba na stred */
    gap: 8px;            /* Medzera medzi textom Menu a čiarkami */
    padding: 10px; 
}

/* Štýl pre samotné slovo "Menu" */
.hamburger-text {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #000 !important;
}

/* Kontajner, ktorý drží 3 čiarky pod sebou */
.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Medzera medzi čiarkami */
}

/* Samotné čiarky hamburgeru */
.hamburger-lines span { 
    width: 22px; 
    height: 2px; 
    background: #000; 
    transition: 0.3s; 
    display: block;
}

@media (max-width: 768px) {
    nav { justify-content: flex-end !important; position: relative; display: flex; }
    .hamburger { display: flex !important; } /* Ukáže upravený hamburger na mobile */
    
    .nav-links { 
        display: none; 
        flex-direction: column; 
        position: absolute; 
        top: 100%; 
        left: -20px; /* Vyrovnanie podľa tvojho paddingu */
        width: calc(100% + 40px); 
        background: #fff; 
        padding: 20px 0; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.05); 
        z-index: 1000;
    }

    .nav-links.active { display: flex; }
    
    .nav-links a { 
        width: 100% !important; 
        text-align: center; 
        padding: 15px 0 !important; 
        margin: 0 !important; 
        border-bottom: 1px solid #f2f2f2; 
        font-family: 'Montserrat', sans-serif !important;
        font-size: 13px !important;
    }

    /* Špeciálne pre Rezerváciu na mobile (bez rámika, aby sa nezalamovalo) */
    .nav-links a.res-btn { border: none !important; color: #b38728 !important; font-weight: bold; }
}

/* PC VERZIA DROPDOWN */
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 2000;
    text-align: left;
}
.dropdown-content a {
    color: #333 !important;
    padding: 12px 20px !important;
    display: block;
    border-bottom: 1px solid #f9f9f9;
    text-transform: none !important; /* Aby to neboli len kapitálky */
    font-weight: 400 !important;
}

/* Zobrazenie na PC pri prejdení myšou */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content { display: block; }
}

/* MOBILNÁ VERZIA DROPDOWN (Pod 768px) */
@media (max-width: 768px) {
    .dropdown-content {
        position: static; /* Na mobile to neodskakuje do strany, ale odsunie menu nižšie */
        display: none;
        width: 100%;
        background-color: #fafafa; /* Jemne odlišná farba pozadia pre služby */
        box-shadow: none;
    }
    .dropdown-content.show { display: block; }
    .dropdown-content a { text-align: center; }
}
@media screen and (max-width: 768px) {
    /* 1. Zabezpečíme, aby nav bol "flex" a rozťahoval sa na celú šírku */
    nav {
        display: flex;
        justify-content: space-between; /* Toto odtlačí tlačidlo a hamburger od seba */
        align-items: center;
        width: 100%;
        padding: 0 15px; /* Malá medzera od okrajov displeja */
    }

    /* 2. Toto tlačidlo "odkopne" všetko napravo od seba */
    .permanent-btn {
        display: inline-block !important;
        margin-right: auto; /* Kľúčový riadok: pošle tlačidlo doľava */
        margin-left: 0;
    }

    /* 3. Hamburger ostane prirodzene vpravo */
    .hamburger {
        margin-left: 15px; 
    }
}
/* --- OPRAVA TLAČIDIEL (PC vs MOBIL) --- */

/* 1. Na počítači schováme to nové tlačidlo, čo je vľavo/hore */
.permanent-btn {
    display: none !important;
}

/* 2. Na počítači ukážeme to pôvodné tlačidlo v menu vpravo */
.nav-links .menu-btn {
    display: inline-block !important;
}

/* 3. Nastavenia len pre MOBIL */
@media screen and (max-width: 768px) {
    /* Na mobile ukážeme to tlačidlo vľavo */
    .permanent-btn {
        display: inline-block !important;
        margin-right: auto;
    }

    /* Na mobile schováme to vnútri hamburgeru, nech tam nie je 2x */
    .nav-links .menu-btn {
        display: none !important;
    }
    
    /* Uistíme sa, že nav je flexbox, aby to tlačidlo bolo vľavo a hamburger vpravo */
    nav {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}
/* =========================================
   3D KOCKA BEAUTY MELL - FINÁLNA VERZIA
   ========================================= */
.cube-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 40px 0;
    overflow: visible; 
}

.cube-container a {
    display: block;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.3s ease;
}

.cube-scene {
    width: 200px;
    height: 200px;
    perspective: 1200px;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.barber-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    
    /* STATICKÝ ŠTART: Kocka stojí rovno */
    transform: rotateX(0deg) rotateY(0deg); 
    
    /* ANIMÁCIA: Pomalý nábeh */
    animation: rotateBarberCube 22s infinite linear;
}

.cube-face {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #fff;
    box-shadow: 0 0 0 1px #e0d0b0;
    
    /* Skryjeme zadné strany pre čistý vzhľad */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.cube-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* POZÍCIE STIEN (101px trik zostáva) */
.face-front  { transform: rotateY(0deg) translateZ(101px); }
.face-right  { transform: rotateY(90deg) translateZ(101px); }
.face-back   { transform: rotateY(180deg) translateZ(101px); }
.face-left   { transform: rotateY(-90deg) translateZ(101px); }
.face-top    { transform: rotateX(90deg) translateZ(101px); }
.face-bottom { transform: rotateX(-90deg) translateZ(101px); }

/* ANIMÁCIA: Začína z nuly, žiadne prednastavené rotácie */
@keyframes rotateBarberCube {
    from { 
        transform: rotateX(0deg) rotateY(0deg); 
    }
    to { 
        transform: rotateX(360deg) rotateY(360deg); 
    }
}

/* PC EFEKTY */
@media (hover: hover) {
    .cube-container a:hover { transform: scale(1.08); cursor: pointer; }
    .cube-scene:hover .barber-cube { animation-play-state: paused; }
}

/* MOBILNÁ VERZIA */
@media screen and (max-width: 400px) {
    .cube-scene, .cube-face { width: 170px; height: 170px; }
    .face-front  { transform: rotateY(0deg) translateZ(86px); }
    .face-right  { transform: rotateY(90deg) translateZ(86px); }
    .face-back   { transform: rotateY(180deg) translateZ(86px); }
    .face-left   { transform: rotateY(-90deg) translateZ(86px); }
    .face-top    { transform: rotateX(90deg) translateZ(86px); }
    .face-bottom { transform: rotateX(-90deg) translateZ(86px); }
}

