body {
    background: url('assets/bg.jpg') no-repeat center;
    background-size: cover;
    background: #5e6d5b;
    font-family: 'Uncial Antiqua', cursive;
    color: white;
    background-color: #5e6d5b;
}
.body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 94, 59, 0.6); /* Filtre de couleur plus marqué */
    border-radius: 10px;
}
p, .container {
    font-family: 'Cinzel', serif;
}
label {
    font-family: 'Cinzel', serif;
    color:black;
}
h5 {
    font-family: 'Uncial Antiqua', cursive;
    color: black;
}
.modal {
    color:black;
    z-index: 9999;
}
.title-modal-custom {
    margin:0 auto;
    width: 100%;
}
.container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.container p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.container label {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.container input, .container select, .container textarea {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.container button {
    font-size: 1.5rem;
    padding: 10px 20px;
    background-color: #8b5e3b;
    border: none;
    border-radius: 5px;
}
.container button:hover {
    background-color: #6f482a;
}   
/* Première section améliorée */
.hero {
    background: url(assets/bambouseraie.jpeg) no-repeat center center;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    text-shadow: 2px 2px 8px black;
    position: relative;
    display: flex;
    height: 500px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Superposition sombre pour améliorer la lisibilité */
    z-index: 1;
}
.hero h1, .hero p {
    position: relative;
    z-index: 2;
}

.map-bg {
    background: url('assets/bg.jpg') no-repeat center;
    background-size: cover;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    text-shadow: 2px 2px 8px black;
    margin: 20px 0;
    flex-direction: column;
}
.btn-rsvp {
    background-color: #8b5e3b;
    color: white;
    border: none;
}
.btn-rsvp:hover {
    background-color: #6f482a;
}


.transport-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

.transport-container div {
    flex: 1;
    padding: 15px;
}

.btn-card {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    background-color: #8b5e3b;
    color: white;
}

.text-white {
    color: white;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.flex-center-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.img-blason {
    width: 50px;
    margin-right: 20px;
}

.img-card {
    height: 200px!important;
    height: auto;
    border-radius: 10px;
}

.background-card {
    background-color: #c3b38e;
}

.header-custom {
    position:fixed;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 9999;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .hero {
        padding: 120px 10px;
        height: auto;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .map-bg {
        height: auto;
        padding: 60px;
    }

    .transport-container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .btn-card {
        width: 100%;
    }

    .header-custom {
        height: 50px;
    }

    .container h2 {
        font-size: 2rem;
    }

    .container p, .container label, .container input, .container select, .container textarea, .container button {
        font-size: 1rem;
    }

    .img-card {
        height: 150px!important;
    }

    .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .flex-center-row {
        width: 100%;
        justify-content: flex-start;
    }
}