/* Styl pro rezervační stránku - přesnější podle obrázku */
.rezervace-sekce {
    width: 100%;
    min-height: 100vh;
    background-image: url('assets/20210401_170730\ 1.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 20px 50px 20px;
    position: relative;
}

.rezervace-sekce::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.rezervace-obsah {
    margin-top: 8%;

    width: 100%;
    max-width: 800px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rezervace-nadpis {
    font-family: KronaOne;
    font-size: 3rem;
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;
    text-align: center;
}

.rezervace-podnadpis {
    font-family: KronaOne;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 40px;
    text-align: center;
    font-weight: normal;
}

/* Formulářové řádky - přesněji podle obrázku */
.formular-radky {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.formular-radek {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

/* Styly pro jednotlivé typy vstupů - podle obrázku */
.formular-pole {
    flex: 1;
}

.formular-pole input,
.formular-pole textarea {
    width: 100%;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.formular-zprava {
    width: 100%;
    margin-bottom: 20px;
}

.formular-zprava textarea {
    width: 100%;
    height: 120px;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    resize: none;
}

/* Počet osob - podle obrázku */
.pocet-osob-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pocet-osob-text {
    color: white;
    font-family: KottaOna;
    font-size: 1.2rem;
    white-space: nowrap;
}

.pocet-input {
    display: flex;
    align-items: center;
}

.pocet-input button {
    width: 25px;
    height: 25px;
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
::placeholder{
    font-family: KottaOna;
}
.pocet-input input {
    width: 30px;
    text-align: center;
    margin: 0 5px;
    padding: 3px;
    border: none;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Tlačítko rezervovat - podle obrázku */
.rezervovat-tlacitko {
    padding: 10px 25px;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid white;
    border-radius: 25px;
    color: white;
    font-family: KottaOna;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 5px;
    align-self: center;
}

.rezervovat-tlacitko:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Informační text - podle obrázku */
.rezervace-info {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.406);
    border: 2px solid #E3CEA4;
    padding: 20px;
    margin-top: 30px;
    color:  white;
    font-size: 5rem;
    line-height: 1.6;
}

.rezervace-info p {
    margin-bottom: 15px;
    font-family: KottaOna    !important;

}

.rezervace-info p:last-child {
    margin-bottom: 0;
}

/* Responzivní design */
@media (max-width: 768px) {
    .formular-radek {
        flex-direction: column;
        gap: 10px;
    }
    
    .rezervace-nadpis {
        font-size: 2.5rem;
    }
    
    .rezervace-podnadpis {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .rezervace-nadpis {
        font-size: 2rem;
    }
    
    .rezervace-info {
        font-size: 0.8rem;
    }
}

#echalupy-kalendar{
    margin-top: 5%;
    color: white;
}