/* STYLE CSS UNIFIÉ POUR LES TROIS MONDES - GÉO-NUMÉROLOGIE */

/* ========================================
   VARIABLES CSS POUR LES TROIS MONDES
======================================== */
:root {
    /* Couleurs Monde Spirituel - OR ROYAL */
    --spiritual-primary: #FFB000;
    --spiritual-secondary: #E6A000;
    --spiritual-light: rgba(255, 176, 0, 0.1);
    --spiritual-ultra-light: rgba(255, 176, 0, 0.02);
    
    /* Couleurs Monde Psychique */
    --psychique-primary: #e91e63;
    --psychique-secondary: #be185d;
    --psychique-light: rgba(233, 30, 99, 0.1);
    --psychique-ultra-light: rgba(233, 30, 99, 0.02);
    
    /* Couleurs Monde Physique */
    --physique-primary: #00bcd4;
    --physique-secondary: #0891b2;
    --physique-light: rgba(0, 188, 212, 0.1);
    --physique-ultra-light: rgba(0, 188, 212, 0.02);
    
    /* Couleurs communes */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray-border: #e5e7eb;
}

/* ========================================
   BASE STYLES
======================================== */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 100px;
    padding-bottom: 0;
    line-height: 1.6;
}
/* Classes d'atmosphère pour chaque monde */
.spiritual-atmosphere {
    background: linear-gradient(135deg, 
        var(--spiritual-ultra-light) 0%, 
        rgba(230, 160, 0, 0.03) 50%, 
        var(--spiritual-ultra-light) 100%);
    position: relative;
}

.psychic-atmosphere {
    background: linear-gradient(135deg, 
        var(--psychique-ultra-light) 0%, 
        rgba(190, 24, 93, 0.03) 50%, 
        var(--psychique-ultra-light) 100%);
    position: relative;
}

.physical-atmosphere {
    background: linear-gradient(135deg, 
        var(--physique-ultra-light) 0%, 
        rgba(8, 145, 178, 0.03) 50%, 
        var(--physique-ultra-light) 100%);
    position: relative;
}

/* Effets d'arrière-plan pour chaque monde */
.spiritual-atmosphere::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 176, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(230, 160, 0, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.psychic-atmosphere::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(190, 24, 93, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.physical-atmosphere::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 188, 212, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(8, 145, 178, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   LAYOUT & CONTAINERS
======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.grid-1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.section-block {
    margin: 4rem 0;
    padding: 2rem;
}

/* ========================================
   TYPOGRAPHY
======================================== */

/* Titres de sections */
.header-section-v1 {
    text-align: center;
    margin-bottom: 3rem;
}

.spiritual-atmosphere .header-section-v1 h2 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--spiritual-primary), var(--spiritual-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.psychic-atmosphere .header-section-v1 h2 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--psychique-primary), var(--psychique-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.physical-atmosphere .header-section-v1 h2 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--physique-primary), var(--physique-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.header-section-v1 .tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ========================================
   TRINITY CARDS
======================================== */
.trinity-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    margin-bottom: 2rem;
}

/* Bordures colorées pour chaque monde */
.spiritual-atmosphere .trinity-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--spiritual-primary), var(--spiritual-secondary), var(--spiritual-primary));
    opacity: 0.8;
}

.psychic-atmosphere .trinity-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--psychique-primary), var(--psychique-secondary), var(--psychique-primary));
    opacity: 0.8;
}

.physical-atmosphere .trinity-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--physique-primary), var(--physique-secondary), var(--physique-primary));
    opacity: 0.8;
}

/* Effets hover pour chaque monde */
.spiritual-atmosphere .trinity-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 40px rgba(255, 176, 0, 0.15),
        0 8px 20px rgba(255, 176, 0, 0.1);
    border-color: rgba(255, 176, 0, 0.2);
}

.psychic-atmosphere .trinity-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 40px rgba(233, 30, 99, 0.15),
        0 8px 20px rgba(233, 30, 99, 0.1);
    border-color: rgba(233, 30, 99, 0.2);
}

