/* ==================================== */
/* ZUGMONT CAPITAL - GLOBAL STYLES (VERSION FINALE) */
/* ==================================== */

/* --- Variables CSS --- */
:root {
    --color-primary: #1a1a1a; /* Anthracite/Noir profond */
    --color-secondary: #FFFFFF; /* Blanc */
    --color-accent: #c8b37e; /* Champagne doré (accent de luxe) */
    --color-light-gray: #f8f8f8; /* Gris clair pour fond de section */
    --color-text-body: #333333; /* Gris foncé pour la lisibilité */

    --font-title: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --max-width: 1200px;
    --border-radius: 10px; /* Rayon anguleux */
    --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.05); /* Ombre douce */
    --header-height: 70px; /* Hauteur fixe du header */
}

/* --- Base Reset & Global Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-body);
    line-height: 1.6;
    background-color: var(--color-secondary);
    scroll-behavior: smooth;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 30px; 
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* --- Typographie & Hiérarchie --- */
h1, h2, h3 {
    font-family: var(--font-title);
    color: var(--color-primary);
    letter-spacing: 1px;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    padding-bottom: 10px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent); 
    border-radius: 50px;
}

p {
    margin-bottom: 20px;
}

/* --- Boutons/Liens d'action --- */
.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-secondary);
    border: 2px solid var(--color-primary);
    padding: 14px 35px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: var(--border-radius); 
    box-shadow: var(--shadow-subtle);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
    transform: translateY(-2px); 
}

/* --- Header & Navigation --- */
.header {
    background-color: var(--color-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 10px 0;
    height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 100px; 
    vertical-align: middle;
}

.nav-menu {
    list-style: none;
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.nav-menu li {
    margin-left: 40px;
}

.nav-menu a {
    font-weight: 500;
    padding-bottom: 6px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--color-accent);
}

/* --- Menu Hamburger --- */
.menu-toggle {
    display: none; /* Masqué par défaut sur desktop */
    cursor: pointer;
    z-index: 1010;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--color-primary);
    transition: all 0.3s ease-in-out;
}

/* --- Sections Générales --- */
section {
    padding: 120px 0;
}

.section-light {
    background-color: var(--color-light-gray);
}

/* --- Footer --- */
.footer {
    background-color: var(--color-primary);
    color: var(--color-accent);
    padding: 30px 0;
    font-size: 0.9rem;
    text-align: center;
}

.footer a {
    color: var(--color-accent);
}

/* --- Composants Spécifiques (Philosophie) --- */
.value-item {
    padding: 30px;
    border: 1px solid rgba(200, 179, 126, 0.3);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
    background-color: var(--color-secondary);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    background-color: #fffaf0;
    box-shadow: 0 6px 15px rgba(200, 179, 126, 0.2);
}

.value-icon {
    font-size: 3.5rem;
}

/* --- Composants Spécifiques (Équipe) --- */
.member-photo {
    border: 4px solid var(--color-accent);
}

.team-message {
    border-left: 5px solid var(--color-accent);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    box-shadow: var(--shadow-subtle);
}

/* --- Composants Spécifiques (Contact) --- */
.contact-form input,
.contact-form textarea {
    border: 1px solid rgba(26, 26, 26, 0.1); 
    border-radius: 5px; 
    background-color: var(--color-light-gray);
}
.contact-section-fullheight {
    min-height: calc(100vh - var(--header-height) - 100px); 
    display: flex;
    align-items: center; 
}
.map-placeholder {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-subtle);
}


/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    .container {
        padding: 0 20px; 
    }
    
    .menu-toggle {
        display: block; /* Affiche le hamburger */
    }
    
    .nav-menu {
        /* Menu Mobile */
        position: fixed;
        top: var(--header-height); 
        right: 0;
        width: 70%; /* Augmenté légèrement pour un meilleur look */
        height: calc(100vh - var(--header-height)); 
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 40px;
        transform: translateX(100%); 
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        transform: translateX(0); 
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu a {
        color: var(--color-primary);
        font-size: 1.2rem;
        font-weight: 700;
        letter-spacing: 1.5px;
    }

    /* Animation du Hamburger */
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ==================================== */
/* ZUGMONT CAPITAL - GLOBAL STYLES (VERSION FINALE RESPONSIVE) */
/* ==================================== */

/* [ ... Reste des styles inchangés ... ] */

/* --- Sections Générales --- */
section {
    padding: 120px 0;
}

/* --- Composants Spécifiques (Philosophie) --- */
.philosophy-text-block {
    padding: 0 10px; /* Ajoute un petit padding intérieur sur mobile */
}


/* --- Composants Spécifiques (Équipe) --- */
.team-message {
    padding: 20px; /* Réduit le padding sur mobile pour économiser de l'espace */
    font-size: 1.1rem;
}
.team-message strong {
    font-size: 1.2rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
    /* [ ... Styles du Menu Hamburger inchangés ... ] */
}

@media (max-width: 768px) {
    h2 {
        font-size: 2.2rem;
        margin-bottom: 50px;
    }
    
    .logo img {
        height: 100px;
    }
    
    /* Pages autres que Hero */
    
    section {
        padding: 80px 0; /* Réduction du padding vertical sur mobile */
    }

    /* PHILOSOPHIE */
    .values-grid {
        grid-template-columns: 1fr; /* Passe à une colonne */
        gap: 25px; /* Réduit l'espace entre les éléments */
    }
    .value-item {
        padding: 20px;
    }

    /* INVESTISSEMENTS (Le contenu est déjà un bloc de texte, juste centré/contenu) */
    .investment-hero {
        padding: 100px 0;
    }
    .investment-hero h1 {
        font-size: 2.5rem;
    }
    .investment-content {
        font-size: 1rem;
    }

    /* ÉQUIPE */
    .team-grid {
        gap: 40px;
        flex-direction: column; /* Force les portraits à s'aligner verticalement */
        align-items: center;
        margin-bottom: 40px;
    }
    .team-member {
        max-width: 80%;
    }
    .member-photo {
        width: 150px;
        height: 150px;
    }
    
    /* CONTACT */
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-section-fullheight {
        min-height: auto; 
        padding: 60px 0; /* Encore une petite réduction ici */
    }
}