.familles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.famille-card {
    width: 280px;
    background: white;
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.famille-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.famille-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 10px;
}

.famille-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.famille-desc {
    font-size: 14px;
    color: #666;
}

/* Style de la section des actualités */
.container h2 {
    font-size: 1.8rem;
    color: #000;
    font-weight: bold;
    text-align: center;
}

.card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card-img-top {
    height: 200px;
    object-fit: contain;
    border-bottom: 2px solid #fff;
}

.card-body {
    background-color: #fff;
    padding: 15px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #C59D5F;
}

.card-text {
    font-size: 0.95rem;
    color: #000;
    line-height: 1.5;
}

.card-body .btn {
    background-color: #C59D5F;
    border: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.card-body .btn:hover {
    background-color: #0056b3;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 30px;
}

.mt-4 {
    margin-top: 40px;
}

/* Style de la pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.page-item.active .page-link {
    background-color: #C59D5F;
    border-color: #000;
    color: rgb(0, 0, 0);
}

.page-item .page-link {
    border: 1px solid #ddd;
    color: #007bff;
    padding: 10px 15px;
    margin: 0 5px;
    text-decoration: none;
}

.page-item .page-link:hover {
    background-color: #000000;
    color: #0056b3;
}

/* Container du carrousel */
.avis-carousel-container {
    display: flex;
    overflow-x: scroll;
    padding: 20px 0;
    scroll-behavior: smooth;
}

/* Conteneur pour les avis avec navigation */
.avis-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Affichage d'un seul avis à la fois */
.avis-display {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    max-width: 800px; /* Largeur maximale de la zone d'affichage */
}

.avis-card {
    display: none; /* Cacher tous les avis sauf celui visible */
    width: 100%;
    margin: 0 10px;
    text-align: center;
}

/* Boutons de navigation (précédent / suivant) */
.avis-nav-button {
    background-color: #C59D5F;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
}

.avis-nav-button:hover {
    background-color: #3B3A40;
}

/* Formulaire */
form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-group label {
    font-weight: bold;
}

.form-control {
    border-radius: 5px;
}

/* Pour ajouter des marges sur les petits écrans */
@media (max-width: 768px) {
    .avis-card {
        width: 250px;
    }
}

/* Appliquer un fond spatial avec effet étoilé */
body {
    background-color: #f8f9fa;
    background-size: cover;
    color: #000;
    font-family: 'Poppins', sans-serif;
}


header.bg-dark .text-center {
    height: 100%; /* L'élément prend toute la hauteur de la section */
    display: flex; /* Utilisation de Flexbox */
    justify-content: center; /* Centrage horizontal */
    align-items: center; /* Centrage vertical */
    text-align: center; /* Centrer le texte à l'intérieur de l'élément */
}
header.bg-dark h1 {
    font-size: 2.5rem; /* Taille du titre */
    font-weight: 700;
    margin-bottom: 10px; /* Espacement sous le titre */
}

header.bg-dark p {
    font-size: 1.25rem; /* Taille de la description */
    font-weight: 400;
}



/* Style des titres */
h1, h2, h3, h4, h5, h6 {
    color: #000;

}

/* Style des cartes (produits, actualités, etc.) */
.card {
    background: rgba(255, 255, 255, 0.8); /* Fond noir semi-transparent */
    color: #C59D5F;
    border: 1px solid #C59D5F;
    box-shadow: 0px 0px 10px #C59D5F;
}

.sticky-nav {
    transition: all 0.3s ease-in-out;
}

.sticky {
    position: fixed;
    top: 0.5px; /* Ajuste cette valeur pour correspondre à la hauteur de ta top-bar */
    width: 100%;
    z-index: 1000;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.top-bar {
    position: relative;
    z-index: 1100; /* Plus haut que la navbar */
}



/* Navbar */
.navbar {
    background: #fff !important;
}

.navbar-brand, .nav-link {
    color: #C59D5F !important;
}

/* Boutons */
.btn-primary {
    background: #C59D5F;
    border-color: #C59D5F;
    color: white;
}

.btn-primary:hover {
    background: #C59D5F;
    border-color: #C59D5F;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.9);
    color: #C59D5F;
}

footer a {
    color: #C59D5F;
}

footer a:hover {
    color: #C59D5F;
}

/* Barre du haut */
.top-bar {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 0;
    font-size: 12px;
}


/* En dessous de 768px = mode mobile/tablette */
@media screen and (max-width: 768px) {
    .top-bar {
        font-size: 10px;
    }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Réseaux sociaux */
.social-links a {
    color: white;
    margin-right: 10px;
    font-size: 16px;
    text-decoration: none;
}

.social-links a:hover {
    color: #C59D5F;
}

/* Infos de contact */
.contact-info span {
    margin-right: 15px;
}

.contact-info i {
    margin-right: 5px;
}

.golden-icon {
    color: #C59D5F;
    font-size: 16px;
}

/* Sélecteur de langue */
.language-switcher a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin: 0 5px;
}

.language-switcher .active {
    color: #C59D5F;
}

.language-switcher a:hover {
    text-decoration: underline;
}

.header-luxe {
    text-align: center;
    font-family: 'Cinzel', serif;
    color: #C9B037; /* Doré */
    padding: 20px 0;
    position: relative;
    background-color: #212529;
}

.header-luxe h1 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 10px 0;
    text-align: center;
    
}

.header-luxe h2 {
    font-size: 20px;
    font-weight: 400;
    color: #fff; /* Un doré plus clair */
}

.line {
    width: 60%;
    height: 2px;
    background-color: #C9B037; /* Ligne dorée */
    margin: 10px auto;
}

/* Appliquer la police de luxe */
.navbar-nav .nav-link {
    font-family: 'Garamond', serif; /* Police élégante */
    font-size: 14px; /* Ajuste la taille du texte */
    font-weight: 600; /* Texte plus marqué */
    text-transform: none !important; /* Empêche toute mise en majuscule */
    letter-spacing: 1px; /* Espacement entre les lettres pour un effet raffiné */
}

/* Centrer le menu */
.navbar-nav {
    margin: auto; /* Centre le menu */
    display: flex;
    justify-content: center;
    width: 100%; /* Prend toute la largeur */
}

/* Style du bouton Panier */
.btn-outline-dark {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px; /* Bords arrondis pour un style élégant */
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: var(--bs-link-color);
    --bs-pagination-bg: #fff;
    --bs-pagination-border-width: 1px;
    --bs-pagination-border-color: #dee2e6;
    --bs-pagination-border-radius: 0.375rem;
    --bs-pagination-hover-color: var(--bs-link-hover-color);
    --bs-pagination-hover-bg: #e9ecef;
    --bs-pagination-hover-border-color: #dee2e6;
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: #e9ecef;
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: #C59D5F;
    --bs-pagination-active-border-color: #C59D5F;
    --bs-pagination-disabled-color: #6c757d;
    --bs-pagination-disabled-bg: #fff;
    --bs-pagination-disabled-border-color: #dee2e6;
    display: flex;
    padding-left: 0;
    list-style: none;
  }

  /* Style du bouton panier */
.btn-outline-dark {
    font-family: 'Cinzel', serif; /* Police élégante */
    font-size: 14px;
    font-weight: bold;
    color: #C59D5F; /* Texte doré */
    border: 2px solid #C59D5F; /* Bordure dorée */
    background-color: black; /* Fond noir */
    border-radius: 30px; /* Arrondi du bouton */
    padding: 10px 30px; /* Espacement */
    transition: all 0.3s ease-in-out; /* Animation fluide */
}

/* Changement au survol */
.btn-outline-dark:hover {
    background-color: #e4dfdf; /* Fond doré */
    color: black; /* Texte noir */
}

/* Style du badge (nombre d'articles dans le panier) */
.btn-outline-dark .badge {
    background-color: #C59D5F; /* Fond doré */
    color: black; /* Texte noir */
    font-weight: bold;
}

/* Style de l'icône */
.btn-outline-dark i {
    color: #C59D5F; /* Icône en doré */
}
.btn-outline-dark {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; /* Espacement entre les éléments */
}

.btn-outline-dark .badge {
    display: inline-block;
    min-width: 20px;
    text-align: center;
}
/* Permet au sous-menu de s'afficher correctement */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    display: none;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}
/* Style du menu déroulant */
.dropdown-menu {
    background-color: black !important; /* Fond noir */
    border: 1px solid #C59D5F; /* Bordure dorée */
}

