/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --neon-pink: #e040fb;
  --neon-purple: #7c4dff;
  --neon-glow: 0 0 10px rgba(224, 64, 251, 0.4), 0 0 40px rgba(224, 64, 251, 0.15);
  --bg: #0a0a0a;
  --bg-alt: #0f0f14;
  --text: #ffffff;
  --text-muted: #888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --header-h: 70px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background: rgba(10, 10, 10, 0.60);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1100;
  border-bottom: 1px solid rgba(224, 64, 251, 0.1);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #ccc;
  transition: color var(--transition), transform var(--transition), filter var(--transition);
}

.social-icons a svg {
  width: 18px;
  height: 18px;
}

.social-icons a:hover {
  color: var(--neon-pink);
  transform: translateY(-2px);
  filter: drop-shadow(0 0 6px rgba(224, 64, 251, 0.5));
}

/* Logo */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo a {
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 4px;
  color: #fff;
}

.logo-accent {
  color: var(--neon-pink);
  text-shadow: var(--neon-glow);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1200;
  position: relative;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== SLIDE-IN MENU ========== */
.menu-overlay {
  position: fixed;
  top: 0;
  right: -320px;
  width: 280px;
  height: 100vh;
  background: rgba(12, 12, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1050;
  border-left: 1px solid rgba(224, 64, 251, 0.1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 90px 32px 40px;
}

.menu-overlay.open {
  right: 0;
}

.overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.overlay-link {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: #ccc;
  padding: 10px 0;
  transition: color var(--transition), padding-left var(--transition);
  transform: translateX(20px);
  opacity: 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.menu-overlay.open .overlay-link {
  transform: translateX(0);
  opacity: 1;
}

.menu-overlay.open .overlay-link:nth-child(1) { transition-delay: 0.08s; }
.menu-overlay.open .overlay-link:nth-child(2) { transition-delay: 0.12s; }
.menu-overlay.open .overlay-link:nth-child(3) { transition-delay: 0.16s; }
.menu-overlay.open .overlay-link:nth-child(4) { transition-delay: 0.2s; }
.menu-overlay.open .overlay-link:nth-child(5) { transition-delay: 0.24s; }
.menu-overlay.open .overlay-link:nth-child(6) { transition-delay: 0.28s; }

.overlay-link:hover {
  color: var(--neon-pink);
  padding-left: 8px;
}

.overlay-login {
  margin-top: 20px;
  font-size: 14px !important;
  color: #555;
  letter-spacing: 2px;
  border-bottom: none;
}

.overlay-login:hover {
  color: var(--neon-pink);
}

/* Menu Backdrop */
.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 64, 251, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 100px;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 1;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--bg) 0%, rgba(10, 10, 10, 0.6) 50%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 12vw, 110px);
  letter-spacing: 10px;
  line-height: 1;
  text-shadow: 0 2px 30px rgba(0,0,0,0.7);
  position: relative;
  z-index: 2;
}

.neon-text {
  color: var(--neon-pink);
  text-shadow: var(--neon-glow), 0 2px 30px rgba(0,0,0,0.5);
}

.hero-subtitle {
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.8);
  position: relative;
  z-index: 2;
}



/* Scroll Arrows */
.scroll-arrows {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 40px;
  color: var(--neon-pink);
  gap: 0;
  cursor: pointer;
  transition: transform var(--transition);
}

.scroll-arrows:hover {
  transform: translateY(4px);
}

.arrow {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px rgba(224, 64, 251, 0.6));
}

.arrow-1 {
  animation: bounceArrow 2s ease-in-out infinite;
}

.arrow-2 {
  margin-top: -14px;
  animation: bounceArrow 2s ease-in-out infinite 0.15s;
  opacity: 0.5;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ========== SECTIONS ========== */
.section {
  padding: 100px 20px;
}

.section-alt {
  background: var(--bg-alt);
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: 4px;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-purple));
  margin: 16px auto 0;
  border-radius: 2px;
  box-shadow: var(--neon-glow);
}

/* ========== ABOUT ========== */
.about-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.85;
  color: #ccc;
}

.about-content .quote {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--neon-pink);
  text-shadow: var(--neon-glow);
  margin: 32px 0;
}

/* ========== DISCOGRAPHY ========== */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}

.disc-card {
  display: block;
  text-align: center;
  transition: transform var(--transition);
}

.disc-card:hover {
  transform: translateY(-6px);
}

