/* ========================================
   VARIABLES
======================================== */
:root {
    --gold: #c9a84c;
    --gold-light: #e8c96d;
    --dark-bg: #0a0a0a;
    --text-muted-dark: rgba(255,255,255,0.6);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0d0d0d;
    color: #e0e0e0;
    font-size: 0.8rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* ========================================
   NAVBAR
======================================== */
.navbar {
    background: #0a0a0a !important;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transition: padding 0.3s ease, top 0.3s ease-in-out;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5) !important;
}

.navbar.scroll-down {
    top: -100px;
}

body.offcanvas-open .navbar {
    top: 0 !important;
}

/* Brand */
.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--gold) !important;
}

/* Icônes dorées */
.nav-link i {
    color: var(--gold);
}

/* Bouton Contact doré */
.btn-success {
    background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
    border-color: var(--gold) !important;
    color: #000 !important;
    font-weight: 700;
}

.btn-success:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
    border-color: var(--gold-light) !important;
    color: #000 !important;
}

/* Hamburger doré */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c9a84c' stroke-linecap='round' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ========================================
   OFFCANVAS MOBILE
======================================== */
.offcanvas {
    background: #0a0a0a;
}

.offcanvas-header {
    background: #111111;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    color: var(--gold);
}

.offcanvas-title {
    color: var(--gold);
}

.btn-close {
    filter: brightness(0) invert(1);
}

/* ========================================
   LIENS NAV
======================================== */

/* Mobile */
@media (max-width: 991px) {
    .nav-item a {
        font-size: 1rem;
        color: rgba(255,255,255,0.85) !important;
    }

    .nav-item a:hover {
        color: var(--gold) !important;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .offcanvas-body {
        padding: 0;
    }

    .navbar-nav {
        align-items: center;
        gap: 0.5rem;
    }

    .nav-item a {
        font-size: 1rem;
        color: rgba(255,255,255,0.85) !important;
        transition: color 0.3s ease;
    }

    .nav-item a:hover {
        color: var(--gold) !important;
    }
}



/* ========================================
   FOOTER - SPIRIT OF FREEDOM
======================================== */

.main-footer {
    background: #0a0a0a;
    color: #ffffff;
    margin-top: 5rem;
}

/* Bande dorée top */
.footer-top-bar {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Zone principale */
.footer-main {
    padding: 4rem 0 3rem;
}

/* Brand centré */
.footer-brand-row {
    text-align: center;
    margin-bottom: 2.5rem;
}

.footer-brand-row img {
    margin-bottom: 1rem;
}

.footer-brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.footer-brand-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.footer-brand-location {
    display: inline-flex;
    align-items: center;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
}

/* Séparateur */
.footer-gold-sep {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
    margin-bottom: 2.5rem;
}

/* Widgets */
.footer-widget {
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    height: 100%;
}

.footer-widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

/* Contact */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    font-size: 0.85rem;
}

.footer-contact-list a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: var(--gold);
}

.footer-contact-list span {
    font-size: 0.85rem;
}

/* Réseaux sociaux */
.footer-social-text {
    color: rgba(255,255,255,0.55);
    font-size: 0.83rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 5px 20px rgba(201, 168, 76, 0.3);
}

/* Navigation */
.footer-links {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
}

.footer-nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.83rem;
    transition: color 0.3s ease;
    padding: 0.25rem 0;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-nav a:hover::after {
    width: 100%;
}

/* Copyright */
.footer-bottom {
    padding: 1.25rem 0;
    background: rgba(0,0,0,0.4);
}

.footer-copyright,
.footer-credits {
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    margin: 0;
}

.footer-copyright strong {
    color: var(--gold);
}

.footer-credits a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {
    .footer-brand-title { font-size: 1.5rem; }
}

@media (max-width: 767px) {
    .main-footer { margin-top: 3rem; }
    .footer-main { padding: 3rem 0 2rem; }
    .footer-brand-title { font-size: 1.3rem; }
    .footer-widget { padding: 1.25rem; }
    .footer-brand-desc {font-size: 0.8rem;line-height: 1.5;}
    .footer-brand-location {font-weight: 500;font-size: 0.8rem;padding: 0.3rem 1.15rem;}
}

@media (max-width: 575px) {
    .footer-nav { gap: 0.4rem 1rem; }
    .footer-nav a { font-size: 0.72rem; }
    .footer-copyright, .footer-credits { font-size: 0.75rem; }
    .footer-bottom p { font-size: 0.72rem; }
    .footer-brand-desc {font-size: 0.76rem;line-height: 1.4;}
    .footer-brand-location {font-weight: 500;font-size: 0.78rem;padding: 0.3rem 1.15rem;}
}