/* ========== RESET ET VARIABLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Palette Orange moderne */
    --primary-orange: #E55A2B;
    --primary-orange-light: #E55A2B;
    --primary-orange-dark: #E55A2B;
    --secondary-orange: #E55A2B;
    --accent-orange: #E55A2B;
    
    /* Couleurs neutres */
    --white: #FFFFFF;
    --off-white: #FEFEFE;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --text-dark: #1A1A1A;
    --text-medium: #4A5568;
    --text-light: #718096;
    
    /* Glassmorphisme */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --glass-backdrop: blur(20px);
    
    /* Shadows modernes */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-orange: 0 10px 30px rgba(255, 107, 53, 0.3);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions - SUPPRIMÉES TOUTES LES ANIMATIONS */
    --transition-fast: none;
    --transition-normal: none;
    --transition-slow: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    scroll-behavior: smooth;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--light-gray) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== NAVIGATION MODERNE FIXE ========== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo i {
    margin-right: 0.75rem;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

.login-btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-orange);
}

.login-btn:hover {
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    background: linear-gradient(135deg, var(--primary-orange-light), var(--accent-orange));
}

/* Menu hamburger pour mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    margin: 2px 0;
    border-radius: 2px;
}

/* ========== HERO SECTION FIXE ========== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, 
        var(--off-white) 0%, 
        rgba(255, 107, 53, 0.05) 25%,
        rgba(255, 179, 136, 0.1) 75%,
        var(--light-gray) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transform: rotate(12deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== BUTTONS FIXES ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-outline {
    background: var(--glass-bg);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    backdrop-filter: var(--glass-backdrop);
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: white;
    box-shadow: var(--shadow-orange);
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* ========== STATS SECTION ORIGINALE FIXE ========== */
.stats-section {
    padding: 4rem 0;
    background: transparent;
}

.stats-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 3rem 2rem;
    border: 1px solid var(--medium-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.stat-item::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary-orange), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-orange);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 600;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ========== SECTION HEADERS FIXES ========== */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== BARRE DE RECHERCHE GLASSMORPHISME FIXE ========== */
.search-bar-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 100;
}

.search-bar {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.search-input-container {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 0.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.search-input-container:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    background: rgba(255, 255, 255, 0.4);
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    padding: 1rem 1rem 1rem 3.5rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.search-input::placeholder {
    color: var(--text-light);
    font-weight: 400;
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-orange);
    font-size: 1.3rem;
    z-index: 3;
}

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-orange);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.search-clear.visible {
    display: flex;
}

.search-shortcut {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 3;
}

/* ========== DROPDOWN DES RÉSULTATS AVEC IMAGES FIXE ========== */
.search-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--medium-gray);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1001;
    backdrop-filter: blur(20px);
}

.search-dropdown.active {
    display: block;
}

.search-dropdown-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
    background: var(--light-gray);
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-dropdown-header i {
    color: var(--primary-orange);
}

.search-result-group {
    margin-bottom: 0.5rem;
}

.search-result-group:last-child {
    margin-bottom: 0;
}

.search-result-category {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-result-item {
    padding: 1rem 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(255, 107, 53, 0.05);
}

.search-result-item.highlighted {
    background: rgba(255, 107, 53, 0.1);
    border-left: 3px solid var(--primary-orange);
}

.search-result-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
    overflow: hidden;
}

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

.search-result-info {
    flex: 1;
}

.search-result-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.search-result-category-tag {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.search-result-responsable {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin-top: 0.25rem;
}

.search-no-results {
    padding: 2rem;
    text-align: center;
    color: var(--text-light);
}

.search-no-results i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

/* ========== FILTRES STYLE CHATGPT/IA FIXES ========== */
.categories-filter {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-radius: var(--radius-xl);
    border: 1px solid var(--glass-border);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-lg);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--medium-gray);
    background: var(--white);
    color: var(--text-medium);
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    box-shadow: var(--shadow-sm);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-orange);
}

