/* ==========================================================================
   1. CONFIGURATION GÉNÉRALE & TYPOGRAPHIE
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
    background-color: #121212; /* Noir mat / Anthracite profond */
    color: #e5e5e0; /* Blanc cassé pour un contraste doux */
    line-height: 1.7;
    overflow-x: hidden;
}

/* Titres élégants à empattement */
h1, h2, h3 {
    font-family: 'Playfair Display', 'Didot', 'Georgia', serif;
    font-weight: 300;
    letter-spacing: 2px;
    color: #ffffff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ==========================================================================
   2. MENU DE NAVIGATION (HEADER)
   ========================================================================== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 8%;
    background-color: #121212;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.main-header .logo img {
    height: 50px;
    width: auto;
    /* Force le logo en blanc si nécessaire, supprime cette ligne s'il est déjà adapté */
    filter: brightness(0) invert(1); 
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #a0a09a;
    font-weight: 400;
}

.nav-links a:hover, 
.nav-links a.active {
    color: #ffffff;
}

/* ==========================================================================
   3. BANNIÈRE PRINCIPALE (HERO SECTION)
   ========================================================================== */
.hero {
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 8%;
    text-align: center;
    /* Image en arrière-plan sombre et texturée */
    background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(18, 18, 18, 0.95)), 
                url('https://unsplash.com') center/cover;
}

.hero-content {
    max-width: 750px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #8e8e88;
    margin-bottom: 40px;
}

.hero .intro-text {
    font-size: 1.05rem;
    color: #c4c4be;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Bouton Minimaliste */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid #ffffff;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 500;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover {
    background-color: #ffffff;
    color: #121212;
}

/* ==========================================================================
   4. SECTION CONCEPT (3 PILIERS)
   ========================================================================== */
.concept-section {
    padding: 90px 8%;
    background-color: #1a1a1a; /* Légère nuance pour séparer les sections */
    text-align: center;
}

.concept-section h2 {
    font-size: 2.2rem;
    margin-bottom: 60px;
    position: relative;
}

.grid-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar {
    text-align: left;
    padding: 40px 30px;
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: border-color 0.3s ease;
}

.pillar:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.pillar h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.pillar p {
    font-size: 0.95rem;
    color: #a0a09a;
    font-weight: 300;
}

/* ==========================================================================
   5. FOOTER
   ========================================================================== */
.main-footer {
    padding: 40px 8%;
    text-align: center;
    background-color: #121212;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #666661;
    letter-spacing: 1px;
}

/* ==========================================================================
   6. RESPONSIVE DESIGN (MOBILE & TABLETTE)
   ========================================================================== */
@media (max-width: 900px) {
    .grid-pillars {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .nav-links {
        gap: 20px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }
    
    .hero .subtitle {
        font-size: 0.95rem;
    }

    .concept-section {
        padding: 60px 20px;
    }

    .concept-section h2 {
        font-size: 1.7rem;
    }
}
