
/* --- Základné nastavenia a premenné --- */
:root {
    --primary-color: #E8833A;
    --light-beige: #f8f1e9;

    --text-color: #333333;
    --white-color: #F5F5F5;
    --border-color: #dcdcdc;
    --heading-font: 'Poppins', sans-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-color);
    line-height: 1.6;
    background-color: var(--white-color);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 70px;
    color: #3D405B;
   
}


p {
    margin-bottom: 15px;
}

.cta-button {
    /* Základné štýly zostávajú */
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, 
                transform 0.1s ease, /* Pridáme pre hladší pohyb */
                box-shadow 0.1s ease; /* Pridáme pre hladšie zmeny tieňa */
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    
    /* 3D efekt: Pridáme tieň na spodok pre "podstavu" */
    box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.2); /* Tieň posunutý dole */
    position: relative; /* Dôležité pre transformáciu */
    top: 0; /* Pre istotu, že začíname na nulovej pozícii */
}

.cta-button:hover {
    /* Tlmený hover tieň/farba (vymeňte za svoju premennú) */
    background-color: #d0712b; 
    /* Môžete tiež mierne zmeniť tieň, aby tlačidlo vyzeralo viac "pripravené" */
    box-shadow: 0 4px 0 0 rgba(0, 0, 0, 0.2);
    top: 2px; /* Mierne "zdvihneme" pri hoveri */
}

/* Kľúčový efekt: Stlačenie po kliknutí */
.cta-button:active {
    /* Posunieme tlačidlo o rovnakú vzdialenosť ako bola výška tieňa */
    top: 6px; 
    /* Odstránime tieň, aby vyzeralo "stlačené do podložky" */
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    /* Prípadne môžete pridať mierne tmavšiu farbu */
    background-color: #bb6527; /* Trochu tmavší odtieň než hover */
}

.content-section {
    padding: 70px 0;
}

.light-beige-bg {
    background-color: var(--light-beige);
}

.grey-bg { /* Nový štýl pre pozadie galérie */
    background-color: var(--grey-bg);
}


/* --- Navigácia --- */
.navbar {
    
    padding: 50px 0 0 30px;
    position: absolute;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand img {
    max-width: 150px;
    height: auto;
}

.navbar-nav {
    list-style: none;
    display: flex;
}




/* --- Úvodná sekcia --- */
.hero-section {
    height: 90vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('jesen2026.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    position: relative;
    padding: 20px; /* Pridané pre lepšiu responzivitu */
    background-attachment: fixed;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 30px;
}


.hero-overlay-text {
    position: absolute;
    bottom: 10%;
    right: 15%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 8px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white-color);
    text-align: center;
    line-height: 1;
}
.hero-overlay-text p:last-child {
    margin-bottom: 0; /* Odstrániť margin z posledného odstavca */
}


/* --- Sekcia Galéria --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-item {
    background-color: var(--white-color);
    border-radius: 8px;
    aspect-ratio: 16/9; /* Pomer strán obrázka */
    box-shadow:
    0 1px 3px rgba(0,0,0,0.12),
    0 6px 12px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #bbb;
    font-size: 1.5rem;
    font-weight: 500;
    /* Neskôr tu bude img alebo iný obsah */
}

/* Štýly pre responzívne YouTube video */
.video-responsive {
    position:relative;
    width: 100%;
    height: 100%;
    border: none;
    
    
}

.video-responsive iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.2);

}

#vyzva {
    margin-top: 8rem;
    color: #FB7500;
    font-size: 2.7rem;
 
}

/*---info---*/

#info p {
    font-size: 1.3rem;
}


/* --- Sekcia Kalkulačka --- */

#kalulacka {
    padding-bottom: 40px;
}

.ikona {
    margin: 0 auto 15px;
    text-align: center; /* vycentrovanie a medzera pod ikonou */
}

.ikona svg {
    width: 80px;
    height: 80px;
    fill: #3D405B; /* zmena farby ikony */
}


.calculator-box {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--white-color);
    padding: 80px 50px;
    border-radius: 8px;
    box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.2);
    background-color: #fb750058;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.calc-row p {
    font-size: 1.5rem;
    font-weight: 500;
    margin-right: 30px;
    margin-top: 20px;
}
.calc-row label {
    font-weight: 500;
    font-size: 1.5rem;
}
.zaloha {
    color: #3D405B;
    font-weight:600;
}

#calculate-btn {
    background: #3D405B;
    margin: 0 auto;
}
#calculate-btn:hover {
    background: #4c506d;
}


