/* ============================================
   MUSICLAND - Global Styles
   Header component styles only
   ============================================ */

/* CSS Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --------------------------------------------
   TICKER STRIP
   Yellow strip, black text, scrolls left to right
   -------------------------------------------- */
.ticker-strip {
  background-color: #FFD700;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  z-index: 1001;
}

.ticker-track {
  display: inline-flex;
  animation: ticker-scroll 20s linear infinite;
}

.ticker-text {
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  font-weight: 700;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.5rem 2rem;
}

/* Duplicate text for seamless loop */
.ticker-track .ticker-text:last-child {
  margin-left: 1rem;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --------------------------------------------
   MAIN HEADER BAR
   Black background, sticky on scroll
   -------------------------------------------- */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background-color: #000;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 100%;
}

/* Logo - Sunburn-style bold uppercase */
.logo {
  font-family: 'Oswald', 'Impact', 'Arial Black', sans-serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.logo:hover {
  color: #FFD700;
}

/* --------------------------------------------
   HAMBURGER ICON
   Three horizontal lines, large tap target
   -------------------------------------------- */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  transition: transform 0.2s ease;
}

.hamburger:hover {
  transform: scale(1.05);
}

.hamburger:focus-visible {
  outline: 2px solid #FFD700;
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger to X when active */
.hamburger.is-active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --------------------------------------------
   NAV PANEL
   Full-width black panel, slides down
   -------------------------------------------- */
.nav-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-panel.is-open {
  max-height: 100vh;
}

.nav-panel[aria-hidden="false"] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-list {
  list-style: none;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-link {
  display: block;
  font-family: 'Oswald', 'Impact', sans-serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #fff;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: #FFD700;
  padding-left: 1rem;
}

/* --------------------------------------------
   RESPONSIVE
   Mobile-first, no horizontal scroll
   -------------------------------------------- */
@media (min-width: 768px) {
  .header-inner {
    padding: 1.25rem 2rem;
  }

  .nav-list {
    padding: 2.5rem 2rem;
  }
}
.hero {
  position: relative;
  height: 100vh;
  background: url("../images/banner.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 72px; /* not too big */
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;

  /* clean soft shadow */
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);

  position: relative;
  text-align: center;
}


.hero-subtitle {
  font-size: 1.2rem;
  margin-top: 10px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 0.6s;
}

.hero-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 40px;
  background: #facc15;              /* festival yellow */
  color: #000;                      /* black text for contrast */
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 40px;
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 1.2s;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(250, 204, 21, 0);
}
.hero-btn:hover {
  background: #fde047;              /* lighter yellow on hover */
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(250, 204, 21, 0.6);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}
.tickets-section{
  background:#000;
  padding:140px 8%;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.tickets-header h2{
  font-size:54px;
  color:#FFD400;
  letter-spacing:4px;
}

.tickets-header p{
  color:#bbb;
  margin-top:10px;
}

.tickets-wrapper{
  margin-top:80px;
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.ticket-card{
  width:320px;
  background:#111;
  border-radius:22px;
  padding:50px 35px;
  border:1px solid rgba(255,212,0,0.2);
  position:relative;
  transform-style:preserve-3d;
  transition:transform .4s ease, box-shadow .4s ease;
  cursor:pointer;
}

.ticket-card:hover{
  transform:rotateX(8deg) rotateY(-8deg) scale(1.05);
  box-shadow:0 30px 60px rgba(255,212,0,0.25);
}

.ticket-glow{
  position:absolute;
  inset:0;
  border-radius:22px;
  background:radial-gradient(circle at 50% 0%, rgba(255,212,0,0.35), transparent 70%);
  opacity:.4;
  animation:glowPulse 4s infinite;
}

@keyframes glowPulse{
  0%,100%{opacity:.3}
  50%{opacity:.6}
}

.ticket-card h3{
  color:#FFD400;
  font-size:30px;
  margin-bottom:15px;
}

.price{
  font-size:48px;
  font-weight:700;
  color:#fff;
  margin-bottom:25px;
}

.ticket-card ul{
  list-style:none;
  padding:0;
  margin-bottom:30px;
}

.ticket-card ul li{
  margin:12px 0;
  color:#ccc;
}

.ticket-card button{
  background:#FFD400;
  border:none;
  padding:14px 34px;
  border-radius:40px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.ticket-card button:hover{
  background:#fff;
}

.featured{
  border:2px solid #FFD400;
  transform:scale(1.08);
}

.badge{
  position:absolute;
  top:-12px;
  right:25px;
  background:#FFD400;
  color:#000;
  padding:6px 16px;
  font-size:12px;
  border-radius:30px;
  font-weight:600;
}