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

:root {
  /* Color Palette */
  --bg-color: #020300;
  --text-color: #FFFFFF;
  --accent-color: #BAFF29;
  /* Neon Green */
  --secondary-color: #A167A5;
  /* Purple */
  --dark-grey: #1a1a1a;
  --panel-bg: rgba(255, 255, 255, 0.05);

  /* Typography */
  --font-main: 'Inter', sans-serif;
  --font-display: 'Outfit', sans-serif;
  /* For headers */

  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;
}

/* Modal - Top Level for Guaranteed Loading */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.modal-overlay.active {
  display: flex !important;
}

.modal-content {
  background: var(--dark-grey);
  border: 1px solid var(--accent-color);
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 0 30px rgba(186, 255, 41, 0.2);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-title {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.modal-message {
  margin-bottom: 30px;
  font-size: 1.1rem;
}


*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

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

/* Typography Utility */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 8vw, 3.5rem);
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  color: var(--accent-color);
}

h3 {
  font-size: 1.5rem;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--accent-color);
  color: var(--bg-color);
  box-shadow: 0 0 15px var(--accent-color);
}

.btn-primary {
  background: var(--accent-color);
  color: var(--bg-color);
}

.btn-primary:hover {
  background: transparent;
  color: var(--accent-color);
}

.section-margin {
  padding: 80px 0;
}

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(2, 3, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links li a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
}

.nav-links li a.active {
  color: var(--accent-color);
}

.nav-links li a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-color);
}

.nav-links li a.btn.active {
  color: var(--bg-color);
  /* Keep text dark on button */
}

.nav-links li a.btn.active::after {
  display: none;
  /* No underline for button */
}

.nav-links li a.btn.active:hover {
  color: var(--accent-color);
}

/* Mobile Menu */
.hamburger {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--text-color);
  background: none;
  border: none;
  padding: 0;
}

/* Footer */
footer {
  background: var(--dark-grey);
  padding: 60px 0 20px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h4 {
  color: var(--accent-color);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  font-size: 1.2rem;
}

.copyright {
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

/* Forms */
input,
textarea,
select {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  margin-bottom: 20px;
  font-family: var(--font-main);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-color);
    flex-direction: column;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .nav-links.nav-active {
    transform: translateX(0);
  }

  .nav-links li {
    opacity: 1;
    transform: translateY(0);
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Releases Grid */
.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .releases-grid {
    grid-template-columns: 1fr;
  }

  /* Shared Responsive Utilities */
  .grid-stack-mobile {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .flex-stack-mobile {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .responsive-iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9;
  }
}

/* Page Specific Class definitions */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.bio-flex {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bio-flex {
    flex-direction: column;
    gap: 30px;
  }

  .bio-flex img {
    width: 100%;
    height: auto;
  }
}

/* ── Private Events Page ── */
.pe-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/assets/home-bg.webp') center center / cover no-repeat;
  text-align: center;
  overflow: hidden;
}

.pe-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(2, 3, 0, 0.6) 0%,
      rgba(2, 3, 0, 0.85) 100%);
}

.pe-hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 20px 80px;
}

.pe-tagline {
  font-family: var(--font-main);
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 20px;
  opacity: 0.9;
}

.pe-hero h1 {
  margin-bottom: 20px;
}

.pe-hero h1 .accent {
  color: var(--accent-color);
}

.pe-subtitle {
  font-size: 1.1rem;
  opacity: 0.7;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.pe-cta {
  font-size: 1.1rem;
  padding: 16px 40px;
}

.pe-section {
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pe-section:last-child {
  border-bottom: none;
}

.pe-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

.pe-intro-text {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.85;
}

/* Services Grid */
.pe-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pe-service-card {
  background: var(--panel-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  text-align: center;
  border-radius: 8px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pe-service-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
}

.pe-service-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.pe-service-card h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.pe-service-card p {
  font-size: 0.95rem;
  opacity: 0.75;
  line-height: 1.7;
}

/* Features Grid */
.pe-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pe-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 25px;
  background: var(--panel-bg);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pe-check {
  color: var(--accent-color);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pe-feature strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.pe-feature p {
  font-size: 0.9rem;
  opacity: 0.7;
  line-height: 1.6;
}

/* Genre Tags */
.pe-genres {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.pe-genre-tag {
  padding: 10px 24px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.pe-genre-tag:hover {
  background: var(--accent-color);
  color: var(--bg-color);
}

/* CTA Section */
.pe-cta-section {
  text-align: center;
  padding-bottom: 100px;
}

.pe-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .pe-hero {
    min-height: 60vh;
  }

  .pe-services-grid {
    grid-template-columns: 1fr;
  }

  .pe-features-grid {
    grid-template-columns: 1fr;
  }

  .pe-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .pe-section {
    padding: 50px 0;
  }
}