<!DOCTYPE html>
<html lang="fr">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
    <title>Immersion Terre Indonesienne - Bientot disponible</title>
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Cinzel:wght@400;500&family=Philosopher:wght@400;700&display=swap" rel="stylesheet">
    <style>
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #d4a853;
            --gold-light: #f0d78c;
            --gold-dark: #8b6914;
            --dark: #0d0d0d;
            --cream: #faf6eb;
        }

        html, body {
            height: 100%;
            overflow: hidden;
        }

        body {
            font-family: 'Philosopher', sans-serif;
            background: var(--dark);
            color: var(--cream);
        }

        /* ===== SLIDESHOW ===== */
        .slideshow {
            position: fixed;
            inset: 0;
            z-index: 0;
        }

        .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }

        .slide.active { opacity: 1; }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 20%;
            animation: slowZoom 20s ease-in-out infinite alternate;
        }

        @keyframes slowZoom {
            0% { transform: scale(1.02); }
            100% { transform: scale(1.06); }
        }

        /* ===== OVERLAY ===== */
        .overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.6);
            z-index: 1;
        }

        /* ===== BALINESE PATTERNS ===== */
        .pattern-top, .pattern-bottom {
            position: fixed;
            left: 0;
            right: 0;
            height: 100px;
            z-index: 5;
            opacity: 0.5;
            pointer-events: none;
        }

        .pattern-top {
            top: 0;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50'%3E%3Cpath d='M0 50 Q25 0 50 50 Q75 0 100 50' fill='none' stroke='%23d4a853' stroke-width='0.5'/%3E%3Cpath d='M0 45 Q25 5 50 45 Q75 5 100 45' fill='none' stroke='%23d4a853' stroke-width='0.3'/%3E%3Ccircle cx='50' cy='25' r='3' fill='none' stroke='%23d4a853' stroke-width='0.3'/%3E%3Ccircle cx='25' cy='25' r='2' fill='none' stroke='%23d4a853' stroke-width='0.3'/%3E%3Ccircle cx='75' cy='25' r='2' fill='none' stroke='%23d4a853' stroke-width='0.3'/%3E%3C/svg%3E") repeat-x;
            background-size: 200px 100px;
            animation: patternMove 60s linear infinite;
        }

        .pattern-bottom {
            bottom: 0;
            transform: rotate(180deg);
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 50'%3E%3Cpath d='M0 50 Q25 0 50 50 Q75 0 100 50' fill='none' stroke='%23d4a853' stroke-width='0.5'/%3E%3Cpath d='M0 45 Q25 5 50 45 Q75 5 100 45' fill='none' stroke='%23d4a853' stroke-width='0.3'/%3E%3Ccircle cx='50' cy='25' r='3' fill='none' stroke='%23d4a853' stroke-width='0.3'/%3E%3Ccircle cx='25' cy='25' r='2' fill='none' stroke='%23d4a853' stroke-width='0.3'/%3E%3Ccircle cx='75' cy='25' r='2' fill='none' stroke='%23d4a853' stroke-width='0.3'/%3E%3C/svg%3E") repeat-x;
            background-size: 200px 100px;
            animation: patternMove 60s linear infinite reverse;
        }

        @keyframes patternMove {
            0% { background-position-x: 0; }
            100% { background-position-x: 200px; }
        }

        /* ===== MANDALA ===== */
        .mandala {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: min(80vw, 500px);
            height: min(80vw, 500px);
            opacity: 0.06;
            z-index: 2;
            pointer-events: none;
            animation: rotateMandala 180s linear infinite;
        }

        @keyframes rotateMandala {
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        /* ===== CONTENT ===== */
        .content {
            position: relative;
            z-index: 10;
            min-height: 100vh;
            min-height: 100dvh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 30px 20px 100px;
            text-align: center;
        }

        /* ===== LOTUS ===== */
        .lotus {
            width: 60px;
            height: 60px;
            margin-bottom: 25px;
        }

        .lotus svg {
            width: 100%;
            height: 100%;
            fill: var(--gold);
            filter: drop-shadow(0 0 15px rgba(212, 168, 83, 0.4));
            animation: lotusGlow 4s ease-in-out infinite;
        }

        @keyframes lotusGlow {
            0%, 100% { filter: drop-shadow(0 0 15px rgba(212, 168, 83, 0.4)); }
            50% { filter: drop-shadow(0 0 30px rgba(212, 168, 83, 0.6)); }
        }

        /* ===== TITLE ===== */
        .pre-title {
            font-size: 0.8rem;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 12px;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.3s forwards;
        }

        .main-title {
            font-family: 'Cinzel Decorative', serif;
            font-size: clamp(2.2rem, 12vw, 5rem);
            font-weight: 700;
            line-height: 1;
            margin-bottom: 8px;
            background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0;
            animation: fadeInUp 1.2s ease-out 0.5s forwards;
        }

        .sub-title {
            font-family: 'Cinzel', serif;
            font-size: clamp(0.9rem, 4vw, 1.6rem);
            font-weight: 400;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--cream);
            opacity: 0;
            animation: fadeInUp 1.2s ease-out 0.7s forwards;
        }

        /* ===== SEPARATOR ===== */
        .separator {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin: 25px 0;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.9s forwards;
        }

        .separator::before,
        .separator::after {
            content: '';
            width: 50px;
            height: 1px;
            background: var(--gold);
            opacity: 0.5;
        }

        .separator span {
            color: var(--gold);
            font-size: 1rem;
        }

        /* ===== MESSAGE ===== */
        .message {
            font-size: clamp(0.95rem, 3vw, 1.15rem);
            font-weight: 400;
            line-height: 1.8;
            max-width: 480px;
            color: rgba(250, 246, 235, 0.85);
            padding: 0 15px;
            margin-bottom: 35px;
            opacity: 0;
            animation: fadeInUp 1.2s ease-out 1.1s forwards;
        }

        /* ===== STATUS ===== */
        .status-box {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            border: 1px solid rgba(212, 168, 83, 0.4);
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
            opacity: 0;
            animation: fadeIn 1s ease-out 1.3s forwards;
        }

        .status-dot {
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--gold); }
            50% { opacity: 0.4; box-shadow: none; }
        }

        .status-text {
            font-family: 'Cinzel', serif;
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
        }

        /* ===== FOOTER ===== */
        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            z-index: 10;
            background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, transparent 100%);
            opacity: 0;
            animation: fadeIn 1.5s ease-out 1.5s forwards;
        }

        .footer span {
            font-size: 0.7rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            opacity: 0.6;
        }

        /* ===== INDICATORS ===== */
        .indicators {
            position: fixed;
            right: 25px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 10;
        }

        .indicator {
            width: 2px;
            height: 25px;
            background: rgba(255, 255, 255, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--gold);
            height: 35px;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeIn {
            to { opacity: 1; }
        }

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

        .main-title, .sub-title, .message {
            transform: translateY(20px);
        }

        /* ===== RESPONSIVE MOBILE ===== */
        @media (max-width: 768px) {
            .pattern-top, .pattern-bottom {
                height: 100px;
                opacity: 0.5;
                background-size: 150px 100px;
            }

            .pattern-top {
                top: 0;
            }

            .pattern-bottom {
                bottom: 0;
            }

            .content {
                padding: 20px 15px 90px;
                justify-content: center;
            }

            .lotus {
                width: 50px;
                height: 50px;
                margin-bottom: 20px;
            }

            .pre-title {
                font-size: 0.7rem;
                letter-spacing: 0.3em;
            }

            .main-title {
                font-size: clamp(2rem, 14vw, 3.5rem);
            }

            .sub-title {
                font-size: clamp(0.75rem, 3.5vw, 1.1rem);
                letter-spacing: 0.15em;
            }

            .separator {
                margin: 20px 0;
            }

            .separator::before,
            .separator::after {
                width: 30px;
            }

            .message {
                font-size: 0.9rem;
                line-height: 1.7;
                margin-bottom: 25px;
                padding: 0 10px;
            }

            .status-box {
                padding: 12px 20px;
            }

            .status-text {
                font-size: 0.65rem;
                letter-spacing: 0.15em;
            }

            .indicators {
                display: none;
            }

            .mandala {
                width: 90vw;
                height: 90vw;
                opacity: 0.04;
            }

            .footer {
                padding: 15px;
            }

            .footer span {
                font-size: 0.6rem;
            }
        }

        @media (max-height: 600px) {
            .lotus {
                width: 40px;
                height: 40px;
                margin-bottom: 15px;
            }

            .separator {
                margin: 15px 0;
            }

            .message {
                margin-bottom: 20px;
            }
        }
    </style>
</head>
<body>
    <!-- Slideshow - Familles et rencontres balinaises -->
    <div class="slideshow">
        <div class="slide active">
            <img src="https://images.pexels.com/photos/15281062/pexels-photo-15281062.jpeg?auto=compress&cs=tinysrgb&w=1920" alt="Femme balinaise traditionnelle">
        </div>
        <div class="slide">
            <img src="https://images.pexels.com/photos/2606519/pexels-photo-2606519.jpeg?auto=compress&cs=tinysrgb&w=1920" alt="Mariage indonesien traditionnel">
        </div>
        <div class="slide">
            <img src="https://images.pexels.com/photos/30700718/pexels-photo-30700718.jpeg?auto=compress&cs=tinysrgb&w=1920" alt="Couple indonesien traditionnel">
        </div>
        <div class="slide">
            <img src="https://images.pexels.com/photos/30720681/pexels-photo-30720681.jpeg?auto=compress&cs=tinysrgb&w=1920" alt="Mariage balinais traditionnel">
        </div>
    </div>

    <!-- Overlay -->
    <div class="overlay"></div>

    <!-- Balinese Patterns -->
    <div class="pattern-top"></div>
    <div class="pattern-bottom"></div>

    <!-- Mandala -->
    <svg class="mandala" viewBox="0 0 200 200">
        <circle cx="100" cy="100" r="95" fill="none" stroke="#d4a853" stroke-width="0.3"/>
        <circle cx="100" cy="100" r="75" fill="none" stroke="#d4a853" stroke-width="0.2"/>
        <circle cx="100" cy="100" r="55" fill="none" stroke="#d4a853" stroke-width="0.3"/>
        <circle cx="100" cy="100" r="35" fill="none" stroke="#d4a853" stroke-width="0.2"/>
        <g stroke="#d4a853" stroke-width="0.2" fill="none">
            <path d="M100 5 Q115 50 100 95 Q85 50 100 5"/>
            <path d="M100 5 Q115 50 100 95 Q85 50 100 5" transform="rotate(45 100 100)"/>
            <path d="M100 5 Q115 50 100 95 Q85 50 100 5" transform="rotate(90 100 100)"/>
            <path d="M100 5 Q115 50 100 95 Q85 50 100 5" transform="rotate(135 100 100)"/>
            <path d="M100 5 Q115 50 100 95 Q85 50 100 5" transform="rotate(180 100 100)"/>
            <path d="M100 5 Q115 50 100 95 Q85 50 100 5" transform="rotate(225 100 100)"/>
            <path d="M100 5 Q115 50 100 95 Q85 50 100 5" transform="rotate(270 100 100)"/>
            <path d="M100 5 Q115 50 100 95 Q85 50 100 5" transform="rotate(315 100 100)"/>
        </g>
    </svg>

    <!-- Indicators -->
    <div class="indicators">
        <div class="indicator active" data-slide="0"></div>
        <div class="indicator" data-slide="1"></div>
        <div class="indicator" data-slide="2"></div>
        <div class="indicator" data-slide="3"></div>
    </div>

    <!-- Content -->
    <div class="content">
        <div class="lotus">
            <svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
                <path d="M50 15 Q62 40 50 65 Q38 40 50 15" opacity="0.9"/>
                <path d="M50 15 Q62 40 50 65 Q38 40 50 15" transform="rotate(25 50 55)" opacity="0.7"/>
                <path d="M50 15 Q62 40 50 65 Q38 40 50 15" transform="rotate(-25 50 55)" opacity="0.7"/>
                <path d="M50 15 Q62 40 50 65 Q38 40 50 15" transform="rotate(50 50 55)" opacity="0.5"/>
                <path d="M50 15 Q62 40 50 65 Q38 40 50 15" transform="rotate(-50 50 55)" opacity="0.5"/>
                <circle cx="50" cy="58" r="6" opacity="0.8"/>
            </svg>
        </div>

        <div class="pre-title">Bienvenue sur</div>
        <h1 class="main-title">Immersion</h1>
        <h2 class="sub-title">Terre Indonesienne</h2>

        <div class="separator">
            <span>✦</span>
        </div>

        <p class="message">Une experience unique vous attend.<br>Bien plus qu'un voyage, une rencontre authentique avec le peuple indonesien.<br>Partagez le quotidien des familles locales et decouvrez l'Indonesie a travers ceux qui la font vivre.</p>

        <div class="status-box">
            <span class="status-dot"></span>
            <span class="status-text">Bientot disponible</span>
        </div>
    </div>

    <!-- Footer -->
    <footer class="footer">
        <span>Bali, Indonesie</span>
    </footer>

    <script>
        const slides = document.querySelectorAll('.slide');
        const indicators = document.querySelectorAll('.indicator');
        let current = 0;

        function show(i) {
            slides.forEach(s => s.classList.remove('active'));
            indicators.forEach(ind => ind.classList.remove('active'));
            slides[i].classList.add('active');
            indicators[i].classList.add('active');
            current = i;
        }

        setInterval(() => show((current + 1) % slides.length), 6000);

        indicators.forEach((ind, i) => {
            ind.addEventListener('click', () => show(i));
        });
    </script>
</body>
</html>
        