.filter-btn i {
    font-size: 0.9rem;
}

.filter-count {
    background: var(--primary-orange-light);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    min-width: 20px;
    text-align: center;
}

.filter-btn:hover .filter-count {
    background: white;
    color: var(--primary-orange);
}

.filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* ========== MOUVEMENTS GRID AVEC PAGINATION FIXE ========== */
.mouvements-container {
    position: relative;
}

.mouvements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.mouvement-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--medium-gray);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mouvement-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-orange);
}

.card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light-gray), var(--medium-gray));
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(252, 81, 19, 0.95), 
        rgba(177, 73, 4, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
}

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

.card-overlay .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    min-width: 140px;
    text-align: center;
}

.card-overlay .btn-outline {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.card-overlay .btn-outline:hover {
    background: white;
    color: var(--primary-orange);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-overlay .btn-primary {
    background: white;
    color: var(--primary-orange);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-overlay .btn-primary:hover {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-full);
    width: fit-content;
}

.card-category i {
    font-size: 0.8rem;
}

.card-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    flex-shrink: 0;
}

.responsable {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.responsable i {
    color: var(--primary-orange);
    width: 16px;
}

.description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
}

/* ========== BOUTON "VOIR PLUS" MODERNE FIXE ========== */
.voir-plus-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.btn-voir-plus {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.btn-voir-plus.show {
    display: inline-flex;
}

.btn-voir-plus:hover {
    background: var(--primary-orange);
    color: white;
    box-shadow: var(--shadow-orange);
}

/* ========== SECTION ACTUALITÉS DE L'ÉGLISE FIXE ========== */
.actualites-eglise-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.03) 0%,
        var(--white) 30%,
        rgba(255, 179, 136, 0.05) 100%);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.actualites-eglise-header {
    text-align: center;
    margin-bottom: 4rem;
}

.actualites-eglise-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.actualites-eglise-header p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.tendances-grid {
    display: grid !important;
    grid-template-columns: 1fr 2fr !important;
    gap: 3rem !important;
    margin-bottom: 4rem !important;
    width: 100% !important;
}

.tendances-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    border: 1px solid var(--medium-gray);
    height: fit-content;
    position: sticky;
    top: 120px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.tendances-sidebar h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tendances-sidebar h3 i {
    color: var(--primary-orange);
}

.tendance-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    cursor: pointer;
}

.tendance-item:hover {
    background: rgba(255, 107, 53, 0.05);
}

.tendance-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tendance-info h4 {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tendance-info p {
    color: var(--text-light);
    font-size: 0.8rem;
}

.actualites-eglise-main {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.actualite-eglise-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--medium-gray);
    overflow: hidden;
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.actualite-eglise-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.actualite-eglise-card.featured {
    border-left: 5px solid var(--primary-orange);
    background: linear-gradient(135deg, var(--white), rgba(255, 107, 53, 0.02));
}

.actualite-eglise-header-card {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--medium-gray);
    display: block !important;
}

.actualite-eglise-meta {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 1rem;
}

