<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

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

  <title>BIG SURPY</title>

  <style>

    body {

      margin: 0;

      font-family: Arial, sans-serif;

      scroll-behavior: smooth;

      background-color: #0d0d0d;

      color: #fff;

    }

    nav {

      position: fixed;

      top: 0;

      width: 100%;

      background: rgba(0,0,0,0.8);

      display: flex;

      justify-content: center;

      gap: 2rem;

      padding: 1rem;

      z-index: 1000;

    }

    nav a {

      color: #fff;

      text-decoration: none;

      font-weight: bold;

    }

    nav a:hover {

      color: #ff4500;

    }

    section {

      min-height: 100vh;

      padding: 100px 20px 40px;

      text-align: center;

    }

    .hero {

      display: flex;

      flex-direction: column;

      justify-content: center;

      align-items: center;

      background: url('https://images.unsplash.com/photo-1536763225213-b5592e1e3f4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1650&q=80') no-repeat center center/cover;

      color: #fff;

    }

    .hero h1 {

      font-size: 4rem;

      margin-bottom: 1rem;

      text-shadow: 2px 2px 6px #000;

    }

    .hero p {

      font-size: 1.5rem;

      margin-bottom: 2rem;

      text-shadow: 1px 1px 4px #000;

    }

    .btn {

      background: #ff4500;

      color: #fff;

      padding: 12px 25px;

      border-radius: 30px;

      text-decoration: none;

      font-weight: bold;

    }

    .btn:hover {

      background: #e63900;

    }

    iframe {

      border-radius: 12px;

      border: none;

    }

    .socials a {

      margin: 0 10px;

      color: #ff4500;

      font-size: 1.5rem;

      text-decoration: none;

    }

    footer {

      background: #111;

      padding: 20px;

      text-align: center;

      font-size: 0.9rem;

      color: #aaa;

    }

  </style>

</head>

<body>

  <!-- Navigation -->

  <nav>

    <a href="#hero">Home</a>

    <a href="#music">Music</a>

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

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

  </nav>


  <!-- Hero Section -->

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

    <h1>BIG SURPY</h1>

    <p>Vibes. Culture. Energy.</p>

    <a href="#music" class="btn">Listen Now</a>

  </section>


  <!-- Music Section -->

  <section id="music">

    <h2>🎶 Stream My Music</h2>

    <div style="display:flex; flex-direction:column; align-items:center; gap:20px; margin-top:30px;">

      <!-- Spotify Embed -->

      <iframe 

        src="https://open.spotify.com/embed/artist/6nuQk59S7C1pz0tnlhUbRv?utm_source=generator" 

        width="350" height="380" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>

      

      <!-- YouTube Embed -->

      <iframe 

        width="560" height="315" 

        src="https://www.youtube.com/embed?listType=user_uploads&list=BIGSURPY" 

        title="BIG SURPY YouTube" 

        allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>

    </div>

  </section>


  <!-- About Section -->

  <section id="about">

    <h2>About Me</h2>

    <p>

      I am BIG SURPY — Afrobeat artist bringing energy, vibe, hustle, and resilience 

      to the culture. Every track tells a story, every beat is a journey.

    </p>

  </section>


  <!-- Contact Section -->

  <section id="contact">

    <h2>Contact</h2>

    <p>For bookings and collaborations, reach out:</p>

    <p>Email: <a href="mailto:ifezueeeee@gmail.com">ifezueeeee@gmail.com</a></p>

    <p>Phone: <a href="tel:4434009757">443-400-9757</a></p>

    <div class="socials">

      <a href="https://open.spotify.com/artist/6nuQk59S7C1pz0tnlhUbRv" target="_blank">Spotify</a>

      <a href="https://www.youtube.com/@BIGSURPY/releases" target="_blank">YouTube</a>

    </div>

  </section>


  <!-- Footer -->

  <footer>

    © 2025 BIG SURPY. All rights reserved.

  </footer>

</body>

</html>