a

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>A New Experience is Coming Soon</title>
  <style>
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html, body {
    width: 100%;
    overflow-x: hidden;
  }

  body {
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    color: white;
    backdrop-filter: brightness(0.6);
  }

  .logo {
    max-width: 300px;
    width: 80%;
    margin-bottom: 40px;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    word-wrap: break-word;
  }

  p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  #countdown {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00ffcc;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 100%;
  }

  .time {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
  }

  .label {
    font-size: 1rem;
    color: #ccc;
    margin-top: 5px;
  }

  .contact-info {
    font-size: 1rem;
    color: #ddd;
    margin-top: 20px;
    line-height: 1.8;
    word-break: break-word;
  }

  .contact-info a {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
  }

  .contact-info a:hover {
    text-decoration: underline;
  }

  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }

    p {
      font-size: 1rem;
      margin-bottom: 20px;
    }

    #countdown {
      font-size: 2rem;
      padding: 15px;
      gap: 15px;
    }

    .logo {
      max-width: 240px;
    }

    .contact-info {
      font-size: 0.95rem;
    }
  }

  @media (max-width: 480px) {
    h1 {
      font-size: 1.8rem;
    }

    p {
      font-size: 1rem;
    }

    #countdown {
      font-size: 1.8rem;
    }

    .time {
      min-width: 60px;
    }
  }
</style>
</head>
<body>
  <img src="logo.png" alt="Company Logo" class="logo" />
  <h1>A New Experience is Coming Soon</h1>
  <p>Our website is getting a fresh look. Stay tuned!</p>

  <div id="countdown">
    <span class="time" id="days">00<div class="label">Days</div></span>
    <span class="time" id="hours">00<div class="label">Hours</div></span>
    <span class="time" id="minutes">00<div class="label">Minutes</div></span>
    <span class="time" id="seconds">00<div class="label">Seconds</div></span>
  </div>

  <div class="contact-info">
    📧 Email: <a href="mailto:qjpmusic@qjpmusic.com">qjpmusic@qjpmusic.com</a><br/>
    📞 Phone: <a href="tel:+13362559371">+1 (336) 255-9371</a><br/>
    📍 Address: 834 Huffman St, Greensboro, NC 27405
  </div>

  <script>
    const launchDate = new Date("2025-06-01T00:00:00");

    function updateCountdown() {
      const now = new Date().getTime();
      const distance = launchDate - now;

      const days = Math.floor(distance / (1000 * 60 * 60 * 24));
      const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
      const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
      const seconds = Math.floor((distance % (1000 * 60)) / 1000);

      document.getElementById("days").innerHTML = days.toString().padStart(2, '0') + '<div class="label">Days</div>';
      document.getElementById("hours").innerHTML = hours.toString().padStart(2, '0') + '<div class="label">Hours</div>';
      document.getElementById("minutes").innerHTML = minutes.toString().padStart(2, '0') + '<div class="label">Minutes</div>';
      document.getElementById("seconds").innerHTML = seconds.toString().padStart(2, '0') + '<div class="label">Seconds</div>';

      if (distance < 0) {
        document.getElementById("countdown").innerHTML = "We're Live!";
      }
    }

    updateCountdown();
    setInterval(updateCountdown, 1000);
  </script>
</body>
</html>