/* === Global Reset === */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #000;
  font-family: 'aktiv-grotesk', sans-serif;
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
}

/* === Navigation Styles === */
.menu-nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: center;
}

.main-nav {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  gap: 40px;
}

.main-nav li {
  margin: 0 20px;
}

.main-nav a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  transition: color 0.3s ease-in-out;
}

.main-nav a:hover,
.nav a:hover,
.nav a.active {
  color: #fff;
  animation: flicker 1s linear infinite;
}

/* === Flicker Animation === */
@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    text-shadow: 0 0 4px #fff, 0 0 11px #fff, 0 0 19px #fff;
    opacity: 1;
    color: #fff;
  }
  20%, 24%, 55% {
    text-shadow: none;
    opacity: 0.4;
    color: #c9c9c9;
  }
}

/* === Media Section === */
.media-box {
  width: 100%;
  background-color: #000;
  overflow: hidden;
  margin-top: 60px;
  position: relative;
}

/* === Video Banner === */
.video-banner {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  position: relative;
  z-index: 10;
}

.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: none;
  outline: none;
}

.video-banner.fade-out video {
  animation: vaporizeVideo 3s ease-in-out forwards;
}

@keyframes vaporizeVideo {
  from { opacity: 1; }
  to { opacity: 0; }
}

/* === Hero Image === */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: none;
  opacity: 0;
  z-index: 20;
  pointer-events: none;
}

.hero-image.show-hero {
  display: block;
  opacity: 1;
  animation: zoomInHero 2s ease-in-out forwards;
}

@keyframes zoomInHero {
  from { transform: scale(1); opacity: 0; }
  to { transform: scale(1.05); opacity: 1; }
}

.home-page .main-content {
  margin-top: -500px;
  padding-bottom: 100px;
  background-color: #000;
  position: relative;
  z-index: 30;
}

/* === About Page Content === */
.about-content {
  margin-top: 160px; /* ⬅️ Increased to push content below logo */
  padding: 40px 20px 120px;
  background-color: #000;
  position: relative;
  z-index: 20;
}

.crew-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.member img {
  width: 180px;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
}

/* === Band Bio === */
.bio-header {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 20px;
  color: #f00;
  animation: flicker 1s linear infinite;
}

.band-bio p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ccc;
}

.bio-box {
  position: relative;
  z-index: 30;
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: #f4f4f4;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.bio-box.fade-in {
  opacity: 1;
}

.bio-box h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: flicker 1s linear infinite;
}

.bio-box p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  animation: flicker 1s linear infinite;
}

/* === Social Footer === */
.social-footer {
  width: 100%;
  text-align: center;
  z-index: 25;
  padding: 20px 0;
  position: fixed;
  bottom: 0;
  background-color: #000;
}

.social-footer a {
  color: #fff;
  font-size: 24px;
  margin: 0;
}

/* === About Page Logo & Nav Fixes === */
.logo-centered {
  max-height: 240px;
  width: auto;
  display: block;
  margin: 40px auto;
  margin-bottom: 20px;
}

.nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1rem;
}

.section-header {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-transform: uppercase;
  animation: zoomFade 1s ease-out;
  border-bottom: 2px solid #c00;
  padding-bottom: 10px;
}

/* Flickering RCO logo */
.flicker-logo {
  width: 200px;
  animation: flicker 1.5s infinite;
}

@keyframes flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
  75% { opacity: 0.8; }
}

