<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>FLY Shop Gift Card Giveaway</title>
    <!-- Bootstrap CSS -->
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
    <style>
        /* Additional custom styling */
        .hero {
            background-image: url('https://via.placeholder.com/1500x500'); /* Replace with your hero image */
            background-size: cover;
            background-position: center;
            height: 500px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }
        .hero h1 {
            font-size: 3rem;
            font-weight: bold;
        }
        .giveaway-details {
            margin-top: 40px;
        }
        .footer {
            background-color: #343a40;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }
    </style>
</head>
<body>

<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
    <div class="container">
        <a class="navbar-brand" href="#">FLY Shop</a>
        <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
            <span class="navbar-toggler-icon"></span>
        </button>
        <div class="collapse navbar-collapse" id="navbarNav">
            <ul class="navbar-nav ms-auto">
                <li class="nav-item">
                    <a class="nav-link active" aria-current="page" href="#">Home</a>
                </li>
                <li class="nav-item">
                    <a class="nav-link" href="#giveaway">Giveaway</a>
                </li>
                <li class="nav-item">
                    <a class="nav-link" href="#contact">Contact Us</a>
                </li>
            </ul>
        </div>
    </div>
</nav>

<!-- Hero Section -->
<section class="hero">
    <div class="container">
        <h1>Win a Gift Card from FLY Shop!</h1>
        <p class="lead">Enter our giveaway and stand a chance to win amazing gift cards for your favorite items!</p>
        <a href="#giveaway" class="btn btn-primary btn-lg mt-3">Enter Now</a>
    </div>
</section>

<!-- Giveaway Details Section -->
<section id="giveaway" class="container giveaway-details my-5">
    <div class="row">
        <div class="col-md-8 mx-auto text-center">
            <h2>About the Giveaway</h2>
            <p class="mt-3">FLY Shop is giving away gift cards worth up to $100! Enter for a chance to win and enjoy shopping with FLY. The giveaway closes at the end of the month, so don't miss out!</p>
        </div>
    </div>
    <div class="row mt-4">
        <div class="col-md-6 mx-auto">
            <h3 class="text-center">Enter the Giveaway</h3>
            <form>
                <div class="mb-3">
                    <label for="name" class="form-label">Full Name</label>
                    <input type="text" class="form-control" id="name" required>
                </div>
                <div class="mb-3">
                    <label for="email" class="form-label">Email Address</label>
                    <input type="email" class="form-control" id="email" required>
                </div>
                <div class="mb-3">
                    <label for="phone" class="form-label">Phone Number</label>
                    <input type="tel" class="form-control" id="phone" required>
                </div>
                <button type="submit" class="btn btn-primary w-100">Submit Entry</button>
            </form>
        </div>
    </div>
</section>

<!-- Footer Section -->
<footer id="contact" class="footer">
    <div class="container">
        <p>&copy; 2024 FLY Shop. All Rights Reserved.</p>
        <p>Contact us: <a href="mailto:contact@flyshop.com" class="text-white">contact@flyshop.com</a></p>
    </div>
</footer>

<!-- Bootstrap JS (requires Popper for dropdowns, etc.) -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.min.js"></script>

</body>
</html>