/* ==========================================================================
   PERSONNALISATION COULEURS : BRONZE (#B08C63) & BLEU NUIT (#0A1F44)
   ========================================================================== */

/* 1. BOUTONS ET ÉLÉMENTS PRIMAIRES */
/* -------------------------------------------------------------------------- */

/* Couleur de fond par défaut (Boutons, Newsletter, etc.) */
.btn-primary, 
.block_newsletter form .btn {
    background-color: #B08C63 !important;
    border-color: #B08C63 !important;
    color: #FFFFFF !important;
}

/* État au survol (Hover) */
.btn-primary:hover, 
.block_newsletter form .btn:hover {
    background-color: #0A1F44 !important;
    border-color: #0A1F44 !important;
    color: #FFFFFF !important;
}

/* Éléments de texte ou icônes spécifiques en bleu par défaut */
.text-primary, .link-primary, #cms .page-content i {
    color: #B08C63 !important;
}


/* 2. NAVIGATION ET LIENS */
/* -------------------------------------------------------------------------- */

/* Couleur des liens au survol sur tout le site */
a:hover {
    color: #F5D27B !important;
    text-decoration: none;
}

/* Arrière-plan du menu principal (Header) */
#header .header-top {
    background-color: #0A1F44 !important;
}

/* Couleur des liens du menu pour la lisibilité sur fond sombre */
.menu, .menu a, .menu span {
    color: #FFFFFF !important;
}

/* Survol des liens du menu */
.menu a:hover {
    color: #F5D27B !important;
}


/* 3. PIED DE PAGE (FOOTER) */
/* -------------------------------------------------------------------------- */

/* Bloc principal du pied de page */
.footer-container {
    background-color: #0A1F44 !important;
    color: #FFFFFF !important;
}

/* Liens et titres dans le pied de page */
.footer-container a, 
.footer-container h1, 
.footer-container h2, 
.footer-container h3, 
.footer-container .h3 {
    color: #FFFFFF !important;
}

/* Survol des liens dans le pied de page */
.footer-container a:hover {
    color: #B08C63 !important;
}

/* Petite barre de copyright tout en bas */
.footer-container .footer-after {
    background-color: #081938 !important; /* Bleu légèrement plus foncé */
    color: #FFFFFF !important;
}

/* Ajustement des bordures de séparation si nécessaire */
.footer-container .block-contact, 
.footer-container .links {
    border-right: 1px solid rgba(176, 140, 99, 0.2); /* Bordure discrète bronze */
}