 
        @font-face {
            font-family: 'Agency FB';
            src: url('fonts/agency-fb.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }
        
        :root {
            --primary-color: #fad303;
            --secondary-color: #e68900;
            --accent-color: #EBAA06CB;
            --dark-color: #2c3e50;
            --light-color: #f9f9f9;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body, html {
            height: 100%;
            overflow-x: hidden;
        }
        
        body {
            font-family: 'Agency FB', sans-serif;
            background-color: #f5f5f5;
            color: var(--dark-color);
        }
        
        .program-section {
            display: flex;
            flex-wrap: wrap;
            min-height: 100vh;
            width: 100%;
        }
        
        .text-section {
            flex: 1;
            min-width: 300px;
            min-height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../church-bg.webp') center/cover no-repeat;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            /* animation: zoomEffect 20s infinite alternate; */
        }
        
        @keyframes zoomEffect {
            0% {
                background-size: 100% 100%;
            }
            100% {
                background-size: 110% 110%;
            }
        }
        
        .text-content {
            max-width: 500px;
            margin: 0 auto;
            padding: 40px;
            animation: fadeIn 1.5s ease-out;
            position: relative;
            z-index: 2;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .text-section h2 {
            font-family: 'Cinzel', serif;
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .cards-section {
            flex: 1;
            min-width: 300px;
            min-height: 100vh;
            padding: 40px 30px;
            background: var(--dark-color);
            display: flex;
            align-items: center;
            overflow-y: auto;
        }
        
        .cards-container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
            animation: fadeIn 1s ease-out;
        }
        
        .section-title h3 {
            font-family: 'Cinzel', serif;
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--accent-color);
            margin: 0 auto;
        }
        
        .program-column {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            padding: 25px;
            margin-bottom: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .program-column:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .program-day {
            margin-bottom: 20px;
        }
        
        .day-title {
            font-family: 'Cinzel', serif;
            font-size: 1.5rem;
            color: var(--dark-color);
            margin-bottom: 10px;
            padding-bottom: 5px;
            border-bottom: 2px solid var(--accent-color);
            transition: color 0.3s ease;
        }
        
        .program-day:hover .day-title {
            color: var(--secondary-color);
        }
        
        .event-item {
            display: flex;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .event-item:hover {
            transform: translateX(5px);
            border-bottom-color: var(--accent-color);
        }
        
        .event-time {
            font-weight: 600;
            color: var(--accent-color);
            min-width: 120px;
            margin-right: 20px;
            font-family: 'Agency FB', sans-serif;
            font-size: 1.1rem;
        }
        
        .event-description {
            flex: 1;
            font-family: 'Agency FB', sans-serif;
            font-size: 1.1rem;
        }
        
        /* Animation pour les éléments du programme */
        @keyframes slideIn {
            from { opacity: 0; transform: translateX(-20px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        .program-day:nth-child(1) { animation: slideIn 0.5s ease-out; }
        .program-day:nth-child(2) { animation: slideIn 0.7s ease-out; }
        .program-day:nth-child(3) { animation: slideIn 0.9s ease-out; }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .program-section {
                height: auto;
            }
        }
        
        @media (max-width: 768px) {
            .program-section {
                flex-direction: column;
            }
            
            .text-section {
                display: none; /* Caché sur mobile */
            }
            
            .cards-section {
                min-height: auto;
                padding: 30px 20px;
                background: linear-gradient(135deg, var(--dark-color), #1a2530);
            }
            
            .section-title h3 {
                font-size: 1.8rem;
                color: var(--primary-color);
                text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            }
            
            .program-column {
                padding: 20px;
                background: rgba(255,255,255,0.95);
            }
            
            .section-title::after {
                background: var(--primary-color);
            }
        }
        
        @media (max-width: 480px) {
            .cards-section {
                padding: 20px 15px;
            }
            
            .event-item {
                flex-direction: column;
            }
            
            .event-time {
                margin-bottom: 5px;
                margin-right: 0;
                font-size: 1rem;
                color: var(--secondary-color);
            }
            
            .event-description {
                font-size: 1rem;
            }
            
            .section-title h3 {
                font-size: 1.6rem;
                margin-bottom: 10px;
            }
            
            .day-title {
                font-size: 1.3rem;
            }
            
            .program-column {
                padding: 15px;
                margin-bottom: 20px;
            }
        }
    