/* --- BASE STYLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: #000;
}

.main-wrapper {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  padding: 20px;
  position: relative;
  z-index: 10;
  color: #ffffff; /* Always white for content */
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.6);
  transition: color 1.5s ease;
}

/* Note: Light Mode Overrides removed from here */

nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex: 0 0 auto;
  padding: 10px 0;
}

nav a {
  text-decoration: none;
  color: #ffffff !important;
  opacity: 0.7;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 2px;
  transition: color 1.5s ease;
}

nav a.active-link {
  opacity: 1;
  border-bottom: 1px solid #ffffff;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.panel {
  display: none;
  text-align: center;
  width: 100%;
  max-width: 600px;
  animation: fadeIn 0.8s ease forwards;
}

.panel.active { display: block; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.music-scroll-area {
  max-height: 50vh;
  overflow-y: auto;
  padding: 10px;
  scrollbar-width: none;
}
.music-scroll-area::-webkit-scrollbar { display: none; }

.music-stack iframe {
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
}

h1 { font-size: clamp(1.8rem, 6vw, 3rem); font-weight: 200; letter-spacing: -1px; }
.tagline { font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; margin-top: 5px; opacity: 0.8; color: #ffffff !important; }
h2 { font-size: 1.2rem; font-weight: 400; text-transform: uppercase; margin-bottom: 15px; }
p { line-height: 1.6; font-weight: 300; font-size: 0.95rem; color: #ffffff !important; }

.email-btn {
  color: #ffffff !important;
  text-decoration: none;
  border: 1px solid #ffffff;
  padding: 10px 20px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

footer {
  flex: 0 0 auto;
  padding: 20px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.socials img {
  width: 22px;
  height: auto;
  transition: transform 0.2s;
  opacity: 1;
}

.copyright {
  font-size: 0.55rem;
  opacity: 0.6;
  text-align: center;
  letter-spacing: 1px;
  margin-top: 5px;
  color: #ffffff;
}

/* --- MOBILE SPECIFIC --- */
@media (max-width: 768px) {
  body {
    overflow-y: auto !important;
    height: auto;
  }

  .main-wrapper {
    height: auto;
    min-height: 100dvh;
    padding: 10px;
    padding-bottom: 40px;
  }

  /* LIGHT MODE - MOBILE ONLY */
  .main-wrapper.light-mode nav a {
    color: #000000 !important;
    text-shadow: none;
  }

  .main-wrapper.light-mode nav a.active-link {
    border-bottom: 1px solid #000000;
  }

  nav { gap: 10px; }
  nav a { font-size: 0.6rem; }

  .music-scroll-area {
    max-height: 45vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .socials {
    gap: 15px;
    margin-top: 10px;
  }

  .socials img { width: 20px; }

  .bg-container {
    height: 100%;
    position: fixed;
  }
}