/* =========================================
   1. PREMENNÉ A ZÁKLADNÉ NASTAVENIA
   ========================================= */
:root {
    /* Hlavné farby */
    --primary-green: #0f3d2e;     /* Tmavá lesná zelená */
    --secondary-green: #1a4d3a;   /* Svetlejšia zelená pre hover */
    --gold: #C5A059;              /* Elegantná zlatá */
    --gold-light: #E8D4A0;        /* Svetlá zlatá pre odlesky */
    --accent-red: #B9121B;        /* Vianočná červená */
    --red-hover: #9e0e16;
    --grey: #9CA3AF;
    
    /* Pozadia a texty */
    --bg-light: #F9F9F9;
    --bg-warm: #FDFBF7;           
    --text-dark: #2C2C2C;
    --text-light: #F5F5F5;
    
    /* Ostatné */
    --border-color: #E0E0E0;
    
    /* Fonty */
    --heading-font: 'Playfair Display', serif;
    --body-font: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: var(--text-dark);
    line-height: 1.8;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    padding-bottom: 0; 
}

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
}

/* =========================================
   2. TYPOGRAFIA A TLAČIDLÁ
   ========================================= */
h1, h2, h3 {
    font-family: var(--heading-font);
    color: var(--primary-green);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
    letter-spacing: 0.5px;
}

h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: var(--gold);
    margin: 20px auto 0;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Tlačidlá */
.cta-button {
    display: inline-block;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--body-font);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cta-button.primary-cta {
    background-color: var(--accent-red);
    color: #fff;
}

