:root {
  --bg: #0f1221;
  --panel: #161a2f;
  --panel-2: #1b2040;
  --text: #e7e9ee;
  --muted: #9aa3b2;
  --accent: #7c5cff;
  --accent-2: #57d6ff;
  --ring: 0 0 0 3px rgba(124,92,255,.35);
  --radius: 16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(124,92,255,.15), transparent 60%),
              radial-gradient(1000px 500px at 100% 0%, rgba(87,214,255,.12), transparent 60%),
              var(--bg);
  background-attachment: fixed; /* keeps gradient fixed while scrolling /
  background-size: cover;       / full coverage */
  background-repeat: no-repeat;
  color: var(--text);
  font: 16px/1.6 system-ui, -apple-system, Segoe UI, Roboto, Inter, "Helvetica Neue", Arial;
}
.container { max-width: 1100px; margin: 0 auto; padding: 24px; }

/* Top gallery */
.top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 12px;
}
.top img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (min-width: 760px) {
  .top { grid-template-columns: 1fr 1fr; }
  .top img { height: 320px; }
}


/* Welcome */
.welcome {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  padding: 24px;
  border-radius: var(--radius);
  margin: 22px 0;
  box-shadow: var(--shadow);
}
.welcome h1 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.2vw + .5rem, 2.4rem);
}
.welcome p { margin: 0; color: var(--muted); }

/* Section titles */
.section-title {
  display: flex; align-items: center; gap: 10px;
  margin: 28px 0 14px;
}
.section-title .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 0 4px rgba(124,92,255,.15);
}
.section-title h2 { margin: 0; }

/* Playlist */
.playlist { display: flex; flex-direction: column; gap: 12px; }

details.track {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,.28);
}
details.track[open] { border-color: rgba(124,92,255,.45); }
summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}
summary::-webkit-details-marker { display: none; }

.index {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(124,92,255,.16);
  color: #ddd; font-weight: 600;
}
.meta { display: flex; flex-direction: column; }
.title { font-weight: 600; }
.artist { font-size: .9rem; color: var(--muted); }

.play {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid; place-items: center;
}
.play svg { width: 18px; height: 18px; }

.panel { padding: 0 16px 16px; display: grid; gap: 12px; }

.lyrics {
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 12px;
  overflow: auto;
  line-height: 1.55;
}

.lyrics h4 { margin: 0 0 8px; }
.lyrics p { white-space: pre-line; margin: 0; color: #d9deea; }

.embed { border-radius: 12px; border: 1px solid rgba(255,255,255,.08); overflow: hidden; }
.embed iframe { width: 100%; height: 152px; border: 0; }

.hint { color: var(--muted); font-size: .92rem; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Contact form */
.contact-form {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
}
.contact-form input,
.contact-form textarea {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 12px;
  color: var(--text);
  font: inherit;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: var(--ring);
}
.contact-form button {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: none;
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  box-shadow: var(--shadow);
}
.contact-form button:hover {
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--panel);
  text-align: center;
  padding: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ...existing code... */

 /* Modal Background */
  .modal {
    display: block; 
    position: fixed; 
    z-index: 9999; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0,0,0,0.6); 
  }

  /* Modal Content */
  .modal-content {
    background: #fff;
    margin: 12% auto; 
    padding: 20px 30px;
    border-radius: 8px;
    width: 400px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    font-family: Arial, sans-serif;
    position: relative;

  }

  /* Header */
  .modal-content h2 {
    margin-top: 0;
    font-size: 20px;
    color: #000;
    
  }

  /* Text */
  .modal-content p {
    font-size: 15px;
    color: #000;
    margin: 10px 0;
  }

  .modal-content i {
    font-size: 40px;
    color: white;
    margin: 10px 0;
  }

  /* Close Button */
  .close {
    position: absolute;
    right: 20px;
    top: 1px;
    font-size: 22px;
    font-weight: bold;
    color: #888;
    cursor: pointer;
  }
  .close:hover {
    color: #000;
  }

  /* Success / Error Colors */
  .success { color: green;  }
  .error { color: red;  }


.content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh; 
  padding: 0 20px;
  position: relative;
  overflow: hidden;
  background: url("img/header.jpg") center center no-repeat;
  background-size: cover;  
}


