/* Reset některých základních stylů */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    background-color: #f4f4f4;
}

header {
    color: white;
    text-align: center;
}


/* Hero section positioning */
.hero {
    background-image: url(assets/cropped-20230715_093245-3\ 1\ \(1\).webp);
    height: 120vh;
    width: 100%;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -5%;
}

/* Main title and subtitle */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 0;
    letter-spacing: 0.7rem;
    font-family: "Metrophobic", serif;
    font-weight: normal;
    font-family: KronaOne;

}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: "Metrophobic", serif;
    color: #A8C657;
    font-family: KronaOne;

}

/* Contact circle on the left */
.contact-circle {
    position: absolute;
    left: 5%;
    top: 60%;
    transform: translateY(-50%);
    width: auto;
    height: 12vw;
    background-color: rgba(0, 0, 0, 0.2);
    border: 2px solid #A8C657;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: Intern;
    align-items: center;
    color: white;
    z-index: 2;
    padding: 15px;
    font-family: Intern;
    font-weight: 600;
}
.contact-circle a:nth-child(1) {
    text-decoration: none;
    color: white;

}
.contact-circle a:nth-child(2) {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-family: Intern;
    font-weight: 600;
}

.contact-circle p {
    margin: 5px 0;
    font-family: Intern;
    font-weight: 600;

}

/* Reservation button on the right */
.rezervovat-btn {
    position: absolute;
    right: 5%;
    top: 65%;
    transform: translateY(-50%);
    padding: 1.5vw;
    background-color: rgba(0, 0, 0, 0.2);
    color: white;
    border: 2px solid #A8C657;
    border-radius: 60px;
    cursor: pointer;
    font-size: 2rem;
    text-transform: uppercase;
    text-decoration: none; 
    z-index: 2;
    transition: all 0.3s ease;
    font-family: Intern;
    font-weight: 600;
}

.rezervovat-btn:hover {
    background-color: #A8C657;
    color: #333;
}



/* Dark overlay for better text readability */
.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
/* Nový styl pro sekci "Features" */
/* Reset layoutu */
/* Dvousloupcový layout */
.features {
    width: 100%;
    min-height: 100vh;
    background-image: url(assets/Group\ 11\ \(2\).webp);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    margin: 0;
    padding: 0;
}

/* Pozadí sekce */
.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #111;
    z-index: -1;
}

/* Levý sloupec - text */
.features-left {
    width: 50%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    margin-left: 8%;
    justify-content: center;
}

.welcome-title {
    font-family: KottaOna;
    font-size: 3rem;
    color: white;
    font-style: italic;
    margin-bottom: 40px;
    text-align: center;
}

.main-text {
    font-family: Intern, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-align: justify;
}

.main-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-family: KottaOna;

}

.action-link {

    cursor: pointer;
    text-decoration: none;
}

/* Pravý sloupec - ikony */
.features-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    position: relative;
    padding: 50px 0;
    margin-right: 8%;
}

/* Společný styl pro všechny ikony */
.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px 0;
}

.feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon span {
    font-size: 2.5rem;
    color: #A8C657;
}

.feature-title {
    font-family: KottaOne;
    letter-spacing: 0.5vh;
    padding-top: 20%;
    font-size: 1.5rem;
    color: white;
    text-transform: uppercase;
}
.feature-title:nth-child(2), .feature-title:nth-last-child(3) {
    padding-top: 10%;
}

/* Dekorativní křivky */
.curve {
    position: absolute;
    border: 1px solid rgba(168, 198, 87, 0.3);
    border-radius: 50%;
    z-index: 0;
}

.curve-1 {
    width: 400px;
    height: 800px;
    top: -10%;
    left: 55%;
}

.curve-2 {
    width: 600px;
    height: 600px;
    top: 20%;
    right: -20%;
}

/* Responzivní design */
@media (max-width: 992px) {
    .features {
        flex-direction: column;
    }
    
    .features-left, .features-right {
        width: 100%;
        padding: 50px 30px;
        margin: 0%;
    }
    
    .welcome-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .curve {
        display: none;
    }
}


/* Responzivita pro celý web */

/* Obecná responzivita */
@media (max-width: 1400px) {
    /* Hero section */
    .hero-content h1 {
        font-size: 3.8rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
    }
    
    .contact-circle {
        height: 15vw;
    }
    
    .rezervovat-btn {
        font-size: 1.8rem;
        padding: 1.3vw;
    }
    
    /* Features section */
    .welcome-title {
        font-size: 2.7rem;
    }
    
    .main-text p {
        font-size: 1rem;
    }
}

/* Tablety a menší obrazovky */
@media (max-width: 992px) {
    /* Hero section */
    .hero {
        height: 100vh;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .contact-circle {
        left: 3%;
        height: 18vw;
        top: 70%;
    }
    
    .rezervovat-btn {
        right: 3%;
        font-size: 1.5rem;
        padding: 1.5vw;
    }
    
    /* Features section */
    .features {
        flex-direction: column;
        background-size: cover;
    }
    
    .features-left, .features-right {
        width: 90%;
        margin: 0 auto;
        padding: 40px 20px;
    }
    
    .welcome-title {
        font-size: 2.5rem;
        margin-top: 30px;
    }
    
    .main-text p {
        font-size: 1rem;
    }
    
    .feature-item {
        margin: 20px 0;
    }
    
    /* Footer */
    footer {
        padding: 30px 20px;
    }
}

/* Mobilní telefony - velké */
@media (max-width: 768px) {
    /* Hero section */
    .hero {
        margin-top: 0;
        justify-content: flex-start;
        flex-direction: column;
        padding-top: 100px;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        letter-spacing: 0.4rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .contact-circle {
        position: relative;
        left: 0;
        top: 0;
        transform: none;
        margin: 20px auto;
        height: 160px;
        width: 160px;
    }
    
    .rezervovat-btn {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        margin: 20px auto;
        font-size: 1.3rem;
        padding: 10px 20px;
    }
    
    /* Features section */
    .features {
        min-height: auto;
    }
    
    .welcome-title {
        font-size: 2rem;
    }
    
    .main-text p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    /* Footer */
    footer {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-kontakt, .footer-odkazy {
        width: 100%;
        margin-bottom: 30px;
        align-items: center;
    }
    
    .footer-odkazy-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .footer-logo {
        margin-top: 20px;
    }
}

/* Mobilní telefony - malé */
@media (max-width: 480px) {
    /* Hero section */
    .hero-content h1 {
        font-size: 2rem;
        letter-spacing: 0.3rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .contact-circle {
        height: 140px;
        width: 140px;
        font-size: 0.9rem;
    }
    
    .rezervovat-btn {
        font-size: 1.1rem;
    }
    
    /* Features section */
    .features-left, .features-right {
        width: 100%;
        padding: 30px 15px;
    }

    .feature-item {
        margin-bottom: 20%;
    }
    
    
    .welcome-title {
        font-size: 1.8rem;
    }
    
    .main-text p {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
    }
    
    .features-right .feature-item:nth-child(1) .feature-title {

        font-size: 1.1rem;
        margin-top: 28%;
    }
    
    /* Footer */
    .footer-kontakt h3, .footer-odkazy h3 {
        font-size: 1.1rem;
    }
    
    .footer-kontakt p, .footer-odkazy a {
        font-size: 0.9rem;
    }
    
    .footer-logo img {
        max-width: 200px;
    }
}

/* Oprava pro ultra malé displeje */
@media (max-width: 350px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }
    
    .contact-circle {
        height: 120px;
        width: 120px;
        font-size: 0.8rem;
    }
    
    .welcome-title {
        font-size: 1.5rem;
    }
}

