<!DOCTYPE html>
<html lang="it">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Fly Dreams Animazione - Spettacoli & Intrattenimento Turistico</title>
    <style>
        /* RESET & STILI GENERALI */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif, Arial;
        }
        body {
            color: #333;
            background-color: #f8f9fa;
        }

        /* TOP BAR SOCIAL - Azzurro Scuro */
        .top-bar {
            background-color: #0088cc;
            color: #fff;
            padding: 8px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
        }
        .top-bar a {
            color: #fff;
            margin-left: 15px;
            text-decoration: none;
            font-weight: 500;
        }
        .top-bar a:hover {
            color: #a6e22e; /* Verde Lime */
        }

        /* HEADER & MENU */
        header {
            background-color: #fff;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 800;
            color: #e74c3c; /* Rosso */
            text-transform: uppercase;
        }
        .logo span {
            color: #00a8ff; /* Azzurro */
        }
        nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        nav ul li {
            margin-left: 20px;
        }
        nav ul li a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: #e74c3c; /* Rosso */
        }
        .btn-header {
            background-color: #e74c3c; /* Rosso */
            color: #fff !important;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: bold;
            transition: background 0.3s;
        }
        .btn-header:hover {
            background-color: #c0392b;
        }

        /* HERO SECTION - Azzurro Intenso con sovrapposizione */
        .hero {
            background: linear-gradient(rgba(0, 168, 255, 0.75), rgba(0, 136, 204, 0.8)), url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?auto=format&fit=crop&w=1350&q=80') center/cover;
            height: 85vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: #fff;
            padding: 0 20px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 25px;
            max-width: 700px;
        }
        .btn-cta {
            background-color: #a6e22e; /* Verde Lime */
            color: #111;
            padding: 14px 32px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 30px;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(166, 226, 46, 0.4);
        }
        .btn-cta:hover {
            background-color: #e74c3c; /* Rosso */
            color: #fff;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
        }

        /* SEZIONE CARATTERISTICHE */
        .features {
            padding: 60px 5%;
            text-align: center;
            background: #fff;
        }
        .section-title {
            font-size: 2.2rem;
            color: #0088cc; /* Azzurro */
            margin-bottom: 40px;
            position: relative;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .card {
            padding: 30px;
            border-radius: 12px;
            background: #f8f9fa;
            border-bottom: 5px solid #a6e22e; /* Verde Lime */
            transition: transform 0.3s, border-color 0.3s;
        }
        .card:hover {
            transform: translateY(-8px);
            border-bottom-color: #e74c3c; /* Passo al Rosso al passaggio del mouse */
        }
        .card h3 {
            color: #0088cc; /* Azzurro */
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        /* STATISTICHE / NUMERI */
        .stats {
            background-color: #0088cc; /* Azzurro */
            color: #fff;
            padding: 50px 5%;
            text-align: center;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        .stat-item h2 {
            font-size: 2.8rem;
            color: #a6e22e; /* Verde Lime */
        }

        /* FORM DI CONTATTO */
        .contact-section {
            padding: 60px 5%;
            background: #fff;
            text-align: center;
        }
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #e1e8ed;
            border-radius: 6px;
            font-size: 1rem;
            outline: none;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: #00a8ff;
        }
        .contact-form button {
            background-color: #e74c3c; /* Rosso */
            color: #fff;
            border: none;
            padding: 14px;
            font-size: 1.1rem;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
            transition: 0.3s;
        }
        .contact-form button:hover {
            background-color: #a6e22e; /* Verde Lime */
            color: #111;
        }

        /* FOOTER */
        footer {
            background-color: #1a252f;
            color: #bdc3c7;
            padding: 40px 5% 20px;
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #a6e22e; /* Verde Lime */
            margin-bottom: 15px;
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid #34495e;
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            header { flex-direction: column; }
            nav ul { margin-top: 15px; flex-wrap: wrap; justify-content: center; }
            nav ul li { margin: 5px 10px; }
            .hero h1 { font-size: 2rem; }
        }
    </style>
</head>
<body>

    <!-- TOP BAR -->
    <div class="top-bar">
        <div>📍 Campania & Tutto il territorio Nazionale</div>
        <div>
            <a href="#">Instagram</a>
            <a href="#">Facebook</a>
            <a href="#">WhatsApp</a>
        </div>
    </div>

    <!-- HEADER / MENU -->
    <header>
        <div class="logo">Fly Dreams <span>Animazione</span></div>
        <nav>
            <ul>
                <li><a href="#home">Home</a></li>
                <li><a href="#chi-siamo">Chi Siamo</a></li>
                <li><a href="#servizi">Servizi</a></li>
                <li><a href="#lavora-con-noi">Lavora Con Noi</a></li>
                <li><a href="#contatti" class="btn-header">Preventivo Gratuito</a></li>
            </ul>
        </nav>
    </header>

    <!-- HERO SECTION -->
    <section class="hero" id="home">
        <h1>L'Animazione & lo Spettacolo per il Tuo Evento</h1>
        <p>Servizi di intrattenimento turistico, feste ed eventi speciali ideati per regalare emozioni uniche.</p>
        <a href="#contatti" class="btn-cta">Richiedi un Preventivo</a>
    </section>

    <!-- PUNTI DI FORZA -->
    <section class="features" id="chi-siamo">
        <h2 class="section-title">Perché Scegliere Fly Dreams</h2>
        <div class="grid-3">
            <div class="card">
                <h3>Competenza & Formazione</h3>
                <p>I nostri animatori e performer vengono selezionati e formati per garantire standard qualitativi elevati.</p>
            </div>
            <div class="card">
                <h3>Esperienza sul Campo</h3>
                <p>Anni di attività nell'intrattenimento di villaggi turistici, strutture ricettive, feste private ed eventi.</p>
            </div>
            <div class="card">
                <h3>Format Su Misura</h3>
                <p>Progettiamo programmi di animazione e spettacoli personalizzati in base al tuo budget e alle tue esigenze.</p>
            </div>
        </div>
    </section>

    <!-- STATISTICHE -->
    <section class="stats">
        <div class="stats-grid">
            <div class="stat-item">
                <h2>+100</h2>
                <p>Eventi Realizzati</p>
            </div>
            <div class="stat-item">
                <h2>100%</h2>
                <p>Divertimento Garantito</p>
            </div>
            <div class="stat-item">
                <h2>+50</h2>
                <p>Animatori & Performer</p>
            </div>
        </div>
    </section>

    <!-- FORM DI CONTATTO -->
    <section class="contact-section" id="contatti">
        <h2 class="section-title">Richiedi Informazioni o un Preventivo</h2>
        <form class="contact-form">
            <input type="text" placeholder="Nome e Cognome *" required>
            <input type="tel" placeholder="Cellulare / WhatsApp *" required>
            <input type="email" placeholder="Indirizzo E-mail *" required>
            <textarea rows="4" placeholder="Raccontaci del tuo evento (Data, luogo, tipo di festa...)" required></textarea>
            <button type="submit">Invia Richiesta</button>
        </form>
    </section>

    <!-- FOOTER -->
    <footer>
        <div class="footer-grid">
            <div>
                <h4>Fly Dreams Animazione</h4>
                <p>Agenzia di animazione turistica, spettacoli dal vivo ed eventi speciali.</p>
            </div>
            <div>
                <h4>Contatti</h4>
                <p>📞 Tel / WhatsApp: Inserisci il numero</p>
                <p>✉️ Email: info@flydreams.it</p>
            </div>
            <div>
                <h4>Servizi</h4>
                <p>• Animazione Turistica</p>
                <p>• Feste Private & Compleanni</p>
                <p>• Spettacoli & Format</p>
            </div>
        </div>
        <div class="footer-bottom">
            <p>&copy; 2026 Fly Dreams Animazione. Tutti i diritti riservati.</p>
        </div>
    </footer>

</body>
</html>