/* =====================================================
   FEMME FATALE FEST 2026
   Clean Production CSS
===================================================== */

/* ================================
   DESIGN TOKENS
================================ */

:root {

  /* === BACKGROUNDS === */
  --color-bg: #0D0712;        /* Deep purple-black */
  --color-bg-alt: #1A0F1F;    /* Secondary section background */
  --color-panel: #221329;     /* Card / panel surface */

  /* === PRIMARY BRAND COLORS === */
  --color-acid: #00d5a5;      /* Neon teal (primary accent) */
  --color-red: #8a0076 ;       /* Magenta (replaces red) */
  --color-white: #F5F5F5;
  --color-muted: #9F8AA8;     /* Muted purple-gray */

  /* === TYPOGRAPHY === */
  --font-main: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-h1: clamp(2.8rem, 7vw, 5rem);
  --font-h2: clamp(1.8rem, 4vw, 2.6rem);
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* === UI SYSTEM === */
  --radius: 0.6rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.65);

  --transition: 0.25s ease;
}

.btn:hover {
  box-shadow: 0 0 25px rgba(30,212,184,0.4);
}

h2::after {
  background: linear-gradient(90deg, var(--color-red), var(--color-acid));
}

/* ================================
   BASE
================================ */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-white);
  font-size: var(--font-body);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* Subtle grain texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.floating-donate {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--color-red);
  color: #111;
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
}

.section-divider {
  height: 3px;
  width: 120px;
  background: var(--color-red);
  margin: 4rem auto;
}

.hidden-field {
  display: none;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 24px;
  transition: opacity 0.3s ease;
}

.form-status.success {
  color: var(--color-acid);
}

.form-status.error {
  color: var(--color-red);
}


/* ================================
   NAVIGATION
================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 1000;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo {
  font-weight: 900;
  color: var(--color-acid);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 700;
  position: relative;
  transition: color var(--transition);
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--color-acid);
  transition: width var(--transition);
}

.nav-menu a:hover {
  color: var(--color-acid);
}

.nav-menu a:hover::after {
  width: 100%;
}

.cta-nav {
  background: var(--color-red);
  color: #111;
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
}

.nav-menu li a {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ================================
   MOBILE NAV
================================ */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger {
  width: 26px;
  height: 3px;
  background: var(--color-acid);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 3px;
  background: var(--color-acid);
  transition: var(--transition);
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

/* Active hamburger animation */
.nav-toggle.active .hamburger {
  background: transparent;
}

.nav-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Responsive behavior */
@media (max-width: 925px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #111;
    flex-direction: column;
    width: 220px;
    padding: 1rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}



/* ================================
   TYPOGRAPHY
================================ */

h1, h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.08em;
}

h1 {
  font-size: var(--font-h1);
  color: var(--color-acid);
  letter-spacing: 0.03em;
  line-height: 1.05;
  text-shadow: 2px 2px 0 var(--color-red);
}

h2 {
  font-size: var(--font-h2);
  color: var(--color-acid);
  margin-bottom: 0.6em;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-red), var(--color-acid));
  margin-top: 0.4em;
}

/* ================================
   LAYOUT
================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 1.2rem;
}

section {
  position: relative;
   /* padding: clamp(5rem, 10vw, 8rem) 0; */
}

section:nth-of-type(even) {
  background: var(--color-bg-alt);
}

section + section {
  margin-top: -2rem;
}

section {
  box-shadow: 0 -1px 0 rgba(255,255,255,0.04) inset;
}

.section-alt1 {
  background: linear-gradient(
    to bottom,
    var(--color-bg-alt1),
    #0e0e0e
  );
}

.section-alt2 {
  background: linear-gradient(
    to bottom,
    var(--color-bg-alt2),
    #0d0d0d
  );
}


/* ================================
   HERO
================================ */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding-left: clamp(2rem, 8vw, 8rem);

  overflow: hidden;
  /* background:
    radial-gradient(circle at 50% 30%, rgba(255,42,42,0.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.9)),
    url('/images/_DSC1400.jpg') center/cover no-repeat; */
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-poster img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}