/* Electrified headline */
.electrified-text {
  font-size: 3rem;
  color: #fff;
  text-align: center;
  margin: 40px 0;
  text-shadow: 0 0 10px #ff0000, 0 0 20px #ff0000, 0 0 30px #ff0000;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { text-shadow: 0 0 5px #ff0000; }
  50% { text-shadow: 0 0 20px #ff0000; }
  100% { text-shadow: 0 0 5px #ff0000; }
}

/* Event flyer marquee glow */
.show-flyer {
  width: 100%;
  max-width: 400px;
  border: 5px solid #fff;
  box-shadow: 0 0 10px #ffcc00, 0 0 20px #ffcc00;
  animation: marqueeGlow 2s infinite alternate;
}

@keyframes marqueeGlow {
  from { box-shadow: 0 0 10px #ffcc00; }
  to { box-shadow: 0 0 20px #ffcc00; }
}

/* Event name flicker */
.event-name {
  font-size: 1.8rem;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
  animation: flickerText 1.5s infinite;
  margin-top: 20px;
}

@keyframes flickerText {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Dropdown event details */
.event-details {
  display: none;
  margin-top: 10px;
  font-size: 1rem;
  color: #ccc;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  border-left: 3px solid #ff0000;
}

/* Hidden slot toggle */
.hidden {
  display: none;
}

/* Optional toggle button styling */
button {
  background-color: #222;
  color: #ffcc00;
  border: 2px solid #ffcc00;
  padding: 10px 20px;
  margin: 20px 0;
  font-family: 'Courier New', Courier, monospace;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #ffcc00;
  color: #222;
}

.footer-links i {
  font-size: 1.5rem;
  color: #00ffff; /* Bright cyan */
  margin: 0 10px;
  animation: iconFlicker 1.5s infinite;
  transition: color 0.3s ease;
  text-shadow:
    0 0 3px #00ffff,
    0 0 6px #ffffff,
    0 0 8px #7f00ff;
}

.footer-links i:hover {
  color: #ffffff;
  text-shadow:
    0 0 6px #ffffff,
    0 0 10px #00ffff,
    0 0 12px #7f00ff;
}

@keyframes iconFlicker {
  0%, 100% { opacity: 1; }
  40% { opacity: 0.7; }
  70% { opacity: 0.9; }
}

.center-logo {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.center-logo img {
  max-width: 300px;
  margin-bottom: 10px;
}

/* Flicker Animation */
@keyframes flicker {
  0%   { opacity: 1; text-shadow: 0 0 10px #ff0000; }
  5%   { opacity: 0.8; text-shadow: 0 0 5px #7f00ff; }
  10%  { opacity: 1; text-shadow: 0 0 15px #ff0000; }
  15%  { opacity: 0.6; text-shadow: 0 0 3px #7f00ff; }
  20%  { opacity: 1; text-shadow: 0 0 20px #ff0000; }
  100% { opacity: 1; text-shadow: 0 0 10px #ff0000; }
}

/* Apply Flicker to Logo */
.center-logo img {
  max-width: 300px;
  margin-bottom: 10px;
  animation: flicker 2.5s infinite;
}

/* Apply Flicker to Header */
.merch-header {
  font-size: 2.8em;
  color: #ff0000;
  text-shadow: 0 0 10px #ff0000;
  font-family: 'your-typekit-font', sans-serif;
  letter-spacing: 1px;
  animation: flicker 2.5s infinite;
}

.merch-header {
  font-size: 2.8em;
  color: #ff0000;
  text-shadow: 2px 2px #000;
  font-family: 'your-typekit-font', sans-serif;
  letter-spacing: 1px;
}

/* Merch Grid Layout */
.merch-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 40px 20px;
}

/* Individual Merch Item */
.merch-item {
  background-color: #111;
  border: 2px solid #ff0000;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 20px #7f00ff;
  text-align: center;
  transition: transform 0.3s ease;
}

.merch-item:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px #ff0000;
}

/* Product Images */
.merch-item img {
  max-width: 100%;
  margin-bottom: 10px;
  border-radius: 4px;
}

/* QR Tag Styling */
.qr-tag img {
  width: 120px;
  margin-top: 10px;
  border: 2px dashed #ff0000;
  box-shadow: 0 0 10px #7f00ff;
}

.qr-caption {
  font-size: 0.9em;
  color: #ccc;
  margin-top: 5px;
  font-style: italic;
}

/* Buy Button */
.buy-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.buy-button:hover {
  background-color: #7f00ff;
}

/* Tagline */
.tagline {
  text-align: center;
  margin: 60px 0 20px;
  font-size: 1.2em;
  color: #ccc;
  font-style: italic;
}

/* Optional: Hide back/sleeve views until hover */
.back-view,
.sleeve-view {
  display: none;
}

.merch-item:hover .front-view {
  display: none;
}

.merch-item:hover .back-view {
  display: block;
}

/* Flicker Animation */
@keyframes flicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px #ff0000; }
  10% { opacity: 0.8; text-shadow: 0 0 5px #7f00ff; }
  20% { opacity: 0.6; text-shadow: 0 0 3px #ff0000; }
  30% { opacity: 1; text-shadow: 0 0 15px #7f00ff; }
}

/* Global Background */
body {
  background-color: #000;
  color: #fff;
  margin: 0;
  padding: 0;
  font-family: 'your-typekit-font', sans-serif;
}

.logo-banner {
  text-align: center;
  margin: 30px 0 10px;
}

.logo-small {
  width: 450px;
  height: auto;
  display: inline-block;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px;
}

.main {
  padding: 40px 20px;
}

.contact-page {
  text-align: center;
}

.contact-header {
  font-size: 3em;
  color: #ff0000;
  text-shadow: 0 0 10px #7f00ff;
  animation: flicker 2.5s infinite;
  margin-bottom: 10px;
}

.contact-subhead {
  font-size: 1.2em;
  color: #ccc;
  font-style: italic;
  margin-bottom: 40px;
}

.contact-links a {
  display: inline-block;
  margin: 10px;
  font-size: 1.1em;
  color: #ff0000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-links a:hover {
  color: #7f00ff;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #111;
  margin-top: 60px;
}

.footer-links {
  margin: 0 10px;
  color: #ff0000;
  font-size: 1.2em;
  transition: color 0.3s ease;
}

.footer-links:hover {
  color: #7f00ff;
}

@keyframes flicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 10px #ff0000; }
  10% { opacity: 0.8; text-shadow: 0 0 5px #7f00ff; }
  20% { opacity: 0.6; text-shadow: 0 0 3px #ff0000; }
  30% { opacity: 1; text-shadow: 0 0 15px #7f00ff; }
}