@media screen and (max-width: 767px) {
  .content-wrapper {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #000; 
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin: 0 auto;
  position: relative;         /* keep text above the background */
  z-index: 2;
}

.text-section h1 {
  font-size: clamp(25px, 5vw, 50px);
  line-height: 1.1;
  font-weight: bold;
  background: linear-gradient(120deg, #ffffff 20%, #ffffff 80%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowMove 10s linear infinite;
  margin-bottom: 20px;
  margin-top: 20px;
}
.text-section p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: #ccc;
  margin-bottom: 30px;
}

    .text-section p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #ccc;
    }

    /* Extra Large Devices (1200px and up) */
    @media screen and (min-width: 1200px) {
      .text-section h1 {
        font-size: 115px;
      }
    }

    /* Large Devices (992px to 1199px) */
    @media screen and (min-width: 992px) and (max-width: 1199px) {
      .text-section h1 {
        font-size: 115px;
      }
    }

    /* Medium Devices (Tablets: 768px to 991px) */
    @media screen and (min-width: 768px) and (max-width: 991px) {
      .content-wrapper {
        flex-direction: column;
        text-align: center;
      }
      .text-section h1 {
        font-size: 85px;
      }
      .text-section {
        align-items: center;
      }

    }
/* Small Devices (Phones landscape: 576px to 767px) */
    @media screen and (min-width: 576px) and (max-width: 767px) {
      .content-wrapper {
        flex-direction: column;
        gap: 30px;
        text-align: center;
      }
      .text-section h1 {
        font-size: 75px;
      }
      .text-section {
        align-items: center;
      }
    }

    /* Extra Small Devices (Phones portrait: less than 576px) */
    @media screen and (max-width: 575px) {
      .content-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
        text-align: center;
        min-height: auto;
      }
      .text-section h1 {
        font-size: 55px;
      }
      .text-section {
        align-items: center;
      }
      .cover img {
        max-width: 100%;
      }
    }

    /* Very Small Devices (Less than 400px) */
    @media screen and (max-width: 399px) {
      .text-section h1 {
        font-size: 40px;
      }
      .text-section p {
        font-size: 1rem;
      }
    }

    /* Orientation: Portrait */
    @media screen and (orientation: portrait) {
      .content-wrapper {
        flex-direction: column;
        text-align: center;
      }
    }


  /* Top gallery */
.top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 12px;
}
.top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (min-width: 760px) {
  .top { grid-template-columns: 1fr 1fr; }
  .top img { height: 100%; }
}

.logo-container {
  position: absolute;
  top: 20px;     
  left: 20px;    
  display: flex;
  gap: 15px;     
  z-index: 3;    
  align-items: center;
  justify-content: center;
}

.logo-container img {
  width: 80px;  
  height: auto;
  object-fit: contain;
}
@media (max-width: 600px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 30px;
    position: relative;
  }
  .logo-container {
    position: static;
    margin-bottom: -35px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
  }
  .logo-container img {
    max-width: 80px;
    height: auto;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 30px;
    position: relative;
  }
  .logo-container {
    position: static;
    margin-bottom: 16px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 10px;
  }
  .logo-container img {
    max-width: 80px;
    height: auto;
  }
}
@media (max-width: 1024px) {
  .content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 30px;
    position: relative;
  }
  .logo-container {
    position: static;
    margin-bottom: 18px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 12px;
  }
  .logo-container img {
    max-width: 90px;
    height: auto;
  }
}

.lyrics-frame {
  width: 100%;
  height: 70vh;   /* 70% of screen height */
  border: none;
  border-width: none;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .lyrics-frame {
    height: 60vh;
  }
}

@media (max-width: 480px) {
  .lyrics-frame {
    height: 50vh;
  }
}





