/*
 * ADEQUATION PACA - Style Moderne avec Cards
 * Style inspiré de la section campagne novembre
 * Responsive et lisible sur tous les écrans
 */

/* =======================
   VARIABLES GLOBALES
   ======================= */
:root {
    /* Couleurs principales */
    --primary-color: #6c5ce7;
    --primary-dark: #5f4fd1;
    --secondary-color: #28a745;
    --text-dark: #2c3e50;
    --text-medium: #546e7a;
    --text-light: #737e6c;

    /* Backgrounds */
    --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-green-light: #f0f8f4;

    /* Ombres */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);

    /* Polices */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;

    /* Espacements */
    --spacing-xs: 10px;
    --spacing-sm: 15px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 50px;
}

/* =======================
   CONTENEUR GLOBAL
   ======================= */
.content-section {
    background: var(--bg-gradient);
    padding: 60px 20px;
    margin: 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* =======================
   HEADER DE SECTION
   ======================= */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-emoji {
    font-size: 64px;
    display: block;
    margin-bottom: var(--spacing-md);
    animation: float 3s ease-in-out infinite;
}

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

.section-title {
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-medium);
    font-style: italic;
}

/* =======================
   BOXES D'INTRODUCTION
   ======================= */
.intro-box {
    background: var(--bg-white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
}

.intro-box.highlight {
    border-left-color: var(--secondary-color);
    background: var(--bg-green-light);
}

.intro-box-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.intro-box.highlight .intro-box-title {
    color: #155724;
}

.intro-box-text {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #333333;
}

.intro-box-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* =======================
   GRID DE CARDS
   ======================= */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: var(--spacing-xl);
}

/* =======================
   CARDS MODERNES
   ======================= */
.content-card {
    background: var(--bg-white);
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: var(--spacing-lg);
    display: flex;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.content-card-icon {
    font-size: 48px;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    flex-shrink: 0;
}

/* Couleurs des icônes par type */
.icon-hypnose {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.icon-pnl {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.icon-magnetisme {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.icon-reiki {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.icon-formation {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.icon-application {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.content-card-body {
    flex: 1;
}

.content-card-title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.content-card-desc {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0;
}

/* =======================
   CONTENU TEXTUEL
   ======================= */
.therapy-content {
    background: var(--bg-white);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    line-height: 1.8;
}

.therapy-content h2,
.therapy-content h3,
.therapy-content h4 {
    font-family: var(--font-body);
    color: var(--text-dark);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.therapy-content h2 {
    font-size: 24px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: var(--spacing-xs);
}

.therapy-content h3 {
    font-size: 20px;
    color: var(--primary-color);
}

.therapy-content p {
    margin-bottom: var(--spacing-sm);
    color: #333333;
}

.therapy-content strong {
    color: var(--text-dark);
}

.therapy-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: var(--spacing-md) 0;
}

/* =======================
   CALL TO ACTION
   ======================= */
.cta-section {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    margin-top: var(--spacing-xl);
}

.cta-title {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: var(--bg-white);
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: #ffffff;
    transform: translateY(-3px);
}

/* =======================
   RESPONSIVE DESIGN
   ======================= */

/* Tablets */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .content-section {
        padding: 40px 15px;
    }

    .section-emoji {
        font-size: 48px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .intro-box {
        padding: var(--spacing-md);
    }

    .content-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--spacing-md);
    }

    .content-card-icon {
        margin-bottom: var(--spacing-sm);
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .intro-box-title {
        font-size: 18px;
    }

    .intro-box-text {
        font-size: 14px;
    }

    .content-card-title {
        font-size: 16px;
    }

    .content-card-desc {
        font-size: 14px;
    }
}
