:root {
    --primary-color: #0d3b36;
    /* Tmavá zelená */
    --secondary-color: #8a6d46;
    /* Zlatá/Hnedá */
    --text-color: #333;
    --bg-light: #f9f9f9;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    margin-top: 0;
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- NAVIGÁCIA (Zachovaná logika) --- */
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1em;
    background-color: var(--primary-color);
    border-bottom: 1px solid #0a2e2a;
    position: relative;
    z-index: 100;
}

.navbar .logo {
    margin-right: 4em;
}

.navbar .logo img {
    max-height: 50px;
    height: auto;
    width: auto;
    aspect-ratio: 118 / 53;
}

.navbar .nav-links {
    display: flex;
    gap: 2em;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    /* Jemne zmenšené pre eleganciu */
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.navbar .nav-links a {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: var(--white);
}

.appointment-button {
    margin-left: 20px;
    transition: transform 0.2s;
}

.appointment-button img {
    height: 50px;
}

.appointment-button:hover {
    transform: scale(1.1);
}

/* Burger Menu */
.burger {
    display: none;
    /* Defaultne skryté na PC */
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 110;
    flex-direction: column;
    justify-content: space-between;
    margin-left: auto;
    /* Posun vpravo na mobile */
    margin-right: 10px;
}

.line {
    width: 100%;
    height: 3px;
    background-color: var(--white);
    transition: background-color 0.3s ease;
}

/* --- HERO SEKCIA --- */
#hero {
    /* Toto zabezpečí, že sekcia bude vysoká aspoň 85% výšky okna */
    /* Tým pádom videá budú až nižšie a lazy-loading bude fungovať správne */
    min-height: 85vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Vycentruje obsah vertikálne */
    text-align: center;
    padding: 100px 20px 40px 20px;
    background: linear-gradient(to bottom, #ffffff 0%, #fdfbf7 100%);
    /* Jemný prechod do krémovej */
    position: relative;
}

.hero-content {
    max-width: 800px;
    /* Dôležité: zabezpečí, že obsah má okolo seba priestor a netlačí sa na videá */
    margin-bottom: 80px;
}

#hero h1 {
    font-size: 3rem;
    /* Veľký, dominantný nadpis */
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    line-height: 1.2;
}

/* Štýl pre odseky textu */
.hero-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    font-weight: 300;
}

.hero-text strong {
    color: var(--secondary-color);
    /* Zlatá farba pre dôležité mená/lokality */
    font-weight: 600;
}

/* Nové luxusné tlačidlo */
.main-cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 18px 45px;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(13, 59, 54, 0.2);
}

.main-cta-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(138, 109, 70, 0.3);
}

/* Indikátor scrollovania (Šípka dole) */
.scroll-indicator-wrapper {
    margin-top: 20px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #999;
    z-index: 5;
}

.scroll-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* Appointment Button v Hero */
.appointment-button-2 {
    display: inline-block;
    transition: transform 0.2s;
}

.appointment-button-2 img {
    height: 50px;
}

.appointment-button-2:hover {
    transform: scale(1.05);
}

/* --- SLIDER --- */

/* Nová sekcia, ktorá drží slidery pokope */
.interior-section {
    padding: 60px 20px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Toto vycentruje slidery aj text */
}

/* Štýl pre text medzi slidermi */
.section-divider-text {
    text-align: center;
    max-width: 800px;
    margin: 60px auto;
    /* Veľké medzery hore a dole */
    padding: 0 20px;
}

.section-divider-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-divider-text p {
    font-size: 1.1rem;
    color: #555;
    font-weight: 300;
}

/* --- 1. RESET PRE VŠETKY SLIDERY --- */
.image-slider {
    width: 100%;
    height: auto;
    margin: 40px auto;
    background-color: #eee;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.image-slider .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Vyplní plochu */
}

/* --- 2. SLIDER PRE VLASY (ID: slider2) - VERTIKÁLNY --- */
/* Tento slider je pre fotky premien, balayage, predlžovanie (Portrét) */
#slider2 {
    max-width: 600px;      /* Na desktope nechceme obrovské vertikálne "plachty", 500px stačí */
    aspect-ratio: 4 / 5;   /* Štandardný "Instagram Portrait" pomer (ideálny pre vlasy) */
}

