header{
    width: 100vw;
}
html{
    font-size: 18px;
}

body{
    background-color: var(--creme-cassee);
    justify-items: center;
}
h1{
    margin: 15vh 0 ; 
    font-family: 'Playfair Display SC', sans-serif;
    font-weight: 300;
    font-size: 3rem;
    text-align: center;
}

h2{
    font-family: 'Playfair Display SC', sans-serif;
    font-weight: 400;
    font-size: 2rem;
}



.hero-container{
    display: flex;
    flex-wrap: wrap;
    margin: 0 20vw 10vh 20vw;
    border: 5px solid #fff;
    border-radius: 10px;
    padding: 50px;
    padding-bottom: 0px;
    align-items: flex-start;
}
#section-title{
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

.item {
    width: 50%;
    padding: 1rem;
    text-align: justify;
    font-family: 'Poppins', sans-serif;
}

.hero-container img{
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-container p{
    height: fit-content;
}

#img-remontee {
    transform: translateY(-10%);
}
footer{
    width: 100vw;
}

.price-section {
    min-width: 100vw;
    min-height: 110vh;
    padding: 100px;
    display: block;
    justify-items: center;
    background-image: url('../Img/Prestations/feuille-background.png');
    background-size: cover; /* ou 'contain' selon le cas */
}

.price-list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    text-align: center;
    font-family: 'Playfair Display SC', sans-serif;
    font-weight: 300;
    font-size: 24px;
}  

.price-section h2{
    margin-bottom: 5vh;
}

.zones{
    justify-self: left;
    margin-bottom: 5vh;
    font-family: 'Poppins', sans-serif;
}

.zones h3{
    text-align: center;
    font-weight: 400;
    width: 80%;
    border-bottom: 3px solid #000;
    margin-bottom: 2vh;
}

.price-list h3{
    font-weight: 400;
    text-transform: uppercase;
}

.bloc-price{
    position: relative;
}


.bloc-price::before{
    content: "";
    position: absolute;
    top: 2.5rem; /* Commence sous le titre */
    left: 0;
    width: 2px;
    height: calc(100% - 2.5rem); /* Ajuste en fonction du titre */
    background-color: black;
}


/**/
.container {
    display: flex;
    margin-left: 10vw;
    margin-right: 10vw;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
    height: 135vh;
}

.image-container {
    width: 30vw;
    height: 80%;
    overflow: hidden;
    position: relative;
    margin-bottom: 50px;
    margin-top: 50px;
    display: inline-block;
    box-shadow: 0 35px 50px -10px rgba(0,0,0,0.5);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

form{
    justify-items: center;
}

.form-container {
    width: 30vw;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
}

.form-title {
    color: #4a4a4a;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 400;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: left;
}

.form-label {
    display: block;
    color: #e75480;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    font-size: 0.9rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--rose-bonbon);
    margin-top: 0.5rem;
}

.btn-reserve {
    background-color: var(--caramel-clair);
    color: #000;
    border: 3px solid var(--marron-ecorce);
    border-radius: 5px ;
    padding: 1rem 5rem;
    font-size: 1rem;
    cursor: pointer;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 600;
    align-self: center;
    transition: background-color 0.3s;
}

.btn-reserve:hover{
    transform: scale(1.05);
    color: transparent;
    background-color: var(--marron-ecorce);
    position: relative
}

.btn-reserve:hover::before {
    content: "Bientôt disponible";
    position: absolute;
    left: 20%;
    top: 30%;
    color: var(--caramel-clair);
}



@media (max-width: 1024px){
    html{
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    html{
        font-size: 14px;
    }
    h1{
        margin-bottom: 0 !important;
    }
    .container {
        flex-direction: column;
        height: auto;
    }
    
    .image-container {
        height: 40vh;
    }
    .item{
        width: 100%;
        font-size: 1rem;
    }
    .hero-container{
        margin: 10px;
    }
    .price-section{
        padding: 10px;
        padding-top: 100px;
    }
    p{
        font-size: 1rem;
    }
    .price-list div h3{
        font-size: 2rem;
    }
    .price-list{
        gap:15px;
    }
    .image-container{
        width: 80vw;
        height: 80vh;
        margin:0;
    }
    .form-container{
        width: 80vw;
    }
    .footer-container{
        margin-bottom: 10px;
    }
    .footer-bottom p{
        font-size: 0.7rem;
    }
}


@media (max-width: 468px) {
    html{
        font-size: 12px;
    }

}