/* ==========================================================================
   STYLE PAGE À PROPOS - CHEMINS DU BOIS
   Design : Luxe Modeste & Épure Nordique
   ========================================================================== */

/* 1. RESET & BASE
   ========================================================================== */
#main-body {
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased; /* Pour un rendu des polices plus fin */
}

.apropos-main {
    background-color: #fdfdfd; /* Blanc cassé doux pour éviter l'effet "clinique" */
    width: 100%;
    overflow: hidden;
}

.container {
    max-width: 1000px; /* Largeur contenue pour une lecture confortable */
    margin: 0 auto;
    padding: 0 30px;
}

/* 2. SECTION HERO (En-tête avec image)
   ========================================================================== */
.about-hero {
    position: relative;
    padding: 220px 0 160px 0;
    text-align: center;
    background-color: #1a1a1a;
    background-image: url('images/varangues.webp');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

/* Overlay sombre pour garantir le contraste du texte */
.about-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(18, 18, 18, 0.65);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.category-label {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

/* Titre principal : Blanc pur (#ffffff) pour une lisibilité parfaite */
.about-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin: 20px 0;
    font-weight: 700;
    letter-spacing: -1px;
    color: #ffffff; 
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
}

/* 3. SECTION CONTENU (Anthracite profond)
   ========================================================================== */
.about-content {
    padding: 140px 0;
    background-color: #242424; 
    color: #e5e5e5;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 60px;
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: center;
}

.about-text p {
    font-family: 'Montserrat', sans-serif;
    line-height: 2; /* Interlignage large pour l'élégance */
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    font-size: 0.95rem;
}

/* --- Bloc Héritage (Structure Varangues) --- */
.heritage-container {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 80px 0;
}

.heritage-image {
    flex: 0 0 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
}

.heritage-image img {
    max-width: 100%;
    filter: invert(100%); /* Inverse le dessin technique pour fond sombre */
}

/* --- Grille des Valeurs --- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin: 100px 0;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.value-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: #D4A373; /* Teinte dorée / boisée signature */
    font-weight: 600;
}

.value-item p {
    font-size: 0.85rem !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* 4. BLOC FUSIONNÉ SUR-MESURE & CONTACT
   ========================================================================== */
.custom-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 100px;
    text-align: center;
}

.custom-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: #ffffff;
}

.contact-inline {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-inline p {
    font-size: 0.85rem !important;
    color: #D4A373 !important;
    margin-bottom: 25px !important;
    letter-spacing: 1px;
}

.contact-list-horizontal {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.contact-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2px;
    transition: all 0.4s ease;
}

.contact-link:hover {
    color: #D4A373 !important;
    border-color: #D4A373;
}

/* 5. RESPONSIVE (Tablettes et Mobiles)
   ========================================================================== */
@media (max-width: 850px) {
    .about-hero {
        padding: 150px 0 100px 0;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .heritage-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-list-horizontal {
        flex-direction: column;
        gap: 20px;
    }

    .custom-section {
        padding: 40px 20px;
    }
}