#slider2 .image-container img {
    object-position: top center; /* Dôležité: Ak by predsa orezalo, držíme sa vrchu (hlava), nie stredu (hrudník) */
}

/* --- 3. SLIDER PRE INTERIÉR (ID: slider1) - HORIZONTÁLNY --- */
/* Tento slider je pre priestory salónu (Landscape) */
#slider1 {
    max-width: 1000px;     /* Interiér môže byť široký */
    aspect-ratio: 16 / 9;  /* Filmový širokouhlý pomer */
}

#slider1 .image-container img {
    object-position: center center; /* Interiér centrujeme */
}

.image-slider .image-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
    width: 100%;
}

.image-slider .image-container img,
.image-to-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Dôležité: Oreže obrázok aby vyplnil plochu */
    flex-shrink: 0;
    /* Zabráni scvrknutiu v flexboxe */
}

.arrow-left,
.arrow-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    font-size: 20px;
    color: var(--primary-color);
    transition: background 0.3s;
}

.arrow-left:hover,
.arrow-right:hover {
    background-color: var(--white);
}

.arrow-left {
    left: 20px;
}

.arrow-right {
    right: 20px;
}

/* --- REELS GALLERY --- */
.reels-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
    gap: 20px;
    margin: 60px auto;
    max-width: 1000px;
}

.reel-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.reel-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-link {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- SLUŽBY (Grid namiesto zoznamu) --- */
#services {
    padding: 80px 20px;
    text-align: center;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.service-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.service-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--text-color);
}

/* Tlačidlá */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* --- RECENZIE --- */
.reviews-section {
    background-color: #f4f4f4;
    padding: 80px 20px;
    text-align: center;
}

