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

        a {
            outline: none;
            text-decoration: none;
        }

        a:link {
            color: white;
        }

        a:visited {
            color: white;
        }

        a:focus {
            color: #1a1a2e;
        }

        a:hover {
            color: rgba(191, 128, 250, 0.4);
            transition: width 0.3s ease;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #1a1a2e;
            background: #0f0f1e;
            overflow-x: hidden;
        }

        header {
            background: rgba(15, 15, 30, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(147, 51, 234, 0.2);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

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

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #a855f7, #ec4899, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            letter-spacing: -0.5px;
        }

        /* remplacez la pseudo-élément .logo::before par une simple croix (plus petite, sans carré) */
        .logo-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;       /* taille de la croix */
            font-weight: 700;
            color: #ec48ade5;          /* couleur de la croix */
            background: transparent; /* plus de fond */
            width: auto;
            height: auto;
            min-width: 0;
            padding: 0;
            border-radius: 0;
            box-shadow: none;
            margin-right: 0.5rem;
            line-height: 1;
            animation: none;
        }

        @keyframes glow {
            0%, 100% {
                filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
            }
            50% {
                filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.8));
            }
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: #e0e0ff;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #a855f7, #ec4899);
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #a855f7;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Styles réutilisables pour les liens de nav */
        .brand-links a,
        .nav-link {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        color: inherit;
        text-decoration: none;
        padding: 0.18rem 0.3rem;
        border-radius: 6px;
        transition: color .18s ease, background-color .18s ease, transform .08s ease;
        border-bottom: 2px solid transparent;
        }

        .brand-links a:hover,
        .brand-link:hover {
        color: #c00;
        background-color: rgba(255,0,0,0.04);
        transform: translateY(-1px);
        border-bottom-color: #FF0000;
        }

        .brand-links a:focus,
        .brand-link:focus {
        outline: 3px solid rgba(0,0,0,0.08);
        outline-offset: 3px;
        }

        /* ajustement icône */
        .brand-link .fa-youtube { font-size: 1.05em; }

        .hero {
            position: relative;
            background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #1a1a2e 100%);
            color: white;
            text-align: center;
            padding: 10rem 2rem 8rem;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 0.5;
            }
            50% {
                opacity: 1;
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #ffffff, #e0e0ff, #d4b5ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 1s ease-out;
            letter-spacing: -2px;
        }

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

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            color: #d4b5ff;
            animation: fadeInUp 1s ease-out 0.2s both;
            font-weight: 300;
        }

        .section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 3rem;
            display: none;
            background: linear-gradient(180deg, #0f0f1e 0%, #1a1a2e 100%);
        }

        .section.active {
            display: block;
            animation: fadeIn 0.5s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .section-title {
            text-align: center;
            color: #ffffff;
            margin-bottom: 4rem;
            font-size: 3.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #a855f7, #ec4899, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

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

        .card {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(139, 92, 246, 0.05));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(168, 85, 247, 0.2);
            padding: 3rem;
            border-radius: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(168, 85, 247, 0.5);
            box-shadow: 0 20px 60px rgba(168, 85, 247, 0.3);
        }

        .card:hover::before {
            opacity: 1;
        }

        .card h3 {
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .card p {
            color: #b8b8d1;
            line-height: 1.8;
            font-size: 1.05rem;
            position: relative;
            z-index: 1;
        }

        .doc-section {
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(139, 92, 246, 0.1));
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 20px;
            margin-bottom: 2.5rem;
            border-left: 4px solid #a855f7;
            border: 1px solid rgba(168, 85, 247, 0.3);
            transition: all 0.3s ease;
        }

        .doc-section:hover {
            transform: translateX(10px);
            border-color: #a855f7;
            box-shadow: -10px 0 30px rgba(168, 85, 247, 0.2);
        }

        .doc-section h3 {
            color: #ffffff;
            margin-bottom: 1.2rem;
            font-size: 1.6rem;
            font-weight: 700;
        }

        .doc-section p, .doc-section ul {
            color: #b8b8d1;
            line-height: 1.8;
        }

        .doc-section ul {
            margin-left: 2rem;
            margin-top: 1rem;
        }

        .doc-section li {
            margin-bottom: 0.5rem;
        }

        .contact-form {
            max-width: 700px;
            margin: 3rem auto;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(139, 92, 246, 0.05));
            backdrop-filter: blur(10px);
            padding: 3rem;
            border-radius: 24px;
            border: 1px solid rgba(168, 85, 247, 0.2);
            box-shadow: 0 10px 40px rgba(168, 85, 247, 0.2);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            color: #e0e0ff;
            font-weight: 600;
            font-size: 1.05rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem 1.2rem;
            background: rgba(26, 26, 46, 0.6);
            border: 2px solid rgba(168, 85, 247, 0.3);
            border-radius: 12px;
            font-family: inherit;
            color: #ffffff;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #a855f7;
            background: rgba(26, 26, 46, 0.8);
            box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 180px;
        }

        .btn {
            background: linear-gradient(135deg, #a855f7, #ec4899);
            color: white;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            width: 100%;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
            background: linear-gradient(135deg, #9333ea, #db2777);
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .info-card {
            text-align: center;
            padding: 2.5rem;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(139, 92, 246, 0.05));
            backdrop-filter: blur(10px);
            border-radius: 20px;
            border: 1px solid rgba(168, 85, 247, 0.2);
            transition: all 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            border-color: #a855f7;
            box-shadow: 0 15px 40px rgba(168, 85, 247, 0.3);
        }

        .info-card h4 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
            font-weight: 700;
        }

        .info-card p {
            color: #b8b8d1;
            line-height: 1.8;
        }

        /* centrer les liens de réseaux et appliquer le style similaire aux liens de nav */
        .info-card .social-links {
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 0.45rem;
          padding-top: 0.35rem;
        }

        .info-card .social-links .brand-link {
          display: inline-flex;
          align-items: center;
          gap: 0.45rem;
          color: inherit;
          text-decoration: none;
          padding: 0.25rem 0.6rem;
          border-radius: 6px;
          transition: color .18s ease, background-color .18s ease, transform .08s ease;
          border-bottom: 2px solid transparent;
        }

        .info-card .social-links .brand-link i {
          font-size: 1.05em;
          margin-right: 0; /* l'espace est géré par gap */
        }

        /* couleurs spécifiques pour chaque icône (optionnel) */
        .info-card .social-links .fa-youtube { color: #FF0000; }
        .info-card .social-links .fa-facebook { color: #036ea0; }
        .info-card .social-links .fa-instagram { color: #C13584; }
        .info-card .social-links .fa-tiktok { color: #000; }

        /* hover / focus */
        .info-card .social-links .brand-link:hover {
          background-color: rgba(0,0,0,0.04);
          transform: translateY(-1px);
          border-bottom-color: currentColor;
        }
        .info-card .social-links .brand-link:focus {
          outline: 3px solid rgba(0,0,0,0.08);
          outline-offset: 3px;
        }

        footer {
            background: rgba(15, 15, 30, 0.95);
            border-top: 1px solid rgba(168, 85, 247, 0.2);
            color: #b8b8d1;
            text-align: center;
            padding: 3rem 2rem;
            margin-top: 6rem;
        }

        footer p:first-child {
            color: #ffffff;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .success-message {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1));
            color: #86efac;
            padding: 1.2rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            display: none;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .verse-box {
            margin-top: 5rem;
            text-align: center;
            padding: 4rem 3rem;
            background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.1));
            backdrop-filter: blur(10px);
            border-radius: 24px;
            border: 1px solid rgba(168, 85, 247, 0.3);
            position: relative;
            overflow: hidden;
        }

        .verse-box::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 150px;
            color: rgba(168, 85, 247, 0.1);
            font-family: Georgia, serif;
        }

        .verse-box h3 {
            color: #a855f7;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .verse-box p:first-of-type {
            font-size: 1.4rem;
            font-style: italic;
            color: #e0e0ff;
            line-height: 2;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .verse-box p:last-of-type {
            color: #ec4899;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }
        .logo-taille {
            width: 18%;
        }

        @media (max-width: 768px) {
            nav {
                padding: 0 1.5rem;
            }

            .nav-links {
                gap: 1.1rem;
            }

            .nav-links a {
                font-size: 0.95rem;
            }

            .hero h1 {
                font-size: 1.7rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section {
                padding: 3rem 1.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .card-grid {
                grid-template-columns: 1fr;
            }

                /* ajuste la taille du badge sur petits écrans */
            .logo-badge {
                width: 24px;
                height: 44px;
                font-size: 1.1rem;
            }
            .logo-taille {
                width: 15%;
            }
        }