<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Emiliano's Boat Charters</title>

    <style>

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

            font-family: Arial, sans-serif;

        }

        body {

            color: #333;

        }

        /* Header */

        header {

            background-color: #1a3c6d;

            color: white;

            padding: 1rem;

            position: fixed;

            width: 100%;

            top: 0;

        }

        nav ul {

            list-style: none;

            display: flex;

            justify-content: center;

            gap: 2rem;

        }

        nav a {

            color: white;

            text-decoration: none;

            font-weight: bold;

        }

        nav a:hover {

            color: #f0c14b;

        }

        /* Hero Section con Video */

        .hero {

            height: 100vh;

            position: relative;

            display: flex;

            flex-direction: column;

            justify-content: center;

            align-items: center;

            text-align: center;

            color: white;

            overflow: hidden;

        }

        .hero video {

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            object-fit: cover;

            z-index: -1;

        }

        .hero::after {

            content: '';

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: rgba(0, 0, 0, 0.5); /* Capa oscura para que el texto sea legible */

            z-index: -1;

        }

        .hero h1 {

            font-size: 3rem;

            margin-bottom: 1rem;

        }

        .hero p {

            font-size: 1.2rem;

            margin-bottom: 2rem;

        }

        .btn {

            background-color: #f0c14b;

            color: #1a3c6d;

            padding: 0.8rem 2rem;

            text-decoration: none;

            font-weight: bold;

            border-radius: 5px;

        }

        .btn:hover {

            background-color: #e0b03a;

        }

        /* Sections */

        section {

            padding: 4rem 2rem;

            text-align: center;

        }

        section h2 {

            font-size: 2rem;

            margin-bottom: 1rem;

            color: #1a3c6d;

        }

        section p {

            max-width: 800px;

            margin: 0 auto;

            line-height: 1.6;

        }

        /* Footer */

        footer {

            background-color: #1a3c6d;

            color: white;

            padding: 1rem;

            text-align: center;

        }

    </style>

</head>

<body>

    <!-- Header -->

    <header>

        <nav>

            <ul>

                <li><a href="#home">Home</a></li>

                <li><a href="#rentals">Boat Rentals</a></li>

                <li><a href="#sales">Boats for Sale</a></li>

                <li><a href="#about">About</a></li>

                <li><a href="#contact">Contact</a></li>

            </ul>

        </nav>

    </header>


    <!-- Hero Section con Video -->

    <section id="home" class="hero">

        <video autoplay muted loop playsinline>

            <source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4">

            Your browser does not support the video tag.

        </video>

        <h1>Bienvenido a Emiliano's Boat Charters</h1>

        <p>¡Explora las playas de Mallorca con nuestros alquileres de lujo o invierte en el yate de tus sueños!</p>

        <a href="#rentals" class="btn">Alquila un Barco</a>

    </section>


    <!-- Boat Rentals Section -->

    <section id="rentals">

        <h2>Alquila un Barco en Mallorca</h2>

        <p>¡La temporada de barcos ha comenzado! Me especializo en alquiler de barcos, con opciones para todos los bolsillos. Disfruta un día en el mar explorando las mejores playas de Mallorca. ¡Contáctame para más detalles!</p>

    </section>


    <!-- Boats for Sale Section -->

    <section id="sales">

        <h2>Barcos en Venta</h2>

        <p>FJORD 41XL en Venta – Amarre en Puerto Portals hasta 2031. Incluye plataforma de baño hidráulica, 2 camas dobles, baño, sistema de sonido MP3/Bluetooth, y 2 motores Volvo Penta 380HP (máx. 33kn). Respaldado por una marca de charters activa con clientes fijos todo el año. ¡Consulta ahora!</p>

    </section>


    <!-- About Section -->

    <section id="about">

        <h2>Quiénes Somos</h2>

        <p>Soy Emiliano, un emprendedor argentino apasionado por las aventuras en el mar. Desde que comencé mi negocio de barcos hace 3 años, ofrezco experiencias de lujo en Mallorca, desde alquileres hasta venta de yates, con un servicio de primera.</p>

    </section>


    <!-- Contact Section -->

    <section id="contact">

        <h2>Contáctame</h2>

        <p>Teléfono: [Tu Número] | Email: [Tu Email] | WhatsApp: [Tu Enlace de WhatsApp]</p>

    </section>


    <!-- Footer -->

    <footer>

        <p>© 2025 Emiliano's Boat Charters. Todos los derechos reservados.</p>

    </footer>

</body>

</html>