.physical-atmosphere .trinity-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 40px rgba(0, 188, 212, 0.15),
        0 8px 20px rgba(0, 188, 212, 0.1);
    border-color: rgba(0, 188, 212, 0.2);
}

/* Icônes colorées */
.trinity-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.spiritual-atmosphere .trinity-icon {
    background: linear-gradient(135deg, var(--spiritual-primary), var(--spiritual-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.psychic-atmosphere .trinity-icon {
    background: linear-gradient(135deg, var(--psychique-primary), var(--psychique-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.physical-atmosphere .trinity-icon {
    background: linear-gradient(135deg, var(--physique-primary), var(--physique-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trinity-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

/* Sous-titres colorés */
.trinity-subtitle {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spiritual-atmosphere .trinity-subtitle {
    color: var(--spiritual-primary);
}

.psychic-atmosphere .trinity-subtitle {
    color: var(--psychique-primary);
}

.physical-atmosphere .trinity-subtitle {
    color: var(--physique-primary);
}

/* ========================================
   CONCEPT SYNTHESIS
======================================== */
.concept-synthesis {
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.spiritual-atmosphere .concept-synthesis {
    background: linear-gradient(135deg, 
        rgba(255, 176, 0, 0.08) 0%, 
        rgba(230, 160, 0, 0.05) 100%);
}

.psychic-atmosphere .concept-synthesis {
    background: linear-gradient(135deg, 
        rgba(233, 30, 99, 0.08) 0%, 
        rgba(190, 24, 93, 0.05) 100%);
}

.physical-atmosphere .concept-synthesis {
    background: linear-gradient(135deg, 
        rgba(0, 188, 212, 0.08) 0%, 
        rgba(8, 145, 178, 0.05) 100%);
}

.concept-synthesis::before {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    opacity: 0.3;
}

.spiritual-atmosphere .concept-synthesis::before {
    content: '✨';
}

.psychic-atmosphere .concept-synthesis::before {
    content: '🧠';
}

.physical-atmosphere .concept-synthesis::before {
    content: '🌌';
}

/* ========================================
   TABLEAUX
======================================== */
.tableau-section {
    margin: 4rem 0;
}

.tableau-titre {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.spiritual-atmosphere .tableau-titre {
    color: var(--spiritual-primary);
}

.psychic-atmosphere .tableau-titre {
    color: var(--psychique-primary);
}

.physical-atmosphere .tableau-titre {
    color: var(--physique-primary);
}

.spiritual-tableau {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin: 2rem 0;
}

.spiritual-atmosphere .spiritual-tableau {
    box-shadow: 0 8px 25px rgba(255, 176, 0, 0.1);
}

.psychic-atmosphere .spiritual-tableau {
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.1);
}

.physical-atmosphere .spiritual-tableau {
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.1);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-family: Arial, sans-serif;
}

.header-row {
    color: white;
}

.spiritual-atmosphere .header-row {
    background: linear-gradient(135deg, var(--spiritual-primary), var(--spiritual-secondary));
}

.psychic-atmosphere .header-row {
    background: linear-gradient(135deg, var(--psychique-primary), var(--psychique-secondary));
}

.physical-atmosphere .header-row {
    background: linear-gradient(135deg, var(--physique-primary), var(--physique-secondary));
}

.header-cell {
    padding: 1rem;
    border: 2px solid #fff;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.numero-header {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.row-header {
    padding: 1rem;
    color: white;
    font-weight: 700;
    text-align: center;
    font-size: 1.1rem;
    vertical-align: middle;
}

/* Style pour les sous-titres dans les cellules d'en-tête - AJOUT QQOQCP */
.row-header small {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    display: block;
    margin-top: 0.25rem;
}

/* Classes pour les couleurs des trois mondes dans les tableaux */
.row-header-spirituel {
    border: 2px solid #FFB000;
    background: linear-gradient(135deg, #FFB000, #E6A000);
}

.row-header-psychique {
    border: 2px solid #e91e63;
    background: linear-gradient(135deg, #e91e63, #be185d);
}

.row-header-physique {
    border: 2px solid #00bcd4;
    background: linear-gradient(135deg, #00bcd4, #0891b2);
}

.cell {
    padding: 1rem;
    text-align: center;
    vertical-align: middle;
    min-height: 60px;
    font-size: 1.3rem;
}

.cell-spirituel {
    border: 2px solid #FFB000;
    background: rgba(255, 176, 0, 0.05);
}

.cell-psychique {
    border: 2px solid #e91e63;
    background: rgba(233, 30, 99, 0.05);
}

.cell-physique {
    border: 2px solid #00bcd4;
    background: rgba(0, 188, 212, 0.05);
}

.multiplication {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.multiplication-spirituel { color: #FFB000; }
.multiplication-psychique { color: #e91e63; }
.multiplication-physique { color: #00bcd4; }

.concept-principal {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.concept-description {
    font-weight: 300;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Style pour les notes de bas de tableau - AJOUT QQOQCP */
.tableau-section p {
    margin: 0;
    font-style: italic;
}

/* ========================================
   CORRESPONDANCE TABLES
======================================== */
.correspondance-table {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin: 2rem 0;
}

.spiritual-atmosphere .correspondance-table {
    box-shadow: 0 8px 25px rgba(255, 176, 0, 0.1);
}

.psychic-atmosphere .correspondance-table {
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.1);
}

.physical-atmosphere .correspondance-table {
    box-shadow: 0 8px 25px rgba(0, 188, 212, 0.1);
}

.correspondance-row {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr;
    gap: 0;
    border-bottom: 1px solid var(--gray-border);
}

.correspondance-row:last-child {
    border-bottom: none;
}

.correspondance-cell {
    padding: 1rem 1.5rem;
    border-right: 1px solid var(--gray-border);
    display: flex;
    align-items: center;
}

.correspondance-cell:last-child {
    border-right: none;
}

.correspondance-numero {
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 1rem;
}

.spiritual-atmosphere .correspondance-numero {
    background: linear-gradient(135deg, var(--spiritual-primary), var(--spiritual-secondary));
}

.psychic-atmosphere .correspondance-numero {
    background: linear-gradient(135deg, var(--psychique-primary), var(--psychique-secondary));
}

.physical-atmosphere .correspondance-numero {
    background: linear-gradient(135deg, var(--physique-primary), var(--physique-secondary));
}

/* ========================================
   BLOCKQUOTES
======================================== */
blockquote {
    background: var(--gray-light);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    line-height: 1.6;
    border-radius: 8px;
}

.spiritual-atmosphere blockquote {
    border-left: 4px solid var(--spiritual-primary);
}

.psychic-atmosphere blockquote {
    border-left: 4px solid var(--psychique-primary);
}

.physical-atmosphere blockquote {
    border-left: 4px solid var(--physique-primary);
}

blockquote cite {
    display: block;
    text-align: right;
    margin-top: 1rem;
    font-weight: bold;
    color: #6c757d;
}

/* ========================================
   HIGHLIGHT BOXES
======================================== */
.highlight-box {
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    font-weight: 600;
}

.spiritual-atmosphere .highlight-box {
    background: var(--spiritual-light);
    border: 1px solid rgba(255, 176, 0, 0.2);
}

.psychic-atmosphere .highlight-box {
    background: var(--psychique-light);
    border: 1px solid rgba(233, 30, 99, 0.2);
}

.physical-atmosphere .highlight-box {
    background: var(--physique-light);
    border: 1px solid rgba(0, 188, 212, 0.2);
}

/* ========================================
   BUTTONS & CTA
======================================== */
.cta-mini {
    display: inline-block;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.spiritual-atmosphere .cta-mini {
    background: var(--spiritual-primary);
}

.spiritual-atmosphere .cta-mini:hover {
    background: var(--spiritual-secondary);
}

.psychic-atmosphere .cta-mini {
    background: var(--psychique-primary);
}

.psychic-atmosphere .cta-mini:hover {
    background: var(--psychique-secondary);
}

.physical-atmosphere .cta-mini {
    background: var(--physique-primary);
}

.physical-atmosphere .cta-mini:hover {
    background: var(--physique-secondary);
}

/* Amélioration des titres dans les trinity cards pour QQOQCP - AJOUT */
.trinity-card h4.trinity-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* ========================================
   FAQ SECTIONS
======================================== */
.faq-section-moderne {
    margin: 4rem 0;
    padding: 2rem;
    border-radius: 16px;
}

.spiritual-atmosphere .faq-section-moderne {
    background: var(--spiritual-ultra-light);
}

.psychic-atmosphere .faq-section-moderne {
    background: var(--psychique-ultra-light);
}

.physical-atmosphere .faq-section-moderne {
    background: var(--physique-ultra-light);
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.spiritual-atmosphere .faq-header h2 {
    color: var(--spiritual-primary);
}

.psychic-atmosphere .faq-header h2 {
    color: var(--psychique-primary);
}

.physical-atmosphere .faq-header h2 {
    color: var(--physique-primary);
}

.faq-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item-moderne {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.spiritual-atmosphere .faq-item-moderne {
    box-shadow: 0 4px 15px rgba(255, 176, 0, 0.1);
}

.psychic-atmosphere .faq-item-moderne {
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.1);
}

.physical-atmosphere .faq-item-moderne {
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.1);
}

.faq-item-moderne .faq-question {
    padding: 1.5rem;
    color: white;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spiritual-atmosphere .faq-item-moderne .faq-question {
    background: linear-gradient(135deg, var(--spiritual-primary), var(--spiritual-secondary));
}

.psychic-atmosphere .faq-item-moderne .faq-question {
    background: linear-gradient(135deg, var(--psychique-primary), var(--psychique-secondary));
}

.physical-atmosphere .faq-item-moderne .faq-question {
    background: linear-gradient(135deg, var(--physique-primary), var(--physique-secondary));
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
}

.faq-answer {
    padding: 1.5rem;
    display: none;
}

.faq-answer.active {
    display: block;
}

.faq-example {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
}

.spiritual-atmosphere .faq-example {
    background: rgba(255, 176, 0, 0.05);
    border-left: 4px solid var(--spiritual-primary);
}

.psychic-atmosphere .faq-example {
    background: rgba(233, 30, 99, 0.05);
    border-left: 4px solid var(--psychique-primary);
}

.physical-atmosphere .faq-example {
    background: rgba(0, 188, 212, 0.05);
    border-left: 4px solid var(--physique-primary);
}

.faq-highlight {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 8px;
    text-align: center;
}

.spiritual-atmosphere .faq-highlight {
    background: var(--spiritual-light);
}

.psychic-atmosphere .faq-highlight {
    background: var(--psychique-light);
}

.physical-atmosphere .faq-highlight {
    background: var(--physique-light);
}

/* ========================================
   TABLE OF CONTENTS
======================================== */
.table-of-contents {
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.spiritual-atmosphere .table-of-contents {
    background: rgba(255, 176, 0, 0.05);
    border-left: 4px solid var(--spiritual-primary);
}

.psychic-atmosphere .table-of-contents {
    background: rgba(233, 30, 99, 0.05);
    border-left: 4px solid var(--psychique-primary);
}

.physical-atmosphere .table-of-contents {
    background: rgba(0, 188, 212, 0.05);
    border-left: 4px solid var(--physique-primary);
}

.table-of-contents h3 {
    margin-bottom: 1rem;
}

.spiritual-atmosphere .table-of-contents h3 {
    color: var(--spiritual-primary);
}

.psychic-atmosphere .table-of-contents h3 {
    color: var(--psychique-primary);
}

.physical-atmosphere .table-of-contents h3 {
    color: var(--physique-primary);
}

/* ========================================
   IMAGES & MEDIA
======================================== */
            img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
.image-zen {
    text-align: center;
    margin: 1.5rem 0;
}

.image-zen img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.image-zen-caption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.three-dimensions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.dimension {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.5);
    border-radius: 8px;
}

.dimension-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.content-enhanced {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.headline-center {
    text-align: center;
}

.headline-center h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.spiritual-atmosphere .headline-center h2 {
    color: var(--spiritual-primary);
}

.psychic-atmosphere .headline-center h2 {
    color: var(--psychique-primary);
}

.physical-atmosphere .headline-center h2 {
    color: var(--physique-primary);
}


