body {
    font-family: 'Arial', sans-serif;
    background-color: #f9ecec; /* Couleur pastel inspirée du logo */
}

header {
    background-color: #dcdcdc; /* Couleur argentée douce */
    color: #000; /* Texte noir */
}

.logo {
    width: 100%; /* Le logo occupe toute la largeur */
    height: 600px; /* Hauteur ajustée pour une bannière */
    object-fit: cover; /* Coupe l'image pour qu'elle s'adapte à la bannière */
}

.brand-name {
    font-size: 2.5rem;
    font-weight: bold;
}

.tagline {
    font-size: 1.2rem;
    color: #555; /* Couleur atténuée */
}

.navbar {
    background-color: #e6e6e6; /* Couleur gris clair */
}

.nav-link {
    color: #000;
    font-weight: bold;
}

.nav-link:hover {
    color: #808080; /* Effet hover argenté */
}

.carousel-inner img {
    height: 500px;
    object-fit: contain; /* Ajuste l'image pour remplir l'espace sans déformer */
}
/* Carrousel */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #d589c1; /* Couleur de fond des flèches */
    border-radius: 50%; /* Forme circulaire */
    width: 50px;
    height: 50px;
    background-size: 70%; /* Réduction de l'icône interne */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Ombre pour effet de relief */
    transition: background-color 0.2s ease-in-out;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: #ff99c2; /* Couleur de survol pour les flèches */
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%; /* Taille de la zone cliquable */
}

.carousel-indicators [data-bs-target] {
    background-color: #e993cc; /* Couleur des points d'indication */
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #d10c68; /* Couleur du point actif */
}


footer {
    background-color: #dcdcdc;
    color: #000;
}

section {
    padding: 1rem;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h2 {
    color: #808080; /* Titre argenté */
}