.cta-button.primary-cta:hover {
    background-color: var(--red-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(185, 18, 27, 0.25);
}

.cta-button.secondary-cta {
    background-color: var(--primary-green);
    color: #fff;
}

.cta-button.secondary-cta:hover {
    background-color: var(--secondary-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(53, 90, 34, 0.25)
}

/* Full width trieda upravená pre desktop */
.full-width {
    width: auto; 
    min-width: 250px; 
    display: block; 
    margin: 0 auto; 
    text-align: center;
}

/* VIDEO TLAČIDLO */
.video-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-left: 30px;
    padding-right: 35px;
}
.video-btn svg {
    width: 22px; height: 22px; fill: #fff; transition: transform 0.3s ease;
}
.video-btn:hover svg { transform: scale(1.2); }
.video-btn span { position: relative; top: 1px; }


/* =========================================
   3. HORNÁ NAVIGÁCIA (LOGO)
   ========================================= */
.navbar { 
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    background: transparent;
    padding: 25px 0;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.navbar-brand img { 
    max-width: 160px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
    transition: transform 0.3s ease;
}

/* =========================================
   4. HERO SEKCIA
   ========================================= */
.hero-section {
    height: 100vh;
    min-height: 600px;
    background-image: url('hero.webp');
    background-color: var(--primary-green);
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 61, 46, 0.3), rgba(15, 61, 46, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 30px;
    animation: fadeInUp 1s ease-out;
}

.season-tag {
    font-size: 0.9rem;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    display: block;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 30px;
    background: linear-gradient(110deg, #9A7B3C 0%, #C5A059 35%, #F5E6C8 50%, #C5A059 65%, #9A7B3C 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gold-shine 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.3));
}

@keyframes gold-shine { 
    0%, 100% { background-position: 0% 0%; } 
    50% { background-position: 100% 0%; } 
}

.date-badge {
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 40px;
    display: inline-block;
    backdrop-filter: blur(8px);
}

.date-badge p {
    margin: 0;
    font-weight: 400;
    letter-spacing: 1.5px;
    font-size: 1rem;
    color: #fff;
}


.hero-text {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* =========================================
   5. SEKCIE & VIDEO
   ========================================= */
.content-section { padding: 100px 0; }
.white-bg { background-color: #fff; }
.bg-pattern { 
    background-color: var(--bg-warm);
    background-image: radial-gradient(rgba(15, 61, 46, 0.05) 1px, transparent 1px);
    background-size: 25px 25px;
}
.snow-bg {
    background: linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%);
}

.info-box {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}
.info-box p {
    font-size: 1.3rem;
    color: #444;
    font-weight: 300;
}
.info-box strong { color: var(--primary-green); font-weight: 600; }

/* Video */
.video-wrapper-single {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(15, 61, 46, 0.15);
    margin-bottom: 40px;
    background: #000;
}

.video-responsive iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.video-caption {
    font-size: 1.1rem;
    color: #555;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* =========================================
   6. VÝHODY (KARTY)
   ========================================= */
.content-wrapper-transparent {
    background: transparent;
    padding: 0;
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    margin-top: 60px;
}

.benefit-card {
    background: #fff;
    flex: 1 1 300px;
    max-width: 360px;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(15, 61, 46, 0.06);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(15, 61, 46, 0.12);
}

.card-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
}

.card-icon svg { width: 34px; height: 34px; stroke-width: 1.8; }

.icon-gold { background-color: #FFF9E6; color: var(--gold); }
.icon-red { background-color: #FFF0F0; color: var(--accent-red); }
.icon-green { background-color: #F0F7F4; color: var(--secondary-green); }

.benefit-card h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    font-weight: 700;
}

.benefit-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   7. CTA STRIP
   ========================================= */
.cta-strip {
    background-color: var(--secondary-green);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.cta-strip h2 {
    color: var(--gold-light);
    margin: 0;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.cta-strip h2::after { display: none; }

/* =========================================
   8. KALKULAČKA
   ========================================= */
.calculator-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 60px;
    border-radius: 24px;
    position: relative;
    background: #fff;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 25px 70px rgba(0,0,0,0.06);
}

.ikona { text-align: center; }
.ikona svg { width: 70px; height: 70px; fill: var(--gold); margin-bottom: 15px; }

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.calc-row label {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--primary-green);
    flex: 1;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: #FAFAFA;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    padding: 12px 20px;
    width: 200px;
    transition: all 0.3s;
}

.input-wrapper:focus-within {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.input-wrapper input {
    border: none;
    background: transparent;
    font-size: 1.4rem;
    font-weight: 700;
    width: 100%;
    text-align: right;
    outline: none;
    color: var(--text-dark);
}

.input-wrapper span { margin-left: 10px; color: #999; font-weight: 600; }

.info-text { font-size: 0.95rem; color: #777; margin-top: -10px; margin-bottom: 30px; font-style: italic; }

.checkbox-row { justify-content: flex-start; gap: 15px; }
.checkbox-row input { accent-color: var(--primary-green); width: 22px; height: 22px; cursor: pointer; }

.calculator-box hr {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 40px 0;
    opacity: 0.5;
}

.result-row p { font-size: 1.4rem; font-weight: 600; color: var(--primary-green); margin: 0; }
.result-wrapper { font-size: 2.4rem; font-weight: 700; color: var(--accent-red); text-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.button-row { justify-content: center; margin-top: 40px; }

/* =========================================
   9. PODMIENKY
   ========================================= */
.conditions-box {
    background-color: #FFF9E6;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.conditions-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: var(--gold);
}

#podmienky ul { list-style: none; padding: 0; }
#podmienky li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.15rem;
    color: #444;
}
#podmienky li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--grey);
    font-size: 1.8rem;
    line-height: 1;
    top: -4px;
}

/* =========================================
   10. KONTAKTNÝ FORMULÁR
   ========================================= */
.contact-header { text-align: center; margin-bottom: 50px; }
.contact-info { font-size: 1.2rem; color: #555; }
.contact-info a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.scarcity-alert {
    display: inline-block;
    background-color: #E57373;
    color: #fff;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 10px 0 35px 0;
    box-shadow: 0 4px 15px rgba(229, 115, 115, 0.4);
    animation: gentlePulse 2.5s infinite ease-in-out;
}

@keyframes gentlePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 115, 115, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(229, 115, 115, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(229, 115, 115, 0); }
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-top: 6px solid var(--accent-red);
}

.form-container h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.form-container > p { text-align: center; margin-bottom: 50px; color: #777; font-size: 1.1rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.form-group { display: flex; flex-direction: column; }

.form-group label {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1.05rem;
    font-family: var(--body-font);
    background-color: #FAFAFA;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--gold);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.15);
}

/* Validácia inputu */
.form-group input:valid:not(:placeholder-shown) {
    border-color: #4CAF50;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%234CAF50" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.form-group-split { flex-direction: row; gap: 25px; grid-column: span 2; }
.form-group-split > div { flex: 1; display: flex; flex-direction: column; }
.iti { width: 100%; }

.consent-group {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 20px;
}
.consent-group input { width: auto; margin-right: 15px; transform: scale(1.4); accent-color: var(--primary-green); cursor: pointer; margin-top: 5px; }
.consent-group label { margin: 0; text-transform: none; font-weight: 400; color: #666; font-size: 1rem; cursor: pointer; line-height: 1.5;}

/* =========================================
   11. PRELOADER
   ========================================= */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--primary-green);
    z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
body.loaded #preloader { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; width: 80%; max-width: 300px; }
.loader-text {
    font-family: var(--heading-font);
    color: var(--gold-light);
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
    animation: pulseText 1.5s infinite;
}
.loader-bar-container {
    width: 100%; height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px; overflow: hidden;
}
.loader-bar {
    height: 100%; width: 0%;
    background-color: var(--gold-light);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
    animation: loadBar 1s ease-in-out forwards;
}
.loader-icon {
    width: 60px; height: 60px; color: var(--gold-light); margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(197, 160, 89, 0.4));
    animation: pulseTree 2s infinite ease-in-out;
}

@keyframes loadBar { 0% { width: 0%; } 50% { width: 40%; } 100% { width: 100%; } }
@keyframes pulseText { 0% { opacity: 0.7; } 50% { opacity: 1; } 100% { opacity: 0.7; } }
@keyframes pulseTree { 0% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.1); opacity: 1; } 100% { transform: scale(1); opacity: 0.8; } }

/* =========================================
   12. FOOTER (NOVA VERZIA S ADRESOU)
   ========================================= */
.site-footer {
    background-color: var(--primary-green);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 40px; /* Viac miesta hore */
    text-align: left; /* Zarovnanie vľavo pre grid */
    font-size: 0.95rem;
    margin-top: 80px;
    border-top: 4px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: var(--heading-font);
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-col p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px; /* Medzera medzi ikonou a textom */
}

.footer-col a {
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

/* Ikony v texte */
.footer-col svg {
    flex-shrink: 0;
    color: var(--gold);
}

/* Sociálne siete */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.social-icons a:hover svg {
    
    color: #ffffff;  /* Pre istotu meníme aj farbu textu */
    filter: drop-shadow(0 0 0 transparent); /* Odstráni prípadné tiene */
}



.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer strong { color: #fff; font-weight: 600; }

.footer-link {
    color: rgba(255, 255, 255, 0.5); 
    font-size: 0.85rem;
    text-decoration: none;
    border-bottom: 1px solid transparent; 
    transition: all 0.3s ease;
    margin-top: 10px; 
    display: inline-block;
}

.footer-link:hover {
    color: var(--gold); 
    border-bottom-color: var(--gold);
}

/* =========================================
   13. MODÁLNE OKNO (Fixed)
   ========================================= */
#modal-overlay {
    display: none;
    position: fixed !important;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background-color: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(4px);
    z-index: 10000 !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#modal-overlay.is-visible {
    display: flex !important;
    opacity: 1;
}

.modal-content {
    background-color: #ffffff !important;
    color: var(--text-dark);
    padding: 40px !important;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

#modal-overlay.is-visible .modal-content {
    transform: translateY(0);
}

#modal-message {
    font-family: var(--heading-font);
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 600;
}

#modal-close-btn {
    min-width: 150px;
    background-color: var(--primary-green);
    color: white;
}

.oznam {
    margin-top: 35px;
    opacity: 0.86;
}

/* =========================================
   14. UNIVERZÁLNA NAVIGÁCIA (DESKTOP - ĽAVÝ BOK)
   ========================================= */
.mobile-bottom-nav {
    display: flex;
    position: fixed;
    
    /* DESKTOP POZÍCIA (Zvislo vľavo) */
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    
    width: 100px; /* Šírka pre zobrazenie textu */
    height: auto; 
    min-height: 350px;
    flex-direction: column; /* Položky pod sebou */
    
    /* EFEKT SKLA */
    background-color: rgba(15, 61, 46, 0.85); 
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    
    z-index: 1000;
    
    /* Zaoblenie a rámik */
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    
    justify-content: center; 
    align-items: center;
    padding: 20px 10px;
    gap: 15px; 
}

.nav-item {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
    text-decoration: none; 
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--body-font);
    
    /* Text nastavenia */
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-align: center;
    
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); 
    
    width: 100%; 
    padding: 10px 5px;
    border-radius: 18px;
    cursor: pointer;
}

/* Text je viditeľný */
.nav-item span {
    display: block;
    margin-top: 5px;
    line-height: 1.2;
}

.nav-item svg { 
    width: 24px; 
    height: 24px; 
    margin-bottom: 2px; 
    stroke-width: 2px; 
    transition: all 0.3s ease;
    stroke: currentColor;
}

/* --- AKTÍVNY STAV (DESKTOP) --- */
.nav-item.active { 
    /* Zlatý gradient */
    background: linear-gradient(135deg, #C5A059 0%, #E8D4A0 50%, #C5A059 100%);
    color: #0f3d2e; 
    transform: scale(1.05);
    
    box-shadow: 
        0 8px 20px rgba(197, 160, 89, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.1);
        
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.nav-item.active svg { 
    stroke: #0f3d2e;
}

.nav-item.active span { 
    font-weight: 700;
}

/* Hover efekt */
.nav-item:hover:not(.active) {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(255, 255, 255, 0.05);
}

/* =========================================
   15. MEDIA QUERIES (MOBIL/TABLET - PREPIS NA VODOROVNÚ LIŠTU)
   ========================================= */
@media (max-width: 1024px) {
    /* Reset paddingu pre mobil - dole treba miesto */
    body { padding-bottom: 100px; } 

    h1 { font-size: 2.8rem; letter-spacing: 1px; }
    h2 { font-size: 2rem; margin-bottom: 30px; }
    h3 { font-size: 1.4rem; }
    p, li { font-size: 1rem; line-height: 1.6; }
    
    .hero-text { font-size: 1rem; margin-bottom: 30px; }
    .video-caption { font-size: 0.95rem; }
    .info-box p { font-size: 1.1rem; }
    
    /* Navigácia */
    .navbar-brand { display: block; text-align: left; }
    .navbar-brand img { max-width: 140px; }

    /* Hero */
    .hero-section {
        height: auto !important; min-height: 100vh;
        padding-top: 150px; padding-bottom: 100px;
        background-attachment: scroll !important;
        align-items: flex-start;
    }
    .hero-content { width: 100%; padding: 0 15px; animation: none !important; }
    .hero-content .cta-button.video-btn {
        width: auto !important; min-width: 220px; display: inline-flex !important; margin-top: 10px;
    }

    /* ZMENA: Full width na mobile */
    .full-width {
        width: 100% !important;
    }

    /* --- NAVIGÁCIA: RESET NA SPODNÚ LIŠTU --- */
    .mobile-bottom-nav {
        /* Reset pozície na spodok */
        top: auto; 
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        
        /* Reset rozmerov */
        width: 95%;
        max-width: 500px;
        height: 75px;
        min-height: auto;
        flex-direction: row; /* Vedľa seba */
        
        /* Reset padding a gap */
        padding: 0 10px;
        gap: 0;
        border-radius: 25px;
    }

    .nav-item {
        width: auto;
        height: 55px;
        flex: 1;
        margin: 0 4px;
        border-radius: 18px;
        padding: 0;
    }
    
    .nav-item span { 
        display: block; 
        margin-top: 0;
        font-size: 0.65rem;
    }
    
    .nav-item.active {
        transform: translateY(0); /* Žiadny posun na mobile */
    }

    /* Footer na mobile */
    .site-footer { text-align: center; } /* Centrovanie na mobile */
    .footer-grid { text-align: center; }
    .footer-col p { justify-content: center; } /* Ikony a text do stredu */
    .social-icons { justify-content: center; }

    /* Kalkulačka */
    .calculator-box { padding: 30px 20px !important; width: 100% !important; }
    .calculator-box h2 { font-size: 1.8rem !important; line-height: 1.2 !important; }
    .calc-row { flex-direction: column !important; align-items: flex-start !important; gap: 10px !important; margin-bottom: 25px !important; }
    .calc-row label { width: 100% !important; text-align: left !important; }
    .input-wrapper { width: 100% !important; }
    .checkbox-row { flex-direction: row !important; align-items: flex-start !important; }
    .result-row { align-items: center !important; text-align: center !important; }
    .cta-button { width: 100%; text-align: center; }

    /* Podmienky & Form */
    .conditions-box { padding: 25px 20px !important; background-color: #fff; border-left: 4px solid var(--gold); border-top: none; }
    .conditions-box::before { display: none; }
    .form-container { padding: 30px 15px !important; }
    .form-grid { display: flex !important; flex-direction: column !important; gap: 20px !important; }
    .form-group-split { flex-direction: column !important; gap: 20px !important; }
    .consent-group { text-align: left; justify-content: flex-start; }
}

/* 16. SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