/* Style des liens dans le menu déroulant */
.dropdown-menu .dropdown-item {
    color: #C59D5F !important; /* Texte doré */
    font-weight: #C59D5F; /* Texte en gras pour un effet plus luxueux */
}

/* Effet au survol */
.dropdown-menu .dropdown-item:hover {
    background-color: #C59D5F !important; /* Fond doré au survol */
    color: black !important; /* Texte noir au survol */
}

/* Sous-menu pour les familles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    display: none;
    background-color: black !important; /* Fond noir pour le sous-menu */
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

/* Style général du menu */
.navbar {
    background-color: #000; /* Fond noir */
}

.navbar-nav .nav-link {
    color: #C59D5F !important; /* Texte doré */
    transition: background-color 0.3s, color 0.3s;
}

/* Effet de survol sur les liens */
.navbar-nav .nav-link:hover {
    background-color: rgb(211, 203, 203) !important; /* Fond blanc au survol */
    color: black !important; /* Texte noir */
}

/* Style du menu déroulant */
.dropdown-menu {
    background-color: black !important; /* Fond noir */
    border: 1px solid #C59D5F; /* Bordure dorée */
}

/* Style des liens du menu déroulant */
.dropdown-menu .dropdown-item {
    color: #C59D5F !important;
}

/* Effet de survol sur les liens du menu déroulant */
.dropdown-menu .dropdown-item:hover {
    background-color: rgb(211, 203, 203) !important; /* Fond blanc */
    color: black !important; /* Texte noir */
}

