body {
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            background-color: #49e61e;
            color: #333;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cinzel', serif;
            font-weight: 600;
        }

        /* Carrousel amélioré avec animations */
        

        .carousel-item {
            height: 80vh;
            min-height: 500px;
            background-size: cover;
            background-position: center;
            position: relative;
            transition: transform 0.6s ease-in-out;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
        }

        .carousel-item img {
            object-fit: cover;
            width: 100%;
            height: 100%;
        }

        /* Style par défaut pour le carrousel (ordinateurs) */
        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 10%;
            transform: translateY(-50%);
            text-align: left;
            width: 40%;
            padding: 30px;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 15px;
        }

        .carousel-caption h5 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #ffb700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
            line-height: 1.2;
            font-family: 'Cinzel', serif;
        }

        .carousel-caption p {
            font-size: 1.2rem;
            color: #fff;
            margin-bottom: 15px;
            line-height: 1.6;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            display: block;
        }

        .carousel-caption .caption-line {
            display: block;
            margin-bottom: 10px;
        }

        /* Styles pour tablettes et mobiles (moins de 992px) */
        @media (max-width: 991.98px) {
            .carousel-caption {
                left: 50% !important;
                transform: translate(-50%, -50%) !important;
                text-align: center !important;
                width: 80% !important;
                padding: 20px !important;
            }
            
            .carousel-caption h5 {
                font-size: 1.8rem !important;
                margin-bottom: 15px !important;
            }
            
            .carousel-caption p {
                font-size: 1rem !important;
            }
        }

        /* Styles spécifiques pour mobiles */
        @media (max-width: 767.98px) {
            .carousel-item {
                height: 60vh;
                min-height: 400px;
            }
            
            .carousel-caption {
                width: 85% !important;
                padding: 15px !important;
            }
            
            .carousel-caption h5 {
                font-size: 1.6rem !important;
                margin-bottom: 10px !important;
            }
            
            .carousel-caption p {
                font-size: 0.9rem !important;
            }
        }

        @media (max-width: 575.98px) {
            .carousel-item {
                height: 50vh;
                min-height: 350px;
            }
            
            .carousel-caption {
                width: 90% !important;
                padding: 12px !important;
            }
            
            .carousel-caption h5 {
                font-size: 1.4rem !important;
                margin-bottom: 8px !important;
            }
            
            .carousel-caption p {
                font-size: 0.8rem !important;
                margin-bottom: 8px !important;
            }
        }

        @media (max-width: 400px) {
            .carousel-item {
                height: 45vh;
                min-height: 300px;
            }
            
            .carousel-caption {
                width: 95% !important;
                padding: 10px !important;
            }
            
            .carousel-caption h5 {
                font-size: 1.2rem !important;
                margin-bottom: 5px !important;
            }
            
            .carousel-caption p {
                font-size: 0.7rem !important;
                margin-bottom: 5px !important;
            }
        }

        @media (max-width: 320px) {
            .carousel-item {
                height: 40vh;
                min-height: 250px;
            }
            
            .carousel-caption {
                width: 98% !important;
                padding: 8px !important;
            }
            
            .carousel-caption h5 {
                font-size: 1.1rem !important;
            }
            
            .carousel-caption p {
                font-size: 1.6rem !important;
            }
        }

        /* Présentation de l'église */
        .church-presentation {
            padding: 100px 0;
            background-color: #f8f9fa;
            position: relative;
            overflow: hidden;
        }
        
        .church-presentation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('assets/bg-pattern.png') repeat;
            opacity: 0.03;
            z-index: 0;
        }
        
        .church-presentation .container {
            position: relative;
            z-index: 1;
        }
        
        .video-container {
            position: relative;
            width: 100%;
            height: 400px;
            background-color: #1a1a2e;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.5s ease;
        }
        
        .video-container:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-loading {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #1a1a2e;
            color: white;
            z-index: 10;
        }
        
        .video-loading .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-bottom: 15px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .video-loading p {
            font-size: 18px;
            margin-top: 10px;
        }
        
        /* Cache le loader une fois la vidéo chargée */
        .video-container.loaded .video-loading {
            display: none;
        }

        /* Section Vision & Mission */
        .vision-mission-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff, #f9f9f9);
        }
        
        .vision-mission-section .section-title {
            position: relative;
            margin-bottom: 60px;
            text-align: center;
        }
        
        .vision-mission-section .section-title h2 {
            font-size: 2.8rem;
            color: #ffb700;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .vision-mission-section .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: #a57b00;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .vision-mission-section .section-title p {
            font-size: 1.2rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .vision-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            margin-bottom: 30px;
            height: 100%;
            background: white;
            position: relative;
            z-index: 1;
        }
        
        .vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 183, 0, 0.1), rgba(255, 183, 0, 0.05));
            z-index: -1;
            opacity: 0;
            transition: all 0.5s ease;
        }
        
        .vision-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .vision-card:hover::before {
            opacity: 1;
        }
        
        .vision-card .card-header {
            background: linear-gradient(135deg, #ffb700, #e6a500);
            color: white;
            padding: 25px;
            border-bottom: none;
            position: relative;
            overflow: hidden;
        }
        
        .vision-card .card-header::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 0;
            width: 100%;
            height: 40px;
            background: white;
            transform: skewY(-3deg);
        }
        
        .vision-card .card-header h3 {
            font-family: 'Cinzel', serif;
            font-weight: 700;
            margin: 0;
            position: relative;
            z-index: 1;
        }
        
        .vision-card .card-header i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            display: inline-block;
        }
        
        .vision-card .card-body {
            padding: 30px;
            background: white;
        }
        
        .vision-card .card-body p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 0;
        }
        
        /* Animation des cartes */
        @keyframes cardEntrance {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .vision-card {
            animation: cardEntrance 0.8s ease-out forwards;
            opacity: 0;
        }
        
        .vision-card:nth-child(1) {
            animation-delay: 0.2s;
        }
        
        .vision-card:nth-child(2) {
            animation-delay: 0.4s;
        }
   