.hero-year {
  display: block;
  font-size: 0.8em;
  color: var(--color-red);
}


.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(230,255,42,0.05), transparent 70%);
  animation: pulseGlow 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0% { opacity: 0.3; }
  50% { opacity: 0.6; }
  100% { opacity: 0.3; }
}




.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,42,42,0.15), transparent 60%);
  pointer-events: none;
}

.hero h1 {
 font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.08em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow:
    0 0 20px rgba(230,255,42,0.25),
    0 6px 30px rgba(0,0,0,0.6);
}

.hero-cta .btn-acid {
  box-shadow: 0 0 25px rgba(230,255,42,0.3);
}

.hero-cta .btn-acid:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(230,255,42,0.4);
}




.hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  max-width: 900px;
}

.hero-content.revealed {
  opacity: 1;
  transform: translateY(0);
}


.subheadline {
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-year {
  position: relative;
  display: inline-block;
  color: #ffffff;
  animation: glitch-main 3s infinite;
}

/* Red layer */
.hero-year::before,
.hero-year::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.8;
}

.hero-year::before {
  color: #ff2a2a;
  z-index: -1;
  animation: glitch-red 3s infinite;
}

.hero-year::after {
  color: #00ffd0;
  z-index: -2;
  animation: glitch-cyan 3s infinite;
}

@keyframes glitch-main {
  0% { transform: none; }
  2% { transform: skewX(5deg); }
  4% { transform: none; }
  100% { transform: none; }
}

@keyframes glitch-red {
  0% { transform: translate(0); }
  2% { transform: translate(-3px, 2px); }
  4% { transform: translate(0); }
  100% { transform: translate(0); }
}

@keyframes glitch-cyan {
  0% { transform: translate(0); }
  2% { transform: translate(3px, -2px); }
  4% { transform: translate(0); }
  100% { transform: translate(0); }
}

@media (max-width: 900px) {
  .hero {
    text-align: center;
    padding-left: 1rem;
  }
}

@media (max-width: 900px) {

  .hero {
    position: relative;
    background: url("/website/images/Femme_Fatale_FInal.jpg") center/cover no-repeat;
    padding: 7rem 1.5rem;
    text-align: center;
  }

    .hero h1 {
    color: #ffffff;
  }

  .hero h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #ff2a2a;
  margin: 1rem auto 0;
}

   .hero-cta .btn-acid {
    box-shadow: 0 0 25px rgba(0,255,200,0.4);
    margin-bottom: 10px;
  }

  .hero-cta .btn-outline {
    border-color: #ffffff;
    color: #ffffff;
  }

  /* Dark overlay */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(
        to bottom,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.7) 40%,
        rgba(0,0,0,0.85) 100%
      );
  }

  .hero-grid {
    display: block;
  }

  .hero-poster {
    display: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    padding: 2.5rem 1.5rem;
    border-radius: 1rem;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

}


.hero-strip img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.85);
}

/* ================================
  BUTTONS
================================ */

.btn {
  display: inline-block;
  font-weight: 800;
  padding: 0.7em 1.8em;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.btn-acid {
  background: var(--color-acid);
  color: #111;
  box-shadow: 4px 4px 0 var(--color-red);
}

.btn-red {
  background: var(--color-red);
  color: #111;
}

.btn-outline {
  border: 2px solid var(--color-acid);
  color: var(--color-acid);
}

.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--color-red);
}

.graphic-divider {
  height: 6px;
  width: 120px;
  background: var(--color-red);
  margin: 4rem auto;
}

.submit-band .btn-red {
  font-size: 1rem;
  letter-spacing: 0.12em;
  padding: 1rem;
}

.floating-donate {
  color: white;
  text-decoration: none;
}


/* ================================
  STATS
================================ */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  text-align: center;
}

.stats {
  background: #0f0f0f;
  padding: 6rem 0;
}


