/* Palette inspirée du logo Club des Cent */
:root {
    --primary-color: #111111; /* Noir profond */
    --secondary-color: #bfa046; /* Doré foncé */
    --accent-color: #ffd700; /* Doré lumineux */
    --dark-color: #000000; /* Noir pur */
    --light-color: #f5f5f5; /* Gris très clair */
    --text-color: #f5f5f5; /* Texte principal blanc cassé */
    --text-muted: #bfa046; /* Doré foncé pour texte secondaire */
}

/* Styles généraux */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: var(--primary-color);
    color: var(--text-color);
}

/* Navigation */
.navbar {
    background: var(--dark-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--accent-color) !important;
}

.nav-link {
    color: var(--light-color) !important;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

/* Section Hero */
.hero-section {
    background: var(--dark-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    display: none;
}

.hero-icon {
    font-size: 15rem;
    color: var(--accent-color);
    opacity: 0.8;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Boutons */
.btn-warning, .btn-warning:focus {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

.btn-outline-light {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-outline-light:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Cartes de services */
.service-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    background: #181818;
    color: var(--text-color);
    border: 1px solid rgba(191,160,70,0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--dark-color);
    font-size: 2rem;
}

/* Section À propos */
.about-stats {
    background: #181818;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    color: var(--text-color);
    border: 1px solid rgba(191,160,70,0.08);
}

.stat-item h3 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Formulaire de contact */
.contact-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #181818;
    color: var(--text-color);
    border: 1px solid rgba(191,160,70,0.08);
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    background: #222;
    color: var(--text-color);
    border: 1.5px solid var(--secondary-color);
}

.form-control:focus {
    border-color: var(--accent-color);
    background: #181818;
    color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}

::placeholder {
    color: #bfa046;
    opacity: 1;
}

/* Footer */
.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    color: var(--accent-color) !important;
}

.social-links a:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-icon {
        font-size: 8rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .about-stats {
        margin-top: 2rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll smooth */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Icônes d'avantages */
.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--dark-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.advantage-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Cartes de modalités */
.modalites-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #181818;
    color: var(--text-color);
    border: 1px solid rgba(191,160,70,0.08);
}

.modalite-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.modalite-item:hover {
    background: rgba(243, 156, 18, 0.1);
    transform: translateX(5px);
}

.modalite-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    font-size: 1.2rem;
    flex-shrink: 0;
} 

.logo-club {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    width: 80%;
    height: auto;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.3s;
}

.logo-club:hover {
    transform: scale(1.04) rotate(-2deg);
} 

footer.bg-dark {
    background: var(--dark-color) !important;
    color: var(--accent-color);
}

footer .text-muted {
    color: var(--secondary-color) !important;
} 

#apropos {
    color: #fff !important;
    background: #181818 !important;
}

#apropos .lead, #apropos p, #apropos span {
    color: #fff !important;
}

#apropos .about-stats {
    background: #232323 !important;
    color: #fff !important;
    border: 1.5px solid var(--secondary-color);
}

#apropos h2, #apropos h3, #apropos .fw-bold {
    color: var(--accent-color) !important;
}

#apropos i {
    color: var(--accent-color) !important;
} 

#avantages h2.display-5 {
    color: #111 !important;
} 

#modalites {
    color: #fff !important;
    background: #181818 !important;
}

#modalites .lead, #modalites p, #modalites span {
    color: #fff !important;
}

#modalites .modalites-card {
    background: #232323 !important;
    color: #fff !important;
    border: 1.5px solid var(--secondary-color);
}

#modalites h2, #modalites h3, #modalites .fw-bold {
    color: var(--accent-color) !important;
}

#modalites i, #modalites .modalite-icon {
    color: var(--accent-color) !important;
    background: transparent !important;
} 

#contact {
    background: #f5f5f5 !important;
    color: #111 !important;
}

#contact .lead, #contact p, #contact span {
    color: #111 !important;
}

#contact .contact-card {
    background: #fff !important;
    color: #111 !important;
    border: 1.5px solid var(--secondary-color);
}

#contact h2, #contact h3, #contact .fw-bold {
    color: #111 !important;
}

#contact i, #contact .btn-warning {
    color: var(--accent-color) !important;
}

#contact .btn-warning {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #111 !important;
}

#contact .btn-warning:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: #111 !important;
} 

#services {
    background: #f5f5f5 !important;
    color: #111 !important;
}

#services .lead, #services p, #services span {
    color: #111 !important;
}

#services .service-card {
    background: #fff !important;
    color: #111 !important;
    border: 1.5px solid var(--secondary-color);
}

#services h2, #services h3, #services .fw-bold {
    color: #111 !important;
}

#services .service-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color)) !important;
    color: #111 !important;
} 

#carouselConcept .carousel-item {
    transition: opacity 0.8s ease-in-out;
    opacity: 0;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}
#carouselConcept .carousel-item.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}
#carouselConcept .carousel-inner {
    position: relative;
    min-height: 520px;
} 

#carouselConcept .carousel-item.active img {
    animation: kenburns 5s ease-in-out;
}

@keyframes kenburns {
    0% {
        transform: scale(1) translateY(0);
    }
    100% {
        transform: scale(1.08) translateY(-10px);
    }
} 

/* Section Bureau Exécutif */
.executive-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
    background: #181818;
    color: var(--text-color);
    border: 1px solid rgba(191,160,70,0.10);
    transition: transform 0.3s, box-shadow 0.3s;
}
.executive-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}
.executive-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom: 3px solid var(--accent-color);
}
#bureau h2, #bureau .fw-bold {
    color: var(--accent-color) !important;
}
#bureau .lead, #bureau p, #bureau span {
    color: var(--text-muted);
} 