/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --bg-color: #000000;
  --text-color: #ffffff;
  --text-secondary: #bbbbbb;
  --accent-color: #ffffff;
  --font-primary: "Jost", sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  /* For the glow */
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

ul {
  list-style: none;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.header-logo-img {
  height: 80px;
  width: auto;
  display: block;
}

.main-nav ul {
  display: flex;
  gap: 3rem;
  align-items: center;
  /* Center align with logo */
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 700;
  /* Bolder nav */
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--accent-color);
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.mobile-menu-toggle {
  display: none;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
  padding-top: 0;
}

.hero-logo-large {
  width: 80%;
  max-width: 300px; /* Reduced to fit inside smaller visualizer */
  height: auto;
  margin-bottom: 0;
  z-index: 10;
  filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
  animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {
  0% {
    transform: translateY(0px) scale(1);
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
  }
  50% {
    transform: translateY(-10px) scale(1.02);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.9));
  }
  100% {
    transform: translateY(0px) scale(1);
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.8));
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Visualizer Styles */
.visualizer-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  z-index: -1;
  pointer-events: none;
}

.visualizer-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px; /* Width of each bar */
  height: 0; /* Initial height, controlled by JS */
  transform-origin: top center; /* Anchor at top (inner end) */
  border-radius: 5px; /* Fully rounded tips */
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); /* Subtle glow base */
  will-change: height; /* Optimize for animation */
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-weight: 400;
  /* Slightly heavier */
  z-index: 10;
  max-width: 600px;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  opacity: 0.3;
  /* Dim the background */
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #333333 0%, #000000 100%);
}

/* Banner Section */
.banner-section {
  width: 100%;
  padding: 0;
  display: flex;
  justify-content: center;
  background-color: #000;
}

.banner-container {
  position: relative;
  width: 100%;
  max-width: 1000px; /* Increased from 900px */
  margin: 0 auto;
  display: flex;
  flex-direction: column; /* Stack image and button */
  align-items: center;
  gap: 2rem;
}

.full-width-banner {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px; /* Rounded corners */
}

.get-tickets-btn {
  position: relative; /* Below image */
  padding: 1rem 2.5rem;
  border: 2px solid white;
  color: white;
  font-family: var(--font-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: transparent;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 10;
  white-space: nowrap;
  border-radius: 0;
}

.get-tickets-btn:hover {
  background-color: white;
  color: #000;
}

/* Footer */
.site-footer {
  padding: 4rem;
  margin-top: 4rem;
}

.footer-divider {
  height: 1px;
  background-color: #333;
  margin-bottom: 4rem;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.footer-brand address.contact-info {
  font-style: normal;
  color: var(--text-color);
  margin-bottom: 2rem;
  font-family: 'Jost', sans-serif;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* Vertical spacing */
  line-height: 1.4;
}

.contact-item .name {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.contact-item a.tel {
  font-weight: 500;
  opacity: 0.7; /* Roll/Info style opacity */
  transition: opacity 0.3s ease;
}

.contact-item a.tel:hover {
  opacity: 1;
}

.email-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.email-item a {
  font-weight: 500;
}

.email-item .icon {
  font-size: 1rem;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
}

.footer-links {
  display: flex;
  gap: 6rem;
}

.footer-column h3 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column a {
  font-size: 0.95rem;
  font-weight: 300;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .site-header {
    padding: 1.5rem 2rem;
  }

  .banner-section {
    padding: 0 2rem; /* Add padding so it doesn't touch edges */
  }

  .banner-container {
    max-width: 800px; /* Slightly smaller for tablet balance */
  }

  /* Scale visualizer slightly for Tablet */
  .visualizer-container {
    transform: translate(-50%, -50%) scale(0.8);
  }

  .hero-logo-large {
    max-width: 250px;
  }

  .footer-links {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1.2rem 1.5rem;
  }

  .banner-section {
    padding: 0 1rem;
  }

  .banner-container {
    max-width: 100%;
  }

  .site-header .social-icons {
    gap: 1rem;
    font-size: 0.8rem;
  }

  .hero-logo-large {
    max-width: 160px; /* Even smaller for mobile */
  }

  /* Scale down visualizer for Mobile */
  .visualizer-container {
    transform: translate(-50%, -50%) scale(0.55);
  }

  .get-tickets-btn {
    margin-top: 1.5rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-brand address.contact-info {
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .site-header.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 3rem;
  }

  .main-nav a {
    font-size: 2rem;
  }

  /* Hamburger Toggle Styles */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
  }

  /* X Animation */
  .site-header.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .site-header.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }
  .site-header.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
