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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #1a1a2e;
            color: #e0e0e0;
            min-height: 100vh;
        }

        /* ── HEADER ── */
        header {
            background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
            padding: 2rem 1rem;
            text-align: center;
            border-bottom: 3px solid #4a90d9;
            box-shadow: 0 4px 20px rgba(74, 144, 217, 0.3);
        }

        header img.logo {
            width: 160px;
            height: auto;
            margin-bottom: 1rem;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
        }

        header h1 {
            font-size: 2.5rem;
            color: #ffffff;
            letter-spacing: 3px;
            text-shadow: 0 2px 10px rgba(74, 144, 217, 0.8);
        }

        header p.tagline {
            margin-top: 0.5rem;
            font-size: 1.1rem;
            color: #a0c4e8;
        }

        header p.location {
            margin-top: 0.3rem;
            font-size: 0.95rem;
            color: #7ab3d9;
        }

        header p.location::before {
            content: "📍 ";
        }

        /* ── MAIN ── */
        main {
            max-width: 900px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        /* ── SECTIONS ── */
        section {
            background: linear-gradient(135deg, #16213e 0%, #1a2a4a 100%);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid #2a4a7a;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        section h2 {
            font-size: 1.5rem;
            color: #4a90d9;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a4a7a;
        }

        section p {
            line-height: 1.7;
            color: #c0d0e0;
            margin-bottom: 0.8rem;
        }

        /* ── ÉVÉNEMENT ── */
        .event-card {
            background: linear-gradient(135deg, #0f3460 0%, #1a4a7a 100%);
            border: 2px solid #4a90d9;
            border-radius: 10px;
            padding: 1.5rem;
            margin-top: 1rem;
            text-align: center;
        }

        .event-card h3 {
            font-size: 1.4rem;
            color: #ffffff;
            margin-bottom: 0.5rem;
        }

        .event-card .event-date {
            font-size: 1.1rem;
            color: #ffd700;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .event-card .event-detail {
            font-size: 0.95rem;
            color: #a0c4e8;
        }

        .badge-free {
            display: inline-block;
            background: #27ae60;
            color: white;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: bold;
            margin-top: 0.7rem;
            font-size: 0.9rem;
        }

        /* ── INSTAGRAM EMBED ── */
        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
            margin-top: 1rem;
            justify-items: center;
        }

        .instagram-grid blockquote.instagram-media {
            margin: 0 !important;
            min-width: 280px !important;
            max-width: 100% !important;
            width: 100% !important;
        }

        .instagram-loading {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 3rem 1rem;
            text-align: center;
            color: #7ab3d9;
            font-style: italic;
        }

        .instagram-loading .spinner {
            width: 24px;
            height: 24px;
            border: 3px solid #2a4a7a;
            border-top-color: #4a90d9;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
            margin-right: 0.8rem;
        }

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

        .gallery-cta {
            text-align: center;
            margin-top: 1.5rem;
        }

        .gallery-cta a {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: white;
            text-decoration: none;
            padding: 0.8rem 1.8rem;
            border-radius: 30px;
            font-weight: bold;
            font-size: 1rem;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .gallery-cta a:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
        }

        /* ── CONTACT ── */
        .contact-email {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #0f3460;
            border: 1px solid #4a90d9;
            border-radius: 8px;
            padding: 0.8rem 1.5rem;
            color: #4a90d9;
            text-decoration: none;
            font-size: 1rem;
            font-weight: bold;
            transition: background 0.2s, color 0.2s;
            margin-top: 0.5rem;
        }

        .contact-email:hover {
            background: #4a90d9;
            color: #ffffff;
        }

        /* ── RÉSEAUX SOCIAUX ── */
        .social-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.6rem;
            padding: 0.9rem 1rem;
            border-radius: 10px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.95rem;
            transition: transform 0.2s, box-shadow 0.2s;
            color: #ffffff;
        }

        .social-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.4);
        }

        .social-btn.facebook  { background: #1877f2; }
        .social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
        .social-btn.threads   { background: #000000; border: 1px solid #444; }
        .social-btn.bluesky   { background: #0085ff; }

        .social-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
        }

        /* ── FOOTER ── */
        footer {
            text-align: center;
            padding: 1.5rem 1rem;
            color: #5a7a9a;
            font-size: 0.85rem;
            border-top: 1px solid #2a4a7a;
        }

        /* ── RESPONSIVE ── */
        @media (max-width: 600px) {
            header h1 { font-size: 1.8rem; }
            .social-grid { grid-template-columns: 1fr 1fr; }
            .instagram-grid { grid-template-columns: 1fr; }
        }