.actualite-eglise-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.actualite-eglise-badge {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.actualite-eglise-title {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.actualite-eglise-content {
    padding: 1rem 2rem 2rem;
    display: block !important;
}

.actualite-eglise-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.actualite-eglise-actions {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

.btn-lire-plus {
    background: none;
    color: var(--primary-orange);
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
}

.btn-lire-plus:hover {
    color: var(--primary-orange-dark);
}

.actualite-eglise-stats {
    display: flex;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.actualite-eglise-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ========== SECTION TABLEAU D'AFFICHAGE FIXE ========== */
.tableau-affichage-section {
    padding: 5rem 0;
    background: var(--white);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.tableau-container {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-orange);
    overflow: hidden;
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.tableau-header {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
    padding: 2rem;
    text-align: center;
    position: relative;
}

.tableau-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.tableau-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.tableau-content {
    padding: 0;
    display: block !important;
    width: 100% !important;
}

.annonce-item {
    padding: 2rem;
    border-bottom: 2px dashed var(--medium-gray);
    position: relative;
    display: block !important;
    width: 100% !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.annonce-item:last-child {
    border-bottom: none;
}

.annonce-item:hover {
    background: rgba(255, 107, 53, 0.02);
}

.annonce-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    margin-bottom: 1rem;
    gap: 1rem;
}

.annonce-type {
    background: var(--primary-orange);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.annonce-type.urgent {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

.annonce-type.info {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.annonce-date {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.annonce-title {
    color: var(--text-dark);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.annonce-content {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.annonce-footer {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 1rem;
    border-top: 1px solid var(--medium-gray);
}

.annonce-auteur {
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.annonce-actions {
    display: flex !important;
    gap: 0.5rem !important;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: var(--light-gray);
    color: var(--text-medium);
}

.btn-icon:hover {
    background: var(--primary-orange);
    color: white;
}

.tableau-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.tableau-empty i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

/* ========== SECTION ACTUALITÉS MOUVEMENTS FIXE ========== */
.actualites-section {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.02) 0%,
        transparent 50%,
        rgba(255, 179, 136, 0.05) 100%);
}

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

.actualite-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.actualite-card:hover {
    box-shadow: var(--shadow-xl);
    background: rgba(255, 255, 255, 0.4);
}

.actualite-header {
    padding: 1.5rem 1.5rem 0;
}

.actualite-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.type {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.type-paroisse {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
}

.type-programme {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
}

.actualite-content {
    padding: 0 1.5rem 1.5rem;
}

.actualite-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.actualite-content p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-text {
    background: none;
    color: var(--primary-orange);
    padding: 0.5rem 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.btn-text:hover {
    color: var(--primary-orange-dark);
}

/* ========== SECTION INSCRIPTION FIXE ========== */
.inscription-section {
    background: var(--white);
}

.inscription-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.inscription-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.inscription-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
}

.step:hover {
    background: rgba(255, 255, 255, 0.4);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: var(--shadow-orange);
}

.step-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.inscription-form-container {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.inscription-form h3 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ========== FORMS FIXES ========== */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.form-group label i {
    margin-right: 0.5rem;
    color: var(--primary-orange);
    width: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* ========== FOOTER FIXE ========== */
.footer {
    background: linear-gradient(135deg, var(--text-dark), #2d3748);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.footer-section h4 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-section ul li a i {
    margin-right: 0.5rem;
    width: 16px;
    color: var(--accent-orange);
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4A5568;
    color: #ccc;
}

/* ========== MODALES FIXES ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: var(--text-light);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
}

.close:hover {
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.1);
}

/* ========== MODAL INSCRIPTION AMÉLIORÉE ========== */
.modal-inscription {
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.modal-header i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    display: block;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.inscription-modal-form {
    padding: 0;
}

/* ========== BARRE DE RECHERCHE GLASSMORPHISME AMÉLIORÉE ========== */
.search-input-container {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    padding: 0.5rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow: hidden;
    position: relative;
}

.search-input-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 107, 53, 0.1) 100%);
    z-index: -1;
}

.search-input-container:focus-within {
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 
        0 0 0 4px rgba(255, 107, 53, 0.1),
        0 8px 32px rgba(255, 107, 53, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.25);
}

.search-input-container:focus-within::before {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 107, 53, 0.15) 100%);
}

.search-input {
    background: transparent;
    color: var(--text-dark);
    font-weight: 500;
}

.search-input::placeholder {
    color: rgba(74, 85, 104, 0.8);
}

.search-icon {
    color: var(--primary-orange);
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.3));
}

.search-clear {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.search-shortcut {
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
    border: 1px solid rgba(255, 107, 53, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 700;
}

/* ========== DROPDOWN RECHERCHE GLASSMORPHISME ========== */
.search-dropdown {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.search-dropdown-header {
    background: rgba(255, 107, 53, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.search-result-item:hover {
    background: rgba(255, 107, 53, 0.08);
    backdrop-filter: blur(10px);
}

/* ========== TABLEAU D'AFFICHAGE MODERNISÉ ========== */
.tableau-container {
    background: linear-gradient(135deg, var(--white), var(--light-gray));
    border: none;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.tableau-header {
    background: linear-gradient(135deg, 
        var(--primary-orange), 
        var(--primary-orange-light),
        var(--accent-orange));
    position: relative;
    overflow: hidden;
}

.tableau-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.tableau-header h2,
.tableau-header p {
    position: relative;
    z-index: 2;
}

.tableau-header h2 {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 900;
}

.annonce-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.annonce-item:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

.annonce-item::before {
    background: linear-gradient(to bottom, 
        var(--primary-orange), 
        var(--primary-orange-light));
    width: 6px;
    border-radius: 0 3px 3px 0;
    box-shadow: 2px 0 8px rgba(255, 107, 53, 0.3);
}

.annonce-type {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.annonce-type.urgent {
    background: linear-gradient(135deg, #ff4a03, #ee1f04);
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    animation: pulseGlow 2s infinite;
}

.annonce-type.info {
    background: linear-gradient(135deg, #3742fa, #2f3542);
    box-shadow: 0 4px 12px rgba(55, 66, 250, 0.3);
}

.annonce-title {
    background: linear-gradient(135deg, var(--text-dark), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-icon:hover {
    background: var(--primary-orange);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* ========== PAGINATION ANNONCES ========== */
.annonces-pagination-info {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.annonces-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pagination-btn {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: var(--primary-orange);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-weight: 500;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-pages {
    display: flex;
    gap: 0.5rem;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-medium);
    cursor: pointer;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.page-btn.active {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.page-btn:hover:not(.active) {
    background: rgba(255, 255, 255, 0.2);
}


/* Mobile responsive */
@media (max-width: 768px) {
    .annonces-pagination-info {
        position: static;
        transform: none;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .annonces-pagination {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-pages {
        order: -1;
    }
}

/* ========== ANIMATIONS SUBTILES ========== */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(255, 71, 87, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.6);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.tableau-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
    z-index: 1;
}

/* ========== BOUTONS HERO AMÉLIORÉS ========== */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    box-shadow: 
        0 8px 25px rgba(255, 107, 53, 0.3),
        0 3px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
    background: var(--primary-orange);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* ========== RESPONSIVE DESIGN FIXE ========== */
@media (max-width: 1200px) {
    .mouvements-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .categories-filter {
        max-width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .categories-filter::-webkit-scrollbar {
        display: none;
    }
    
    .tendances-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .tendances-sidebar {
        position: static !important;
        order: -1 !important;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 1rem;
        border-radius: 0;
        width: 100%;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-item::after {
        display: none;
    }
    
    .mouvements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .actualites-grid {
        grid-template-columns: 1fr;
    }
    
    .inscription-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .search-bar {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .annonce-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem;
    }
    
    .annonce-footer {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 1rem;
    }
    
    .tableau-header h2 {
        font-size: 2rem;
    }
}




/* ========== CORRECTIONS FORCÉES FINALES ========== */
.actualites-eglise-section,
.tableau-affichage-section,
.tendances-grid,
.tendances-sidebar,
.actualites-eglise-main,
.tableau-container,
.annonce-item {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.tendances-grid {
    display: grid !important;
    width: 100% !important;
}

.actualites-eglise-main {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

.annonce-header,
.annonce-footer,
.actualite-eglise-actions,
.actualite-eglise-meta {
    display: flex !important;
}

.tableau-content,
.actualite-eglise-content,
.actualite-eglise-header-card {
    display: block !important;
    width: 100% !important;
}