/* ============================================
   ASSETS/CSS/STYLE.CSS - VERSION CORRIGÉE
   Site Officiel Maître Jean-Chrysostome BLESSY
   ============================================ */

/* ============================================
   1. VARIABLES & RESET
   ============================================ */

:root {
    /* Couleurs principales */
    --primary-color: #0A1C3A;
    --secondary-color: #C9A03D;
    --primary-rgb: 10, 28, 58;
    --secondary-rgb: 201, 160, 61;
    
    /* Nuances */
    --primary-dark: #06122A;
    --primary-light: #142C5A;
    --secondary-dark: #B88A2E;
    --secondary-light: #E8D5A3;
    
    /* Neutres */
    --white: #FFFFFF;
    --black: #111111;
    --gray-100: #F8F9FA;
    --gray-200: #F0F2F5;
    --gray-300: #E4E6E9;
    --gray-400: #CCCFD3;
    --gray-500: #9A9FA5;
    --gray-600: #6B7280;
    --gray-700: #4B5563;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* États */
    --danger: #DC3545;
    --success: #28A745;
    --warning: #FFC107;
    --info: #17A2B8;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Layout */
    --border-radius-sm: 0.375rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;
    
    /* Espacements */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* ============================================
   2. COMPOSANTS DE BASE (Buttons, Cards, etc.)
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    border-radius: var(--border-radius-xl);
    transition: all var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* ============================================
   3. TOP BAR
   ============================================ */

.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.625rem 0;
    font-size: 0.875rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.top-bar-left {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.info-item i {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.info-item a {
    color: var(--white);
}

.info-item a:hover {
    color: var(--secondary-color);
}

.top-bar-right .social-links {
    display: flex;
    gap: var(--spacing-md);
}

.top-bar-right .social-links a {
    color: var(--white);
    transition: all var(--transition-fast);
}

.top-bar-right .social-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* ============================================
   4. MAIN HEADER & NAVIGATION
   ============================================ */

.main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all var(--transition);
}

.main-header.scrolled {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-xl);
}

.logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
}

.logo-img {
    max-height: 60px;
    width: auto;
}

.logo-text h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-text p {
    font-size: 0.75rem;
    margin-bottom: 0;
    color: var(--gray-600);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-menu li a {
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 500;
    transition: all var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--secondary-color);
}

.admin-nav-link {
    margin-left: var(--spacing-md);
}

.btn-admin {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-xl);
    font-weight: 600;
    transition: all var(--transition);
}

.btn-admin:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* ============================================
   5. BREAKING NEWS
   ============================================ */

