<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Responsive Playlist Page</title>
  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: Arial, sans-serif;
      background-color:#90D5FF;
    }
    nav {
      background-color: #1a1a1a;
      color: white;
      padding: 12px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
     margin-top: -26px;
    }
    .logo {
      font-size: 26px;
      font-weight: bold;
      color: #00ffcc;
    }
    ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    ul li a {
      color: white;
      text-decoration: none;
      font-size: 18px;
      transition: 0.3s;
    }
    ul li a:hover {
      color: #00ffcc;
    }
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 24px;
      cursor: pointer;
    }
    main {
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }
    h2 {
      text-align: center;
      font-size: 1.3rem;
      margin-bottom: 10px;
    }
    .media-section {
      margin-bottom: 30px;
      background: #b3e0ff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      padding: 16px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .media-section:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }
    audio, video {
      width: 100%;
      display: block;
      margin: 10px auto 0 auto;
      border-radius: 6px;
    }
    audio {
      height: 40px;
      background: #fff;
    }
    video {
      min-height: 220px;
      background: #000;
    }

    /* Footer */
    .custom-footer {
      background: #b6efb3;
      color: #222;
      margin-top: 40px;
      font-family: Arial, sans-serif;
    }
    .footer-wave {
      position: relative;
      top: -1px;
      width: 100%;
      height: 60px;
      overflow: hidden;
      line-height: 0;
    }
    .footer-wave svg {
      width: 100%;
      height: 60px;
      display: block;
    }
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1100px;
      margin: 0 auto;
      padding: 60px 20px 20px 20px;
    }
    .footer-col {
      flex: 1 1 180px;
      margin: 10px 20px;
      min-width: 160px;
    }
    .footer-col h4 {
      font-size: 1.1rem;
      margin-bottom: 12px;
      font-weight: bold;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
    }
    .footer-col ul li {
      margin-bottom: 8px;
    }
    .footer-col ul li a {
      color: #222;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover {
      color: #388e3c;
      text-decoration: underline;
    }
    .footer-bottom {
      border-top: 1px solid #a5d6a7;
      margin-top: 24px;
      padding: 16px 20px 10px 20px;
      font-size: 0.95rem;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .mobile-menu-toggle {
        display: block;
      }
      nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
      }
      nav ul.active {
        display: flex;
      }
      nav ul li {
        width: 100%;
        text-align: center;
        padding: 8px 0;
      }
    }
     body {
      font-family: Arial, sans-serif;
      background-color: #d9fdd3;
      margin: 0;
      padding: 0;
    }

    .contact-container {
      max-width: 500px;
      margin: 60px auto;
      background-color: #f0fff0;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .contact-container h2 {
      text-align: center;
      margin-bottom: 20px;
      color: #2e7d32;
    }

    .form-group {
      margin-bottom: 18px;
    }

    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-weight: bold;
      color: #333;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
    }

    .form-group textarea {
      resize: vertical;
      height: 120px;
    }

    .submit-btn {
      background-color: #4caf50;
      color: white;
      border: none;
      padding: 12px 24px;
      font-size: 16px;
      border-radius: 6px;
      cursor: pointer;
      width: 100%;
      transition: background-color 0.3s ease;
    }

    .submit-btn:hover {
      background-color: #388e3c;
    }

    @media (max-width: 600px) {
      .contact-container {
        margin: 30px 15px;
        padding: 20px;
      }
    }
  

  <footer class="custom-footer">
    <div class="footer-wave">
      <svg viewBox="0 0 1200 60" preserveAspectRatio="none">
        <path d="M0,0 C600,60 600,0 1200,60 L1200,0 L0,0 Z" fill="#90D5FF"></path>
      </svg>
    </div>
    <div class="footer-container">
      <div class="footer-col">
        <h4>Quick Links</h4>
        <ul>
          <li><a href="#">Home</a></li>
          <li><a href="#">Songs</a></li>
          <li><a href="#">Videos</a></li>
        </ul>
      </div>
      <div class="footer-col">
        <h4>Contact</h4>
        <ul>
          <li><a href="#">Email</a></li>
          <li><a href="#">Phone</a></li>
        </ul>
      </div>
    </div>
    <div class="footer-bottom">
      <div>© 2025 Wasi's Playlist</div>
      <div class="footer-links">
        <a href="#">Privacy</a> |
        <a href="#">Terms</a>
      </div>
    </div>
  </footer>

  <script>
    const toggle = document.querySelector('.mobile-menu-toggle');
    const menu = document.querySelector('nav ul');
    toggle.addEventListener('click', () => {
      menu.classList.toggle('active');
    });
  </script>
</body>
</html>