.disc-cover {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #111;
  border: 1px solid rgba(224, 64, 251, 0.15);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.disc-card:hover .disc-cover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(224, 64, 251, 0.2);
}

.disc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.disc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--neon-pink);
  font-size: 13px;
  font-weight: 500;
}

.disc-card:hover .disc-overlay {
  opacity: 1;
}

.play-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(224, 64, 251, 0.6));
}

.disc-title {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 2px;
}

/* ========== MEDIA GALLERY ========== */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.media-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.media-item:hover {
  transform: scale(1.03);
  border-color: rgba(224, 64, 251, 0.3);
  box-shadow: 0 4px 20px rgba(224, 64, 251, 0.15);
  z-index: 2;
}

.media-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.media-empty {
  color: #333;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--transition), transform var(--transition);
}

.lightbox-close:hover {
  color: var(--neon-pink);
  transform: rotate(90deg);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img,
.lightbox-content svg {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
}

/* ========== CONTACT ========== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  position: relative;
  margin-bottom: 28px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  padding: 18px 16px 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--neon-pink);
  box-shadow: 0 0 0 2px rgba(224, 64, 251, 0.15);
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--text-muted);
  font-size: 14px;
  pointer-events: none;
  transition: all var(--transition);
}

.form-group-checkbox label {
  position: static;
  pointer-events: auto;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 4px;
  font-size: 10px;
  color: var(--neon-pink);
  letter-spacing: 0.5px;
}

.form-error {
  display: none;
  color: #ff5252;
  font-size: 12px;
  margin-top: 6px;
  padding-left: 4px;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #ff5252;
}

.form-group.error .form-error {
  display: block;
}

/* Checkbox */
.form-group-checkbox {
  margin-bottom: 28px;
  margin-top: 8px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1.5;
  color: #aaa;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  margin-top: 1px;
  position: relative;
  transition: border-color var(--transition), background var(--transition);
}

.checkbox-label input:checked + .checkmark {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
}

.checkbox-label input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text a {
  color: var(--neon-pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkbox-text a:hover {
  color: #fff;
}

.form-group-checkbox.error .checkmark {
  border-color: #ff5252;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 1px;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
}

.btn-submit svg {
  width: 18px;
  height: 18px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(224, 64, 251, 0.35);
}

.btn-submit:active {
  transform: translateY(0);
}

.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px;
  background: rgba(224, 64, 251, 0.1);
  border: 1px solid rgba(224, 64, 251, 0.3);
  border-radius: 8px;
  text-align: center;
  color: var(--neon-pink);
  font-size: 14px;
}

.form-success.show {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== FOOTER ========== */
.site-footer {
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.footer-link {
  color: var(--text-muted);
  font-size: 13px;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--neon-pink);
}

.footer-divider {
  color: rgba(255, 255, 255, 0.15);
  font-size: 13px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

/* ========== LEGAL PAGES ========== */
.legal-page .container {
  max-width: 750px;
}

.legal-content {
  color: #bbb;
  font-size: 14px;
  line-height: 1.85;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 1px;
  color: #fff;
  margin: 36px 0 12px;
}

.legal-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: #ddd;
  margin: 24px 0 8px;
}

.legal-content p {
  margin-bottom: 14px;
}

.legal-content ul, .legal-content ol {
  margin: 8px 0 16px 20px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--neon-pink);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-placeholder {
  color: #555;
  font-style: italic;
}

.legal-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.back-link {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  transition: color var(--transition);
}

.back-link:hover {
  color: var(--neon-pink);
}

/* ========== SCROLL ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  .social-icons {
    gap: 8px;
  }

  .social-icons a svg {
    width: 15px;
    height: 15px;
  }

  .logo-text {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .hero-content {
    padding-bottom: 60px;
  }


  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .section {
    padding: 70px 16px;
  }

  .section-title {
    margin-bottom: 36px;
  }

  .about-content p {
    font-size: 14px;
    text-align: left;
  }

  .about-content .quote {
    font-size: 22px;
  }

  .discography-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .media-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .social-icons {
    gap: 5px;
  }

  .social-icons a {
    width: 22px;
    height: 22px;
  }

  .social-icons a svg {
    width: 13px;
    height: 13px;
  }

  .logo-text {
    font-size: 17px;
    letter-spacing: 1px;
  }

  .hero-title {
    letter-spacing: 4px;
  }

  .discography-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .media-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

@media (max-width: 360px) {
  .social-icons a:nth-child(n+7) {
    display: none;
  }
}