/* Container des coffrets */
.coffrets-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Carte de coffret */
.coffret-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 300px;
    margin: 10px;
    text-align: center;
    padding: 20px;
    position: relative;
}

.coffret-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Image du coffret */
.coffret-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Titre du coffret */
.coffret-title {
    font-size: 1.rem;
    font-weight: bold;
    color: #2d2d2d;
    margin-bottom: 15px;
}

/* Description du coffret */
.coffret-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* Contenu du coffret */
.coffret-content {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 25px;
}

/* Bouton "Voir les détails" */
.coffret-card .btn {
    background-color: #C59D5F;
    color: #000;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
}

.coffret-card .btn:hover {
    background-color: #c49d75; /* Un or plus clair au survol */
}

/* Effets au survol du bouton */
.coffret-card .btn:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Optionnel : ajouter une bordure dorée à l'image */
.coffret-image {
    border: 5px solid #b08e6e;
    box-sizing: border-box;
}

/* Pour les petits écrans (mobile) */
@media (max-width: 768px) {
    .coffret-card {
        width: 100%;
        margin: 10px 0;
    }
}

/* Style général du menu */
.navbar {
    background-color: #000; /* Fond noir */
}

.navbar-nav .nav-link {
    color: #000 !important; /* Texte doré */
    transition: background-color 0.3s, color 0.3s;
}

/* Effet de survol sur les liens */
.navbar-nav .nav-link:hover {
    background-color: white !important; /* Fond blanc au survol */
    color: #b08e6e !important; /* Texte noir */
}

/* Style du menu déroulant */
.dropdown-menu {
    background-color: #3a3a3a !important; /* Fond noir */
    border: 1px solid #C59D5F; /* Bordure dorée */
}

/* Style des liens du menu déroulant */
.dropdown-menu .dropdown-item {
    color: #C59D5F !important;
}

/* Effet de survol sur les liens du menu déroulant */
.dropdown-menu .dropdown-item:hover {
    background-color: white !important; /* Fond blanc */
    color: black !important; /* Texte noir */
}
/* Permet au sous-menu de s'afficher correctement */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    display: none;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}
/* Permet au sous-menu de s'afficher correctement */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    display: none;
}

.dropdown-submenu:hover .dropdown-menu {
    display: block;
}