.input-wrapper, .result-wrapper {
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    border-radius: 5px;
    padding: 10px 15px;
    min-width: 180px;
    justify-content: flex-end;
}


.input-wrapper input {
    border: none;
    background: transparent;
    font-size: 1.5rem;
    font-weight: 700;
    width: 10rem;
    text-align: right;
    outline: none;
}
.result-wrapper {
    font-size: 1.2rem;
    font-weight: 700;
    color: red; /* Farba textu pre výsledok */
}
.input-wrapper span, .result-wrapper span {
    margin-left: 10px;
    font-weight: 700;
    font-size: 1.5rem;
}

.result-wrapper span {
    color:red;
}

.info-text {
    font-size: 1.2rem;
    color: #666;
    margin-top: -10px;
    margin-bottom: 25px;
}
.calculator-box hr {
    border: 0;
    height: 1px;
    background-color: #33333349;
    margin-bottom: 25px;
}
.checkbox-row input[type="checkbox"] { /* Upravený selektor */
    transform: scale(2);
    margin-right: 0;
    margin-left: 25px; /* Odstrániť pôvodný margin-right */
}
.checkbox-row { /* Prispôsobenie pre zarovnanie checkboxu */
    justify-content: flex-start;
    gap: 15px;
}



/* --- Sekcia Podmienky --- */
#podmienky ul,
#vzorkovna ul {
    list-style-type: none;
    padding-left: 0;
    max-width: 800px;
    margin: 0 auto;
}

#podmienky li,
#vzorkovna li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

#podmienky li::before,
#vzorkovna li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1;
}


/* --- Sekcia Rezervácia --- */
.contact-info {
    text-align: center;
    max-width: 1000px;
    margin: -20px auto 40px auto;
    font-size: 1.3rem;
}

.form-container {
    max-width: 1000px;
    margin: 70px auto;
    background-color: #fb750058;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 6px 0 0 rgba(0, 0, 0, 0.2);
    text-align: center;
}

.form-container h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.form-container p:nth-of-type(1) {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 40px; /* Medzera: 25px vertikálne, 40px horizontálne */
    text-align: left;
    margin-top: 30px;
    /* Pridané pre lepšie vertikálne zarovnanie, ak by mali riadky rôznu výšku */
    align-items: start; 
}

.form-group {
    display: flex;
    flex-direction: column;
}

/* === KĽÚČOVÁ OPRAVA pre Dátum a Čas === */
.form-group.form-group-split {
    display: flex;
    flex-direction: row; /* Usporiadanie vedľa seba */
    gap: 20px;
}

/* Oprava: Použitie flex: 1 namiesto width: 50% a odstránenie margin-top */
.form-group.form-group-split > div {
    flex: 1; /* Zabezpečí, že oba elementy (dátum a čas) si spravodlivo rozdelia priestor */
    display: flex;
    flex-direction: column;
    /* Odstránený `width: 50%` a `margin-top: 8px`, ktoré spôsobovali problémy */
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 1.2rem;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"] {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color, #ccc); /* Pridaná záložná farba */
    border-radius: 5px;
    font-size: 1.2rem;
    font-family: var(--body-font);
    background-color: #F5F5F5;
    box-sizing: border-box; /* Zabezpečí, že padding a border sú súčasťou šírky */
}

/* --- Úprava focus štýlu pre vstupné polia formulára --- */
.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="time"]:focus {
    /* Odstránenie predvoleného obrysu prehliadača */
    outline: none; 
    
    /* Nahradenie obrysu vlastným tieňom (box-shadow) 
       Farba: Použijeme --primary-color (oranžová #E8833A) pre vizuálnu konzistenciu */
    box-shadow: 0 0 0 3px rgba(232, 131, 58, 0.5); /* Jemný žiariaci efekt */
    
    /* Alebo jednoduché zafarbenie obrysu/hrany */
    border-color: var(--primary-color);
}


/* === PRIDANÉ ŠTÝLY pre Telefónne číslo (chýbali) === */
.phone-input-wrapper {
    display: flex;
}

.phone-input-wrapper .phone-prefix {
    display: flex;
    align-items: center;
    padding: 0 15px;
    background-color: #e9ecef;
    border: 1px solid var(--border-color, #ccc);
    border-right: none;
    border-radius: 5px 0 0 5px;
    color: #495057;
}

.phone-input-wrapper input[type="tel"] {
    border-radius: 0 5px 5px 0;
}


/* --- Štýly pre súhlas a tlačidlo (upravené pre lepšie zarovnanie) --- */
.consent-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 35px 0;
}

