Accueil

<style>
/* ===== STYLE ZinnFly ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Nunito', 'Segoe UI', sans-serif;
    background: #f0f7ff;
    color: #1e2b4f;
}
/* ===== BANDEAU ZINN ===== */
.zinn-speak {
    background: #ffffff;
    border-radius: 40px;
    padding: 30px 40px;
    margin: 30px 0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
    border-left: 6px solid #f5a623;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.zinn-speak .icon {
    font-size: 52px;
}
.zinn-speak p {
    font-size: 18px;
    font-weight: 600;
    color: #1e2b4f;
    flex: 1;
    margin: 0;
}
.zinn-speak .tag {
    background: #4a90e2;
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}
/* ===== HERO ===== */
.hero-zinn {
    padding: 40px 0 20px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.hero-text {
    flex: 1 1 500px;
}
.hero-badge {
    display: inline-block;
    background: #f5a623;
    color: #fff;
    font-weight: 800;
    padding: 4px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 16px;
}
.hero-text h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-text h1 span {
    color: #4a90e2;
}
.hero-text p {
    font-size: 20px;
    color: #4a5a7a;
    max-width: 500px;
    margin-bottom: 28px;
    line-height: 1.5;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.btn-primary {
    background: #f5a623;
    color: #fff !important;
    padding: 16px 42px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.15s, background 0.2s;
    box-shadow: 0 8px 24px rgba(245,166,35,0.35);
}
.btn-primary:hover {
    background: #e09515;
    transform: scale(1.02);
    color: #fff !important;
}
.btn-secondary {
    background: #fff;
    color: #1e2b4f;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid #d0dbe8;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: border-color 0.2s, transform 0.15s;
}
.btn-secondary:hover {
    border-color: #4a90e2;
    transform: scale(1.02);
}
.hero-illustration {
    flex: 1 1 350px;
    text-align: center;
}
.pilot-bubble {
    background: #fff;
    padding: 16px 24px;
    border-radius: 24px 24px 24px 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    color: #1e2b4f;
    border: 2px solid #f5a623;
    margin-top: 20px;
}
/* ===== VILLES ===== */
.cities-preview {
    padding: 40px 0 60px 0;
}
.cities-preview h2 {
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}
.cities-preview .subtitle {
    text-align: center;
    color: #4a5a7a;
    font-size: 18px;
    margin-bottom: 36px;
}
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}
.city-card {
    background: #fff;
    border-radius: 28px;
    padding: 24px 20px 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid transparent;
}
.city-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    border-color: #f5a623;
}
.city-card .emoji-big {
    font-size: 56px;
    display: block;
    margin-bottom: 8px;
}
.city-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 6px 0;
}
.city-card .status {
    font-size: 14px;
    font-weight: 700;
    color: #4a90e2;
    background: #e8f0fe;
    display: inline-block;
    padding: 2px 16px;
    border-radius: 50px;
    margin: 6px 0 10px;
}
.city-card .status.soon {
    color: #f5a623;
    background: #fef3e0;
}
.city-card p {
    color: #4a5a7a;
    font-size: 15px;
    margin-bottom: 16px;
}
.btn-city {
    background: #eef4fa;
    color: #1e2b4f !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.2s;
    display: inline-block;
}
.btn-city:hover {
    background: #4a90e2;
    color: #fff !important;
}
.btn-city.disabled {
    opacity: 0.5;
    pointer-events: none;
}
@media (max-width: 768px) {
    .hero-text h1 { font-size: 34px; }
    .hero-text p { font-size: 17px; }
    .btn-primary { padding: 14px 28px; font-size: 16px; }
    .zinn-speak { padding: 20px; }
    .cities-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .cities-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary { justify-content: center; }
}
</style>

<!-- BANDEAU ZINN -->
<div class="zinn-speak">
    <span class="icon">🧑‍✈️</span>
    <p><strong>Salut les aventuriers !</strong> Ici Zinn. Chaque ville cache 7 secrets. Regarde les vidéos, réponds aux énigmes, et collectionne tes tampons. Prêts pour le décollage ?</p>
    <span class="tag">🚀 Décollage immédiat</span>
</div>

<!-- HERO -->
<div class="hero-zinn">
    <div class="hero-text">
        <div class="hero-badge">⭐ Nouvelle aventure</div>
        <h1>Prêt pour l'aventure ?<br />Zinn t'emmène <span>explorer</span> les plus belles villes</h1>
        <p>Choisis ta ville, récupère ton passeport, et pars en jeu de piste avec tes vidéos secrètes.</p>
        <div class="hero-actions">
            <a href="#" class="btn-primary">🗺️ Je choisis ma ville</a>
            <a href="#" class="btn-secondary">▶️ Voir comment ça marche</a>
        </div>
    </div>
    <div class="hero-illustration">
        <div style="font-size:120px; line-height:1; margin-bottom:10px;">🧑‍✈️✈️</div>
        <div class="pilot-bubble">« Attache ta ceinture, on décolle ! »</div>
    </div>
</div>

<!-- VILLES -->
<div class="cities-preview">
    <h2>✈️ Nos destinations</h2>
    <p class="subtitle">Embarque pour une chasse au trésor urbaine</p>
    <div class="cities-grid">
        <div class="city-card">
            <span class="emoji-big">🍟</span>
            <h3>Bruxelles</h3>
            <span class="status">Disponible</span>
            <p>7 monuments · 3 km</p>
            <a href="#" class="btn-city">🎫 Voir le pack</a>
        </div>
        <div class="city-card">
            <span class="emoji-big">🗼</span>
            <h3>Paris</h3>
            <span class="status">Disponible</span>
            <p>7 monuments · 3 km</p>
            <a href="#" class="btn-city">🎫 Voir le pack</a>
        </div>
        <div class="city-card">
            <span class="emoji-big">🌷</span>
            <h3>Amsterdam</h3>
            <span class="status">Disponible</span>
            <p>7 monuments · 3 km</p>
            <a href="#" class="btn-city">🎫 Voir le pack</a>
        </div>
        <div class="city-card">
            <span class="emoji-big">🏛️</span>
            <h3>Rome</h3>
            <span class="status soon">Bientôt</span>
            <p>Laisse ton email pour être prévenu</p>
            <a href="#" class="btn-city disabled">📧 M'avertir</a>
        </div>
    </div>
</div>
Retour en haut