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

:root {
  --bg-main: #000;
  --bg-black: #000;
  --bg-dark: #111;

  --color-text: #fff;
  --color-accent: #EA5754;
  --color-badge: #E1DDA7;
  --color-border: #333;

  --font-body: 'Hanken Grotesk', sans-serif;
  --font-heading: 'Hammersmith One', sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg-main);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: normal;
  margin: 0 0 1rem 0;
  color: var(--color-text);
}

h1 {
  font-size: 50px;
  line-height: 46px;
  text-transform: uppercase;
}

h2 {
  font-size: 24px;
  color: var(--color-badge);
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: center;
}

h3 {
  font-size: 18px;
  margin: 0 0 6px 0;
}

p {
  margin: 0 0 1rem 0;
}

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

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

.cta,
.ticket-link,
.cta-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  background: var(--color-accent);
  color: var(--color-text);
  padding: 8px 18px;
  font-weight: bold;
  transition: opacity 0.2s ease;
}

/* Prevent global link hover from breaking buttons */
.cta:hover,
.ticket-link:hover,
.cta-btn:hover {
  color: var(--color-text); /* override red text */
  opacity: 0.8;             /* 90% opacity */
}

/* =========================
   BADGE
========================= */

.badge {
  font-size: 14px;
  font-weight: bold;
  background: var(--color-badge);
  color: #000;
  padding: 6px 10px;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

/* =========================
   SECTION STARS
========================= */

.section-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 40px 0;
}

.star {
  width: 14px;
  height: 14px;
  fill: var(--color-accent);
}

/* =========================
   HEADER
========================= */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 55px;
  background: var(--bg-black);
  position: relative;
}

/* =========================
   LOGO + NAV
========================= */

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

.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--color-badge);
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

/* =========================
   HAMBURGER
========================= */

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--color-badge);
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-black);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 900;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
  margin-top: 50px;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--color-badge);
  font-family: var(--font-heading);
  font-size: 20px;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.icon {
  width: 20px;
  height: 20px;
}

.social-links a {
  color: var(--color-badge);
  transition: color 0.2s ease;
}

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

.mobile-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
}

/* =========================
   FOOTER SOCIAL FIX
========================= */

footer .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

footer p {
  font-size: 14px;
}

/* =========================
   CALENDAR SECTION (NEW)
========================= */

.calendar-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

/* =========================
   EVENT TABLE LAYOUT
========================= */

.event {
  display: grid;
  grid-template-columns: 120px 140px 1fr 140px;
  gap: 20px;
  align-items: center;
  margin: 40px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color-border);
}

/* Thumbnail */
.event-thumb img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  display: block;
}

/* Date */
.event-date-col {
  font-weight: bold;
  color: var(--color-accent);
  text-transform: uppercase;
  margin: 0; /* remove spacing */
}

/* Main */
.event-main h3 {
  margin: 0 0 6px 0;
}

.event-main p {
  margin: 0;
  opacity: 0.85;
}

/* Ticket */
.event-action {
  text-align: right;
}

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

@media (max-width: 768px) {

  @media (max-width: 768px) {

  .event {
    display: grid;
    grid-template-columns: 20% 80%;
    grid-template-rows: auto;
    gap: 10px 14px;
    align-items: start;
  }

  .event-thumb {
    grid-column: 1;
    grid-row: 1 / span 4;
  }

  .event-thumb img {
    width: 100%;
    height: auto;
  }

  .event-date-col {
    grid-column: 2;
    margin: 0;
  }

  .event-main {
    grid-column: 2;
  }

  .event-main h3 {
    margin: 2px 0 4px 0;
  }

  .event-main p {
    margin: 0;
  }

  .event-action {
    grid-column: 2;
    margin-top: 6px;
    text-align: left;
  }
}
}

/* =========================
   ABOUT
========================= */

.about-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

footer {
  padding: 40px 20px;
  background: var(--bg-dark);
  text-align: center;
}

/* =========================
   ABOUT GRID (25 / 75)
========================= */

.about-grid {
  display: grid;
  grid-template-columns: 25% 75%;
  gap: 50px;
  align-items: start;
  margin-top: 40px;
  text-align: left;
}

/* Image column */
.about-image {
  display: flex;
  justify-content: flex-start;
}

.about-image img {
  width: 250px;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Text */
.about-text p {
  margin-bottom: 18px;
}

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

@media (max-width: 768px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    justify-content: center;
  }

}

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

@media (max-width: 768px) {

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    order: 2; /* image below text */
    display: flex;
    justify-content: center;
  }

  .about-text {
    order: 1;
  }

}

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

.hero {
  width: 100%;
  height: 520px;
  background: var(--bg-black);
  position: relative;
  padding-top: 40px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-blur-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  top: -40px;
  left: -40px;
  right: -40px;
  bottom: -40px;
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 80px;
  align-items: center;
  padding: 0 40px;
}

.hero-left {
  width: 50%;
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-left img {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  width: 540px;
  height: 540px;
  object-fit: cover;
  box-shadow: 6px 6px 4px 0 rgba(0, 0, 0, 0.45);
}

.hero-right {
  width: 50%;
  text-align: left;
  position: relative;
  top: 40px;
}

.date {
  margin-bottom: 20px;
}

.cta-btn {
  padding: 10px 50px;
}

.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--color-badge);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: var(--color-accent);
}

/* =========================
   MERCH SECTION
========================= */

.merch-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

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

/* Product Card */
.product-card {
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 16px;
  margin: 0;
  text-transform: uppercase;
}

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

@media (max-width: 768px) {

  .product-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

}

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

@media (max-width: 768px) {

  h1 {
    font-size: 38px;
    line-height: 36px;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 20px 0 20px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    height: auto;
    padding-top: 23px;
  }

  .hero-slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    transition: none;
  }

  .hero-slide.active {
    display: block;
  }

  .hero-inner {
    flex-direction: column;
    gap: 0;
    padding: 0 20px 100px 20px;
    align-items: flex-start;
  }

  .hero-left,
  .hero-right {
    width: 100%;
  }

  .hero-right {
    top: 10px;
  }

  .hero-left img {
    position: relative;
    top: -16px;
    left: auto;
    transform: rotate(-2deg);
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .event {
    flex-direction: column;
  }

  .event-image img {
    width: 100%;
    max-width: 320px;
  }
}

#shows,
#merch,
#about {
  scroll-margin-top: 90px;
}