.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 320px;
  padding: 2rem 1rem;
  position: relative;
}

.stat-number {
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: var(--color-acid);
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  display: block;
}

.stat-label {
    margin-top: 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.7;
}

.stat::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    rgba(230,255,42,0.06),
    transparent 70%
  );
  z-index: -1;
}




/* ================================
  About
================================ */

.about {
justify-items: center;
}

@media (max-width: 768px) {
    .about {
        padding: 3rem 1rem;
    }
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  
}

.about-image img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.rosehaven-photo {
  width: 100%;
  /* max-width: 600px; */
  margin-top: 2rem;
  border-radius: 0.8rem;
}


/* =========================================
  SPONSORS - Modern & Clean
========================================= */

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 3rem;
  align-items: center;
}

.sponsor-card {
  background: linear-gradient(145deg, #151515, #0e0e0e);
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-card img {
  max-width: 160px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-acid);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.sponsor-card:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.05);
}

/* Sponsor tiers */
.tier-gold {
  border: 2px solid var(--color-sponsor-gold);
}

.tier-silver {
  border: 2px solid var(--color-sponsor-silver);
}

.tier-bronze {
  border: 2px solid var(--color-sponsor-bronze);
}


/* =========================================
   BAND LINEUP - Modern Layout
========================================= */

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 3rem;
}

.band-card {
 background: linear-gradient(160deg, #181818, #0f0f0f);
 border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 2rem;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
}

.band-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-acid);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.band-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.band-logo img {
  max-height: 90px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(1.05);
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
}

.band-card:hover .band-logo img {
  transform: scale(1.05);
}

.band-card h3 {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-gallery h2::after {
  background: var(--color-red);
  width: 80px;
}




/* ================================
   FAQ
================================ */

.faq-item {
  background: var(--color-panel);
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.2rem;
  text-align: left;
  font-weight: 800;
  color: var(--color-acid);
  cursor: pointer;
}

.faq-question[aria-expanded="true"] {
  background: var(--color-red);
  color: var(--color-white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 12px;
  padding-right: 12px;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


/* ================================
   FORMS
================================ */

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input,
textarea {
  background: #111;
  border: 2px solid var(--color-acid);
  color: var(--color-white);
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
}

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

/* ================================
   FOOTER
================================ */

.site-footer {
  background: #0f0f0f;
  text-align: center;
  padding: 2rem 1rem;
  color: var(--color-muted);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .container {
    padding: 3rem 1rem;
  }
}

/* =========================================
  LIVE GALLERY - Feminist Bold Editorial
========================================= */

.live-gallery {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.gallery-feature {
  grid-row: span 2;
}

.gallery-wide {
  grid-row: span 2;
}


.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 2px solid transparent;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.05);
  transition: transform 0.4s ease, filter 0.4s ease;
  border-radius: 0.75rem;
}

.gallery-item:hover {
  border-color: var(--color-red);
  transform: scale(1.03);
  filter: brightness(1.1);
}

.gallery-item:nth-child(2) {
  transform: rotate(-1deg);
}

.gallery-item:nth-child(3) {
  transform: rotate(1deg);
}


/* Subtle rebel hover effect */
.gallery-item:hover img {
  transform: scale(1.05);
  filter: contrast(1.15) saturate(1.15);
}

/* Dark overlay for depth */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.1)
  );
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-feature {
    grid-row: auto;
  }

  .gallery-item {
    height: 280px;
  }
}


.live-gallery h2 {
  position: relative;
  display: inline-block;
}

.live-gallery h2::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 40px;
  background: var(--color-red);
}

.contact-form,
.band-form {
  backdrop-filter: blur(6px);
  border: 1px solid rgba(230,255,42,0.1);
}

input, textarea {
  background: #0f0f0f;
}


.photo-credit {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
  text-align: right;
}

.photo-credit a {
  color: var(--color-acid);
  text-decoration: none;
}

.photo-credit a:hover {
  text-decoration: underline;
}







