/* =========================================
   DOCTRINE.CSS - MANIFESTE LUXE
   ========================================= */

/* FOND & LAYOUT */
.doctrine-body {
    background-color: #050505;
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

#neuro-network {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}

.navbar { z-index: 100; }

/* CONTENEUR CENTRÉ */
.doctrine-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 20px 80px; /* Espace pour la navbar */
    position: relative;
    z-index: 10;
}

/* EN-TÊTE */
.doctrine-header { text-align: center; margin-bottom: 60px; animation: fadeIn 1s ease; }
.doctrine-header h1 {
    font-size: 3rem; color: #d4af37; margin-bottom: 15px; letter-spacing: 5px;
}
.gold-line {
    width: 60px; height: 3px; background: #d4af37;
    margin: 0 auto 20px; border-radius: 3px;
    box-shadow: 0 0 15px rgba(212,175,55,0.5);
}
.doctrine-header p { color: #888; font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; }

/* CARTES DOCTRINE (LES PILIERS) */
.doctrine-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px; /* Arrondi Luxe */
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideUp 0.8s ease-out;
}

/* Animation d'apparition décalée serait idéale, mais simple slideUp suffit */
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* Effet Hover sur la carte */
.doctrine-card:hover {
    background: rgba(20, 20, 20, 0.8);
    border-color: #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

/* Numéro en fond (01, 02...) */
.card-number {
    position: absolute;
    top: -15px; left: 20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02); /* Très subtil */
    font-family: 'Cormorant Garamond', serif;
    z-index: 0;
    transition: 0.4s;
}

.doctrine-card:hover .card-number {
    color: rgba(212, 175, 55, 0.1); /* S'allume un peu au survol */
    transform: scale(1.1);
}

/* Contenu Texte */
.card-content { position: relative; z-index: 2; max-width: 85%; }

.card-content h3 {
    font-size: 1.2rem; color: #fff; margin-bottom: 5px;
    letter-spacing: 2px;
}

.card-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem; color: #d4af37; margin-bottom: 20px;
    font-style: italic;
}

.card-content p {
    color: #aaa; line-height: 1.6; font-size: 0.95rem;
}

/* Icône Droite */
.card-icon {
    font-size: 2.5rem; color: #333;
    z-index: 2; transition: 0.4s;
}

.doctrine-card:hover .card-icon { color: #d4af37; transform: rotate(15deg); }

/* FOOTER (Appel à l'action) */
.doctrine-footer { text-align: center; margin-top: 60px; }
.doctrine-footer p { color: #666; margin-bottom: 20px; font-size: 0.9rem; }

.btn-doctrine {
    display: inline-block;
    padding: 18px 40px;
    background: #fff; color: #000;
    border-radius: 50px;
    font-weight: 800; font-size: 0.9rem; letter-spacing: 1px;
    transition: 0.3s;
}

.btn-doctrine:hover {
    background: #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

/* MOBILE RESPONSIVE */
@media (max-width: 700px) {
    .doctrine-header h1 { font-size: 2rem; }
    .doctrine-card { flex-direction: column; text-align: center; padding: 30px; }
    .card-content { max-width: 100%; margin-bottom: 20px; }
    .card-number { display: none; } /* On cache le gros numéro sur mobile pour la lisibilité */
    .card-icon { font-size: 2rem; color: #d4af37; }
}