.consent-group input[type="checkbox"] {
    margin-right: 15px;
    transform: scale(1.8);
    accent-color: var(--primary-color);
    flex-shrink: 0; /* Zabraňuje zmenšeniu checkboxu */
}

.consent-group label {
    margin: 0; /* Odstráni defaultný margin z labelu */
}

.form-container .cta-button {
    width: 100%;
    max-width: 300px;
    padding: 12px 30px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 8px;
}

.consent-group a {
    color: #333333;
    text-decoration: underline;
    font-weight: 500;
}

.consent-group a:hover {
    color: #d35400;
    text-decoration: none;
}




.site-footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #555;
  background-color: #f5f5f5; /* jemné pozadie */
  border-top: 1px solid #ddd;
}


/* =============== ŠTÝLY PRE MODÁLNE OKNO =============== */

.modal-overlay {
    /* Skryté v predvolenom stave */
    display: none; 
    
    /* Prekrytie celej stránky */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Polopriehľadné čierne pozadie */
    z-index: 1000; /* Zobrazí sa nad všetkým ostatným obsahom */

    /* Centrovanie obsahu pomocou flexbox */
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
    max-width: 400px; /* Maximálna šírka okna */
    width: 90%; /* Responzívna šírka */
}

#modal-message {
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Štýly pre stavové správy (voliteľné, ale pekné) */
.modal-content.success #modal-message {
    color: #28a745;
}

.modal-content.error #modal-message {
    color: #dc3545;
}

/* Tlačidlo na zatvorenie môže dediť štýl od .cta-button */
#modal-close-btn {
    display: inline-block;
    width: auto;
    cursor: pointer;
}





/* --- Responzivita (Media Queries) --- */

/* Pre tablety a menšie desktopy */
@media (max-width: 992px) {
    h2 { font-size: 1.8rem;
     }
    .hero-content h1 { font-size: 3rem; }
    .hero-content p { font-size: 1.3rem; }
    .hero-overlay-text { right: 5%; }
    .navbar-nav { margin-right: 10px; }
    .content-section {padding: 80px 0 0;} 
    #vyzva {font-size: 1.8rem;}
}

/* Pre mobilné telefóny */
@media (max-width: 768px) {
    img {width:80px}
    .hero-content h1 {
        padding-top: 5rem;
    }
    .content-section { padding: 60px 0 0; }
    h2 { font-size: 1.4rem; }
    .hero-content p{font-size: 1.2rem;}
    #vyzva {font-size: 1.4rem;}
    .cta-button {margin-top: 5.5rem;}
    .navbar {padding: 20px 0 0 0;}
 
    .navbar .container {
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-brand { margin-bottom: 15px; }
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        text-align: center;
    }
    .navbar-nav li {
        margin: 5px 0;
    }

    .hero-section { height: auto; min-height: 80vh; padding: 100px 20px; }
    .hero-content h1 { font-size: 2.5rem; }
        .hero-overlay-text {
        position: static;
        margin-top: 30px;
        padding: 15px 20px;
        font-size: 1.5rem;
        background-color: rgba(255, 255, 255, 0.2);
        width: fit-content;
    }

    #info p {font-size: 1.1rem;}

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .ikonka svg {
        width:50px;
        height: 50px;
    }

    .calc-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .calc-row label {
        font-size: 1.1rem;
    }
    .info-text {
        font-size: 1rem;
    }
    .calc-row p {
        font-size: 1.1rem;
    }

    .input-wrapper, .result-wrapper {
        width: 100%;
        justify-content:flex-end;
        
    }
    .checkbox-row {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
        margin-right: 1rem;
    }
    .checkbox-row label {
        margin-left: 15px;
    }

    #podmienky li,
    #vzorkovna li,
    .contact-info {
        font-size: 1.1rem;
    }

    .form-container .cta-button {
   
     margin-top: 1rem; 
     margin-bottom: 2rem; 
}
    .form-containter h3 {
        font-size: 1.6rem;
    }
    .form-container p:nth-of-type(1) {
        font-size: 1.1rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
    .calculator-box, .form-container {
        padding: 25px;
    }
    .form-group.form-group-split {
        flex-direction: column;
        gap: 15px;
    }
    .form-group.form-group-split > div {
        width: 100%;
    }
    .form-group label {font-size: 1rem;
    font-weight: 600;}
}






