/* Thème commun pour toutes les pages - Palette ARG Horreur Enhanced */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=DM+Sans:wght@400;500;700&family=Clash+Display:wght@400;500;600;700&family=General+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Palette Bleu Glacier - Base mystérieuse */
    --glacier-white: #ffffff;           /* Blanc pur */
    --glacier-white-blue: #f0f8ff;      /* Blanc bleuté */
    --glacier-light: #e6f3ff;           /* Bleu très clair */
    --glacier-clear: #b3d9ff;           /* Bleu glacier clair */
    --glacier-medium: #4d94ff;          /* Bleu glacier moyen */
    --glacier-deep: #0066cc;            /* Bleu glacier profond */
    --glacier-abyss: #003366;           /* Bleu abyssal */
    
    /* Couleurs principales */
    --primary-gradient: linear-gradient(135deg, #4d94ff 0%, #0066cc 100%);
    --dark-gradient: linear-gradient(135deg, #003366 0%, #001a33 100%);
    --accent-gradient: linear-gradient(135deg, #4d94ff 0%, #b3d9ff 100%);
    --danger-gradient: linear-gradient(135deg, #cc3333 0%, #991111 100%);
    --corruption-gradient: linear-gradient(135deg, #6b46c1 0%, #4c1d95 100%);
    
    /* Couleurs de fond */
    --bg-primary: #001a33;              /* Bleu très foncé */
    --bg-secondary: rgba(77, 148, 255, 0.1); /* Bleu glacier moyen transparent */
    --bg-tertiary: rgba(230, 243, 255, 0.05); /* Bleu très clair transparent */
    --bg-danger: rgba(204, 51, 51, 0.1); /* Rouge danger transparent */
    --bg-corruption: rgba(107, 70, 193, 0.1); /* Violet corruption transparent */
    
    /* Couleurs de texte */
    --text-primary: rgba(240, 248, 255, 0.95);  /* Blanc bleuté */
    --text-secondary: rgba(230, 243, 255, 0.8);  /* Bleu très clair */
    --text-muted: rgba(179, 217, 255, 0.6);      /* Bleu glacier clair */
    --text-danger: rgba(255, 107, 107, 0.9);     /* Rouge clair */
    --text-corruption: rgba(167, 139, 250, 0.9); /* Violet clair */
    
    /* Couleurs d'accent */
    --accent-primary: #4d94ff;          /* Bleu glacier moyen */
    --accent-secondary: #b3d9ff;        /* Bleu glacier clair */
    --accent-danger: #cc3333;           /* Rouge sombre */
    --accent-corruption: #6b46c1;       /* Violet profond */
    --accent-primary-rgb: 77, 148, 255;
    --accent-secondary-rgb: 179, 217, 255;
    --accent-danger-rgb: 204, 51, 51;
    --accent-corruption-rgb: 107, 70, 193;
    
    /* Couleurs complémentaires pour les catégories */
    --category-fundamental: #4d94ff;    /* Bleu glacier moyen - Basique */
    --category-prophecy: #0066cc;       /* Bleu glacier profond - Prophétie */
    --category-pattern: #b3d9ff;        /* Bleu glacier clair - Pattern */
    --category-manifestation: #6b46c1;  /* Violet profond - Manifestation/Corruption */
    --category-public: #e6f3ff;         /* Bleu très clair - Public */
    --category-classified: #cc3333;     /* Rouge sombre - Classifié/Danger */
    --category-forbidden: #4c1d95;      /* Violet très sombre - Interdit */
    --category-recruitment: #4d94ff;    /* Bleu glacier moyen */
    --category-surveillance: #0066cc;   /* Bleu glacier profond */
    --category-protocols: #b3d9ff;      /* Bleu glacier clair */
    --category-restricted: #cc3333;     /* Rouge sombre */
    --category-archives: #e6f3ff;       /* Bleu très clair */
    --category-documentation: #b3d9ff;  /* Bleu glacier clair */
    
    /* Ombres et effets */
    --shadow-sm: 0 2px 4px rgba(0, 26, 51, 0.2);
    --shadow-md: 0 4px 6px rgba(0, 26, 51, 0.3), 0 1px 3px rgba(0, 26, 51, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 26, 51, 0.3), 0 4px 6px rgba(0, 26, 51, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 26, 51, 0.3), 0 10px 10px rgba(0, 26, 51, 0.1);
    --glow-primary: 0 0 20px rgba(var(--accent-primary-rgb), 0.3);
    --glow-secondary: 0 0 30px rgba(var(--accent-secondary-rgb), 0.2);
    --glow-danger: 0 0 20px rgba(var(--accent-danger-rgb), 0.4);
    --glow-corruption: 0 0 25px rgba(var(--accent-corruption-rgb), 0.4);
    
    /* Bordures et rayons */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-color: rgba(77, 148, 255, 0.2);
    --border-danger: rgba(204, 51, 51, 0.3);
    --border-corruption: rgba(107, 70, 193, 0.3);
    
    /* Typographie */
    --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Clash Display', 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Outfit', sans-serif;
    --font-accent: 'General Sans', sans-serif;
    --font-mono: 'DM Sans', sans-serif;
    
    /* Espacement */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Styles communs pour les sections hero */
.hero-content {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-lg);
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Styles communs pour le contenu */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-2xl) var(--spacing-lg);
}

/* Styles pour les sections de principes */
.tenet-section {
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-normal);
}

.tenet-section:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg), var(--glow-primary);
    border-color: var(--accent-primary);
}

