/* ============================================================
   COMPONENTS.CSS - Boutons, Navigation et Footer
   ============================================================ */









/* --- TYPOGRAPHIE DES BOUTONS --- */
.btn, .btn-primary, .btn-read, .btn-secondary, .btn-user {
    font-family: 'League Spartan', 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* --- BOUTON PRINCIPAL (DORÉ) --- */
.btn-primary, .btn-read {
    background: linear-gradient(135deg, #f6c452, #f29c38) !important;
    color: #111 !important;
    padding: 12px 24px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none !important;
    border: none !important; /* SUPPRIME LA BORDURE BLEUE */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 208, 97, 0.2);
    cursor: pointer;
}

.btn-primary:hover, .btn-primary:focus, .btn-read:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffdc89, #e6a843) !important;
    box-shadow: 0 0 20px rgba(248, 208, 97, 0.4) !important;
    outline: none !important; /* FORCE LA SUPPRESSION DU BLEU BOOTSTRAP */
}









/* --- NAVIGATION GLOBALE (_navbar.html) --- */
.top-menu {
    background-color: rgba(0,0,0,0.82);
    padding: 8px 0;
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-list {
    display: flex; gap: 15px; list-style: none; margin: 0; padding: 0;
}

.nav-list a {
    color: #f8d061;
    text-decoration: none;
    font-family: 'Andarilho', sans-serif;
    font-size: 0.95rem;
    padding: 5px 10px;
    transition: color 0.2s ease;
}

.nav-list a:hover { color: #e6a843; }







/* --- DROPDOWN UTILISATEUR --- */
.btn-user {
    background: none; border: none; color: #fff; cursor: pointer;
    display: flex; align-items: center; gap: 6px; position: relative;
}

.custom-user-dropdown {
    display: none; position: absolute; right: 0; top: 110%;
    background-color: #fff; border-radius: 10px; min-width: 160px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2); z-index: 999;
}

.custom-user-dropdown.show { display: block; }

.custom-user-dropdown .dropdown-item {
    padding: 10px 16px; color: #333; text-decoration: none; display: block;
}

.custom-user-dropdown .dropdown-item:hover {
    background-color: #fceaff; color: #b09e00; border-left: 4px solid #b09600;
}







.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: rgba(12, 15, 22, 0.95);
    border: 1px solid rgba(248, 208, 97, 0.3);
    border-radius: 15px;
    padding: 20px;
    z-index: 10000;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.cookie-content p {
    font-family: 'Andarilho', sans-serif;
    font-size: 0.9rem;
    margin: 0;
}

.cookie-buttons { display: flex; gap: 10px; }

.btn-cookie {
    background: #f8d061;
    border: none;
    color: #111;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.btn-cookie-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 8px 20px;
    border-radius: 8px;
    cursor: pointer;
}












/* --- FOOTER (_footer.html) --- */
.footer-section {
    padding: 40px 16px;
    background-color: #000000;
    color: #f8d061;
    text-align: center;
    border-top: 2px solid #8e7b1c;
}
/* --- Footer Title Gold --- */
.footer-logo h4 {
    color: #f8d061 !important;
    font-family: 'Quentin', cursive !important;
    text-align: center;
}

.social-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 20px; }
.social-links a { color: #f8d061; font-size: 1.5rem; transition: 0.3s; }
.social-links a:hover { color: #fff; transform: scale(1.2); }


/* --- Footer Text Polish --- */
.footer-section p, 
.footer-section .footer-links a {
    color: #ffffff !important; /* Texte blanc */
    font-family: 'Andarilho', sans-serif !important; /* Police Andarilho */
    text-decoration: none !important;
    font-size: 0.95rem;
    opacity: 0.8;
}

.footer-section .footer-links a:hover {
    color: #f8d061 !important; /* Devient doré au survol */
    opacity: 1;
}

.footer-section .footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}


/* --- MODALS & STICKY BARS --- */
.modal-content {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    border-radius: 12px; color: #f5f5f5; padding: 25px;
}

.close-button { position: absolute; top: 12px; right: 18px; color: #888; cursor: pointer; font-size: 1.5rem; }

.guide-sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(12, 15, 22, 0.95); padding: 12px 20px;
    display: flex; align-items: center; justify-content: space-between;
    z-index: 1200; border-top: 1px solid rgba(255,255,255,0.1);
}










/* --- PETITS ÉLÉMENTS --- */
.tag-badge {
    display: inline-block; background: rgba(255, 255, 255, 0.08);
    padding: 6px 12px; border-radius: 999px; margin: 4px; font-size: 0.8rem;
}









/* LUXURY INPUTS */
.luxury-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(248, 208, 97, 0.2) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 25px 15px !important;
    font-family: 'Andarilho', sans-serif;
}

.luxury-input:focus {
    border-color: #f8d061 !important;
    box-shadow: 0 0 10px rgba(248, 208, 97, 0.2) !important;
}

/* GOLDEN TOAST */
.golden-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background: linear-gradient(135deg, rgba(12, 15, 22, 0.95), rgba(25, 30, 45, 0.95));
    border: 1px solid rgba(248, 208, 97, 0.4);
    border-radius: 50px;
    padding: 10px 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
}

.toast-content {
    display: flex;
    align-items: center;
    color: #fff;
    font-family: 'Andarilho', sans-serif;
}

.toast-icon { font-size: 1.5rem; margin-right: 15px; }
.close-toast { background: none; border: none; color: rgba(255,255,255,0.5); font-size: 1.5rem; margin-left: 15px; cursor: pointer; }
.close-toast:hover { color: #f8d061; }

@media (max-width: 576px) {
    .golden-toast { width: 90%; border-radius: 15px; bottom: 20px; }
}

::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
    font-style: italic;
}

.luxury-input {
    font-size: 1rem !important;
}