:root {
  --maroon: #5c1a1a;
  --cream: #f5f2ee;
  --text-dark: #1d1819;
}

/* ---------- Base ---------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  padding-top: 110px;
}

/* ---------- Header ---------- */

#header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--cream);
  border-bottom: 1px solid #ddd;
  z-index: 1000;
  padding: 15px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#header-img {
  width: 130px;
}

#nav-bar {
  display: flex;
  gap: 15px;
  margin-top: 13px;
}

.nav-link {
  text-decoration: none;
  color: var(--cream);
  background: var(--maroon);
  font-weight: bold;
  padding: 8px 18px;
  min-width: 100px;
  text-align: center;
  transition: background 0.3s ease;
}

.nav-link:hover {
  background: #3d1010;
}

/* ---------- Shared Sections ---------- */

#hero,
#event-details,
#video-section,
#tickets,
#mixes,
#info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
  scroll-margin-top: 110px;
}

/* ---------- Hero ---------- */

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 0 0 380px;
  margin-top: -93px;
}

.hero-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  border: 4px solid var(--maroon);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}

.eyebrow {
  display: inline-block;
  background: var(--maroon);
  color: var(--cream);
  padding: 12px 28px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

#hero h1 {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 10px;
}

#hero h3 {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 30px;
}

.date,
.venue,
.Tickets {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.venue {
  font-weight: bold;
}

.city {
  font-weight: normal;
}

.hero-button {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: var(--maroon);
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background .3s ease;
}

.hero-button:hover {
  background: #3d1010;
}

/* ---------- Headings ---------- */

#event-details h2,
#video-section h2,
#tickets h2,
#mixes h2,
#info h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* ---------- Event Details ---------- */

.details-card {
  max-width: 600px;
}

.details-card p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* ---------- Video ---------- */



#video-section {
  text-align: left;
}

#video-section h2 {
  text-align: left;
  margin: 0 0 25px 0;
  padding: 0;
}

#video {
  display: block;
  width: 340px;
  max-width: 100%;
  margin: 0;
  border-radius: 8px;
  border: 4px solid var(--maroon);
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
}


/* ---------- Mixes ---------- */

#mixes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#mixes .hero-button {
  width: fit-content;
}

/* ---------- Form ---------- */

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
}

#email,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

textarea {
  min-height: 180px;
  resize: vertical;
}

#submit {
  width: 180px;
  padding: 15px;
  background: var(--maroon);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background .3s ease;
}

#submit:hover {
  background: #3d1010;
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    gap: 15px;
  }

  body {
    padding-top: 170px;
  }

  #nav-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  #hero,
  #event-details,
  #video-section,
  #tickets,
  #mixes,
  #info {
    padding: 60px 20px;
    scroll-margin-top: 170px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-image {
    flex: none;
    width: 100%;
    max-width: 320px;
  }

  #hero h1 {
    font-size: 2.8rem;
  }

  #hero h3 {
    font-size: 1.6rem;
  }

  .hero-button {
    width: 100%;
    text-align: center;
  }

  #mixes .hero-button {
    width: 100%;
  }
}
