/* ============================================
   Redesign Moderne & Professionnel
   ============================================ */

/* 1. Header & Navigation : Fond blanc, texte sombre */
.navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 1rem 0 !important;
}

.logo img {
    filter: none !important; /* On retire les filtres bizarres */
    height: 60px !important;
    max-width: none !important;
}

.nav-link {
    color: #0a192f !important; /* Bleu nuit */
    font-weight: 600 !important;
}

.nav-link:hover {
    color: #b78628 !important; /* Or */
}

.nav-cta {
    border-color: #0a192f !important;
    color: #0a192f !important;
}

.nav-cta:hover {
    background: #0a192f !important;
    color: #ffffff !important;
}

/* Toggle menu mobile (couleur) */
.nav-toggle span {
    background: #0a192f !important;
}

/* 2. Hero Section : Plus épurée */
.hero {
    margin-top: 80px; /* Pour compenser la navbar fixe */
    min-height: 80vh !important; /* Un peu moins haut */
}

.hero-title {
    font-weight: 700 !important;
    letter-spacing: -1px;
}

/* 3. Section Président (Christian Frick) : Layout Magazine */
.about-president {
    margin-top: 4rem;
}

/* On cache l'ancienne carte */
.president-card-new {
    display: none !important;
}

/* Restauration photo bulle (About) */
.president-card {
    display: block !important;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
}

.president-image {
    width: 250px !important;
    height: 250px !important;
    border-radius: 50% !important;
    margin: 0 auto 2rem !important;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative !important;
    overflow: hidden !important;
}

.president-info {
    position: static !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: 100% !important;
    text-align: center !important;
}

.president-info h3 {
    color: #0a192f !important;
    margin-bottom: 0.5rem !important;
}

.president-role {
    color: #b78628 !important;
}

.president-info p {
    color: #6c757d !important;
}

/* Nouveau Container Président */
.president-showcase {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.03);
}

.president-showcase-img {
    flex: 1;
    height: 500px; /* Hauteur fixe imposante */
    position: relative;
}

.president-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Focus visage */
}

.president-showcase-content {
    flex: 1.2; /* Un peu plus large que la photo */
    padding: 4rem;
    position: relative;
}

.president-showcase-content::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 3rem;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    color: rgba(183, 134, 40, 0.1); /* Or très pâle */
    line-height: 1;
}

.president-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #0a192f;
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.president-title {
    display: block;
    color: #b78628;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.president-quote {
    font-size: 1.1rem;
    color: #495670;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.president-credentials {
    display: flex;
    gap: 2rem;
    border-top: 1px solid #e6f1ff;
    padding-top: 2rem;
}

.credential-item {
    font-size: 0.85rem;
    color: #0a192f;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credential-item i {
    color: #b78628;
}

/* Responsive pour le Président */
@media (max-width: 900px) {
    .president-showcase {
        flex-direction: column;
    }
    
    .president-showcase-img {
        width: 100%;
        height: 350px;
    }
    
    .president-showcase-content {
        padding: 2rem;
    }
}

/* 4. Global Layout Améliorations */
.section-header h2 {
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
}

.section-header p.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Ajustement grille équipe */
.team-grid {
    gap: 2rem !important;
}

.team-card {
    background: #fff;
    padding-bottom: 1.5rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.team-photo {
    height: 300px !important; /* Photos un peu moins hautes */
    border-radius: 8px 8px 0 0 !important;
}

