body {
    font-family: 'MV Boli', cursive;
    font-weight: 700;
    background-color: #fdebd0;
    color: #333;
    min-height: 100vh;
    flex-direction: column;
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
    text-align: center; /* Centre le texte */
    min-height: 100vh;
    margin: 0;
}

header {
    position: relative;
    background-color: #021130;
    padding: 10px;
}

.carousel1 img {
    width: 100%;
    max-width: 400px; /* Taille ajustée pour téléphone */
    display: block;
    margin: 0 auto; /* Centre le logo */
}

h1 {
    color: white;
    text-align: center;
    font-family: 'MV Boli', cursive;
    font-weight: 700;
}

h3 {
    text-align: left;
    color: white;
    font-family: 'MV Boli', cursive;
    font-weight: 700;
}

p {
    text-align: center;
    font-size: 18px;
    line-height: 2;
    margin: 0 auto;
    max-width: 85%; /* Ajuste la largeur du texte */
    font-family: 'MV Boli', cursive;
    font-weight: 700;

}

.menu-icon {
    display: block;
    color: white;
    text-align: left;
    font-size: 32px; /* Taille augmentée */
    cursor: pointer; /* Optionnel : pour indiquer que c'est cliquable */
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.menu ul li a.active {
    background-color: #880404; /* Même couleur que le hover */
    font-weight: bold;
    position: relative;
}

.menu ul li a.active::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 50%;
    background-color: #ffcc00; /* Couleur du marqueur */
    border-radius: 2px;
}

.menu ul {
    list-style: none;
    margin-top: 20px;
}

.menu ul li {
    margin: 20px 0;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.menu ul li a:hover {
    background-color: #880404;
}

.default-menu {
    display: none;
    background: blue;
}

.section h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 40px;
    color: #34495e;
    position: relative;
    font-family: 'MV Boli', cursive;
    font-weight: 700;

}

.section h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #880404;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    font-family: 'MV Boli', cursive;
    font-weight: 700;

}

.section p {
    text-align: center;
    font-size: 18px;
    line-height: 2;
    margin: 0 auto;
    max-width: 85%; /* Ajuste la largeur du texte */
    font-family: 'MV Boli', cursive;
    font-weight: 700;

}

/* Pied de page */
footer {
    width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #021130;
    color: white;
    position: revert;
}

footer .social-icons a {
    color: #fff;
    margin: 0 10px;
    transition: color 0.3s;
}

footer .social-icons a:hover {
    color: #ff6b6b;
}

.info-container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 40px;
    padding: 0 20px; /* <-- ajoute de l'espace gauche/droite */
}

.card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #021130;
    margin-bottom: 15px;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-pdf {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #880404;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-pdf:hover {
    background-color: #aa1a1a;
}

.tarif-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.tarif-table th, .tarif-table td {
    border: 1px solid #ccc;
    padding: 12px;
    text-align: center;
}

.tarif-table th {
    background-color: #f8f8f8;
    color: #021130;
}

.tarif-table td {
    background-color: #fff;
    font-weight: bold;
}