.breaking-news {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breaking-news .container {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.breaking-label {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.375rem 1rem;
    border-radius: var(--border-radius-xl);
    font-weight: 700;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    white-space: nowrap;
}

.breaking-wrapper {
    flex: 1;
    overflow: hidden;
}

.breaking-slider {
    display: flex;
    animation: scrollBreaking 25s linear infinite;
    white-space: nowrap;
}

.breaking-item {
    padding: 0 var(--spacing-xl);
}

.breaking-item a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

@keyframes scrollBreaking {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   6. HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: var(--spacing-4xl) 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><path fill="%23C9A03D" d="M500,100 L600,300 L800,300 L650,450 L700,650 L500,550 L300,650 L350,450 L200,300 L400,300 Z"/></svg>') repeat;
    background-size: 60px;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    margin-bottom: var(--spacing-lg);
    width: fit-content;
}

.hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
}

.hero h1 span {
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-2xl);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.hero-image img {
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.hero-wave {
    margin-top: var(--spacing-3xl);
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: auto;
}

/* ============================================
   7. SECTION HEADER (UNIFIED)
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 3px;
}

.section-title .highlight {
    color: var(--secondary-color);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(var(--secondary-rgb), 0.2);
    border-radius: 4px;
    z-index: -1;
}

.section-description {
    color: var(--gray-600);
    max-width: 600px;
    margin: var(--spacing-md) auto 0;
}

/* ============================================
   8. VALUES SECTION
   ============================================ */

.values-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(var(--secondary-rgb), 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.value-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.value-number {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(var(--secondary-rgb), 0.1);
    line-height: 1;
    transition: all 0.3s ease;
}

.value-card:hover .value-number {
    color: rgba(var(--secondary-rgb), 0.2);
    transform: scale(1.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px -5px rgba(var(--secondary-rgb), 0.3);
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.value-line {
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
    margin: 0 auto;
    transition: width 0.3s ease;
}

.value-card:hover .value-line {
    width: 60px;
}

/* ============================================
   9. ACTUALITÉS SECTION
   ============================================ */

.actualites {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.news-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.news-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image-wrapper img {
    transform: scale(1.05);
}

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(var(--primary-rgb), 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.news-card:hover .news-overlay {
    opacity: 1;
}

.news-link {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.news-link i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.news-card:hover .news-link {
    transform: scale(1);
}

.card-content {
    padding: var(--spacing-lg);
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.category-badge {
    background: rgba(var(--secondary-rgb), 0.1);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-xl);
    font-size: 0.7rem;
    font-weight: 600;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.card-content p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: var(--spacing-md);
}

.text-center {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* ============================================
   10. ÉVÉNEMENTS SECTION
   ============================================ */

.events-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

.events-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    display: flex;
    gap: var(--spacing-xl);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.event-card::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    z-index: 0;
}

.event-card:hover::after {
    width: 100%;
}

.event-card > * {
    position: relative;
    z-index: 1;
}

.event-card:hover {
    transform: translateX(10px);
}

.event-date-box {
    text-align: center;
    min-width: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
}

.event-day {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.event-month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-year {
    display: block;
    font-size: 0.7rem;
    opacity: 0.8;
}

.event-badge {
    display: inline-block;
    background: rgba(var(--secondary-rgb), 0.1);
    color: var(--secondary-color);
    padding: 0.2rem 0.6rem;
    border-radius: var(--border-radius);
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.event-details h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

.event-meta {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    font-size: 0.85rem;
    color: var(--gray-600);
    flex-wrap: wrap;
}

.event-meta i {
    color: var(--secondary-color);
    margin-right: 0.25rem;
}

.btn-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    transition: gap var(--transition);
}

.btn-link:hover {
    gap: var(--spacing-md);
}

/* ============================================
   11. STATISTIQUES SECTION
   ============================================ */

.stats-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><path fill="%23C9A03D" d="M500,100 L600,300 L800,300 L650,450 L700,650 L500,550 L300,650 L350,450 L200,300 L400,300 Z"/></svg>') repeat;
    background-size: 60px;
    pointer-events: none;
}

.stats-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.stats-header .section-subtitle {
    color: var(--secondary-color);
}

.stats-header .section-title {
    color: var(--white);
}

.stats-header .section-description {
    color: rgba(255,255,255,0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary-color);
}

.stat-card-inner {
    text-align: center;
}

.stat-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.stat-bg-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(var(--secondary-rgb), 0.1);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    70% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: var(--spacing-sm);
}

.stat-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.stat-desc {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
}

.stats-footer {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.stats-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-style: italic;
}

/* ============================================
   12. NEWSLETTER
   ============================================ */

.newsletter-section {
    padding: var(--spacing-4xl) 0;
    background: var(--white);
}

.newsletter-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-3xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.newsletter-content {
    color: var(--white);
}

.newsletter-content i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.newsletter-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.newsletter-content p {
    opacity: 0.8;
    margin-bottom: 0;
}

.newsletter-form {
    flex: 1;
    min-width: 300px;
}

.form-group {
    display: flex;
    gap: var(--spacing-sm);
}

.newsletter-form input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-xl);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--secondary-color);
}

/* ============================================
   13. FOOTER
   ============================================ */

.main-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--spacing-4xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

.footer-description {
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-links,
.footer-contact,
.footer-news {
    list-style: none;
}

.footer-links li,
.footer-news li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a,
.footer-news a {
    color: var(--gray-400);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-links a:hover,
.footer-news a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.footer-newsletter form {
    display: flex;
    margin-top: var(--spacing-md);
}

.footer-newsletter input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.footer-newsletter button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 0 1rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: background var(--transition);
}

.footer-newsletter button:hover {
    background: var(--secondary-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal a {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--secondary-color);
}

/* ============================================
   14. DROPDOWN MENU
   ============================================ */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 100;
    padding: 0.5rem 0;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 0.625rem 1.25rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--gray-700);
}

.dropdown-menu li a:hover {
    background: var(--secondary-color);
    color: var(--white);
    padding-left: 1.75rem;
}

/* ============================================
   15. BACK TO TOP & ADMIN TOOLBAR
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    background: var(--primary-color);
    color: var(--white);
}

.admin-toolbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 0;
    z-index: 1000;
    font-size: 0.875rem;
}

.admin-toolbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.admin-toolbar a {
    color: var(--white);
    text-decoration: none;
    margin-left: var(--spacing-md);
    padding: 0.375rem 0.75rem;
    border-radius: var(--border-radius);
    transition: all var(--transition);
}

.admin-toolbar a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* ============================================
   16. MOBILE MENU
   ============================================ */

.mobile-menu-btn {
    display: none;
    width: 28px;
    height: 20px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2001;
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition);
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-btn span:nth-child(3) { bottom: 0; }

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* ============================================
   17. RESPONSIVE DESIGN (UNIFIED)
   ============================================ */

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--primary-color);
        padding: 5rem 1.5rem 2rem;
        transition: right var(--transition);
        z-index: 2000;
        overflow-y: auto;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-menu li a {
        color: var(--white) !important;
        padding: 0.875rem 0;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        background: rgba(255,255,255,0.1);
        box-shadow: none;
        display: none;
        margin-left: 1rem;
    }
    
    .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu li a {
        color: rgba(255,255,255,0.8) !important;
    }
    
    .admin-nav-link {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .event-date-box {
        align-self: center;
    }
    
    .event-meta {
        justify-content: center;
    }
    
    .form-group {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .top-bar-left {
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .values-grid,
    .news-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .newsletter-wrapper {
        padding: var(--spacing-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .breaking-news .container {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .event-date-box {
        min-width: 70px;
        padding: var(--spacing-sm);
    }
    
    .event-day {
        font-size: 1.5rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: var(--spacing-xs);
    }
}

/* ============================================
   18. UTILITAIRES & ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-300);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media print {
    .top-bar,
    .main-nav,
    .breaking-news,
    .newsletter-section,
    .footer-social,
    .back-to-top,
    .admin-toolbar {
        display: none;
    }
    
    body {
        color: black;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* ============================================
   19. PAGE BIOGRAPHIE
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0 40px;
}

.breadcrumb {
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb i {
    margin: 0 8px;
    font-size: 0.7rem;
}

.breadcrumb span {
    color: var(--secondary-color);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.biography-section {
    padding: var(--spacing-4xl) 0;
}

.biography-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--spacing-3xl);
}

.bio-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow);
}

.bio-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.bio-header:first-of-type {
    margin-top: 0;
}

.bio-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bio-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.bio-card h2 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.bio-card p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-left: 60px;
}

.bio-sidebar .bio-image-card {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    margin-bottom: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
}

.bio-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

.bio-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: var(--spacing-lg);
    text-align: center;
}

.bio-image-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.info-card, .contact-card, .social-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow);
}

.info-card h3, .contact-card h3, .social-card h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.info-list {
    list-style: none;
}

.info-list li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.9rem;
}

.info-list li strong {
    color: var(--primary-color);
    width: 100px;
    display: inline-block;
}

.contact-card p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
}

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

.social-links-bio {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.social-links-bio a {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--primary-color);
}

.social-links-bio a:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Timeline */
.timeline-section {
    padding: var(--spacing-4xl) 0;
    background: var(--gray-100);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), var(--primary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-2xl);
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: var(--spacing-xl);
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: var(--spacing-xl);
}

.timeline-dot {
    position: absolute;
    top: 0;
    right: -9px;
    width: 18px;
    height: 18px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -9px;
    right: auto;
}

.timeline-date {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.timeline-content {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

/* Responsive Biographie */
@media (max-width: 992px) {
    .biography-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 50px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-dot {
        left: 11px !important;
        right: auto !important;
    }
    
    .bio-card p {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .bio-header {
        flex-direction: column;
        text-align: center;
    }
    
    .bio-card h2 {
        text-align: center;
    }
}

/* ============================================
   20. BLOG & ARTICLES
   ============================================ */

.blog-section {
    padding: var(--spacing-4xl) 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--spacing-2xl);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--spacing-xl);
}

.blog-card {
    background: var(--white);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: var(--border-radius-xl);
    font-size: 0.7rem;
    font-weight: 600;
}

.blog-content {
    padding: var(--spacing-lg);
}

.blog-meta {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 0.8rem;
    color: var(--gray-500);
}

.blog-meta i {
    margin-right: 4px;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.blog-content p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    font-size: 0.9rem;
}

/* Sidebar */
.blog-sidebar .sidebar-widget {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow);
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.search-form {
    display: flex;
    gap: var(--spacing-sm);
}

.search-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.search-form button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 0 var(--spacing-lg);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background 0.3s;
}

.search-form button:hover {
    background: var(--secondary-dark);
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: var(--spacing-sm);
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    color: var(--gray-600);
    transition: color 0.3s;
}

.categories-list li a:hover {
    color: var(--secondary-color);
}

.recent-post {
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--gray-200);
}

.recent-post:last-child {
    border-bottom: none;
}

.recent-post a h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.recent-post a span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}

.newsletter-widget h3 {
    color: var(--white);
    border-bottom-color: var(--secondary-color);
}

.newsletter-widget p {
    font-size: 0.85rem;
    margin-bottom: var(--spacing-md);
}

.sidebar-newsletter {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.sidebar-newsletter input {
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
}

.sidebar-newsletter button {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: none;
    padding: 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-3xl);
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Article Page */
.article-header {
    padding: 60px 0 40px;
    color: var(--white);
}

.article-category {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 4px 16px;
    border-radius: var(--border-radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.article-header h1 {
    font-size: 2.5rem;
    max-width: 800px;
}

.article-meta {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    font-size: 0.85rem;
    opacity: 0.8;
}

.article-section {
    padding: var(--spacing-4xl) 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--spacing-2xl);
}

.article-featured-image {
    margin-bottom: var(--spacing-2xl);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.article-content h2,
.article-content h3 {
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.article-content img {
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    margin: var(--spacing-lg) 0;
}

.article-share {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-200);
}

.article-share span {
    font-weight: 600;
}

.article-share a {
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.article-share a:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.author-widget {
    text-align: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-md);
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-widget h3 {
    font-size: 1.1rem;
    border-bottom: none;
}

.author-widget p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.author-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.author-social a {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.similar-section {
    padding: var(--spacing-4xl) 0;
    background: var(--gray-100);
}

.similar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.similar-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}

.similar-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.similar-image {
    height: 150px;
    overflow: hidden;
}

.similar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.similar-card h4 {
    padding: var(--spacing-md);
    font-size: 1rem;
    margin-bottom: 0;
}

.similar-card span {
    display: block;
    padding: 0 var(--spacing-md) var(--spacing-md);
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Past Events */
.past-events-section {
    padding: var(--spacing-4xl) 0;
    background: var(--gray-100);
}

.past-events-grid {
    display: grid;
    gap: var(--spacing-md);
    max-width: 600px;
    margin: 0 auto;
}

.past-event-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    box-shadow: var(--shadow);
}

.past-event-date {
    background: var(--gray-200);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    font-weight: 600;
    color: var(--primary-color);
}

.past-event-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.past-event-info p {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 0;
}

.no-results {
    text-align: center;
    padding: var(--spacing-4xl);
}

.no-results i {
    font-size: 4rem;
    color: var(--gray-400);
    margin-bottom: var(--spacing-md);
}

.add-calendar {
    margin-top: var(--spacing-md);
    cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-meta {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}