.tenet-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.tenet-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background: var(--accent-gradient);
    border-radius: var(--border-radius-sm);
}

.tenet-content {
    font-family: var(--font-main);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

.tenet-content p {
    margin-bottom: var(--spacing-md);
}

.tenet-content p:last-child {
    font-family: var(--font-accent);
    margin-bottom: 0;
    font-style: italic;
    color: var(--accent-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Classes utilitaires pour les couleurs d'accent */
.text-danger {
    color: var(--text-danger) !important;
}

.text-corruption {
    color: var(--text-corruption) !important;
}

.bg-danger {
    background: var(--bg-danger) !important;
    border-color: var(--border-danger) !important;
}

.bg-corruption {
    background: var(--bg-corruption) !important;
    border-color: var(--border-corruption) !important;
}

.glow-danger {
    box-shadow: var(--glow-danger) !important;
}

.glow-corruption {
    box-shadow: var(--glow-corruption) !important;
}

/* Animations */
@keyframes glow {
    0%, 100% { 
        box-shadow: var(--shadow-lg), var(--glow-primary);
    }
    50% { 
        box-shadow: var(--shadow-xl), var(--glow-secondary);
    }
}

@keyframes glow-danger {
    0%, 100% { 
        box-shadow: var(--shadow-lg), var(--glow-danger);
    }
    50% { 
        box-shadow: var(--shadow-xl), 0 0 30px rgba(var(--accent-danger-rgb), 0.6);
    }
}

@keyframes glow-corruption {
    0%, 100% { 
        box-shadow: var(--shadow-lg), var(--glow-corruption);
    }
    50% { 
        box-shadow: var(--shadow-xl), 0 0 35px rgba(var(--accent-corruption-rgb), 0.6);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Mise à jour des styles de la grille */
.app-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 26, 51, 0.5);
    max-width: 100px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.foundation-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 26, 51, 0.6);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.catchphrase {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 26, 51, 0.4);
    letter-spacing: -0.01em;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --spacing-2xl: 3rem;
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
    }

    .hero-title, .foundation-title {
        font-size: 2.5rem;
        letter-spacing: -0.02em;
    }
    
    .hero-tagline, .catchphrase {
        font-size: 1.1rem;
        letter-spacing: -0.01em;
    }
    
    .tenet-title {
        font-size: 1.75rem;
        letter-spacing: -0.01em;
    }
    
    .tenet-content {
        font-size: 1rem;
    }

    .page-content {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .tenet-section {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .hero-title, .foundation-title {
        font-size: 2rem;
        letter-spacing: -0.02em;
    }
    
    .hero-tagline, .catchphrase {
        font-size: 1rem;
        letter-spacing: -0.01em;
    }
    
    .tenet-title {
        font-size: 1.5rem;
    }
    
    .tenet-content {
        font-size: 0.95rem;
    }
}