.review-platforms {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.review-btn {
    background: var(--white);
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.google-btn i {
    color: #4285F4;
}

.facebook-btn i {
    color: #1877F2;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-card .stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.review-card .review-text {
    font-style: italic;
    color: #666;
    font-size: 0.95rem;
}

.review-author {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

/* --- ESHOP BANNER --- */
#eshop-banner {
    background-color: var(--bg-light);
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

/* --- MAPA --- */
.map-section {
    margin: 60px 0;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 450px;
    max-width: 1200px;
    margin: 20px auto;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.brands {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
}

/* --- Zvýraznený box pre konzultáciu (v sekcii Služby) --- */
.consultation-box {
    background-color: #fdfbf7;
    /* Jemná krémová farba */
    border: 1px solid #e0d0b0;
    /* Zlatistý rámček */
    border-radius: 8px;
    padding: 30px;
    max-width: 800px;
    margin: 40px auto;
    /* Centrovanie */
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.consultation-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.consultation-box h4 {
    color: var(--secondary-color);
    /* Zlatá */
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
}

.highlight-p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.info-p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.divider-small {
    border: 0;
    height: 1px;
    background: #e0d0b0;
    width: 50%;
    margin: 20px auto;
}

.brands img {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    /* Toto zabráni logu, aby bolo cez celú obrazovku */
    width: auto;
    display: inline-block;
}

/* 2. Oprava YouTube videí (malá veľkosť a zarovnanie) */
.video-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    /* Maximálna šírka videa */
    padding-bottom: 56.25%;
    /* Pomer strán 16:9 */
    height: 0;
    margin: 40px auto;
    /* Centrovanie a odstup */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 3. Oprava Produktov (Grid namiesto rozbitého zoznamu) */
.products-block {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    /* Automatický grid */
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Štýlovanie samotnej karty produktu */
.products-block .product {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    background: #fff;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.products-block .product:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.products-block .product .image img {
    width: 100%;
    height: 250px;
    /* Fixná výška obrázka produktu */
    object-fit: contain;
    /* Aby sa obrázok nedeformoval */
    margin-bottom: 15px;
}

.products-block .p-in {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    text-align: center;
}

.products-block .brand-name {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.products-block .product-name {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1rem;
    display: block;
    margin-bottom: 10px;
}

.products-block .add-to-cart-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s;
}

.products-block .add-to-cart-button:hover {
    background-color: var(--secondary-color);
}

/* --- FOOTER --- */
footer {
    background-color: #222;
    color: #fff;
    padding: 60px 20px 20px;
    text-align: center;
}

footer h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.box-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.share a {
    font-size: 1.5rem;
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s;
}

.share a:hover {
    color: var(--secondary-color);
}

#about {
    text-align: center;
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.general-btn {
    display: inline-block;
    margin: 10px;
}


.general-btn .btn {
    min-width: 180px;
}

.light-text {
    font-size: 0.75rem;
    color: #bbb;
    margin-top: 50px;
    line-height: 1.4;
    text-align: justify;
}

.footer-link {
    display: block;
    color: #ccc;
    margin: 5px 0;
    font-size: 1.1rem;
}

/* --- CENNÍK (HTML VERZIA) --- */

.pricing-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1400px;
    margin: 40px auto;
    /* Jemný mramorový efekt cez CSS */
    background-color: #fdfbf7;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    border: 1px solid #e0d0b0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-column {
    flex: 1;
    min-width: 350px;
    /* Na mobile sa zalamuje */
    padding: 40px 20px;
    border-right: 3px solid #d4af37;
    /* ZLATÁ ČIARA */
    border-left: 3px solid #d4af37;
    /* ZLATÁ ČIARA - štýl ako na obrázku */
    margin: 0 -1.5px;
    /* Aby sa čiary prekrývali a neboli dvojité */
    position: relative;
}

/* Odstránenie krajných čiar pre čistejší look, ak chcete */
.pricing-column:first-child {
    border-left: none;
}

.pricing-column:last-child {
    border-right: none;
}

.column-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
}

.length-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-align: center;
    color: #8a6d46;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    /* Názov + 3 ceny */
    align-items: baseline;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    padding-bottom: 5px;
}

.service-info {
    padding-right: 10px;
}

.service-info strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #222;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: rgba(212, 175, 55, 0.5);
    /* Zlaté podčiarknutie */
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.service-info small {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    color: #666;
    margin-top: 3px;
    line-height: 1.3;
    font-style: italic;
}

.price-val {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: right;
    font-size: 0.9rem;
    color: #333;
}

@media (max-width: 900px) {
    .navbar {
        justify-content: space-between;
    }

    .navbar .nav-links {
        display: none;
        /* JS to prepne na flex */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--white);
        border-bottom: 2px solid var(--primary-color);
        padding: 20px 0;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .nav-links a {
        color: var(--text-color);
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
        text-align: center;
    }

    .burger {
        display: flex;
        /* Zobraziť burger */
    }

    .navbar .logo {
        margin-right: 0;
    }

    .appointment-button {
        display: none;
        /* Na mobile skryjeme tlačidlo v hlavičke, je v Hero */
    }

    #hero h1 {
        font-size: 2rem;
    }

    .reels-gallery {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .brands img {
        max-height: 60px;
    }

    /* Produkty na mobile pod sebou */
    .products-block {
        grid-template-columns: 1fr;
    }

    .general-btn {
        display: block;
        /* Na mobile ich vrátime pod seba */
        width: 100%;
        margin: 10px 0;
    }

    .general-btn .btn {
        width: 100%;
        /* Tlačidlo na celú šírku displeja */
    }

    .light-text {
        text-align: center;
        /* Na mobile radšej na stred */
    }

    .pricing-wrapper {
        flex-direction: column;
        border: none;
        background: none;
    }

    .pricing-column {
        border: none;
        border-bottom: 3px solid #d4af37;
        /* Na mobile čiary vodorovne */
        margin-bottom: 30px;
        background-color: #fdfbf7;
        /* Pozadie pre každý stĺpec */
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .price-row {
        grid-template-columns: 1fr auto auto auto;
        gap: 10px;
    }

    .service-info strong {
        font-size: 0.9rem;
    }
}