/* Base */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: black;
  color: white;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
h1, h2, h3 {
  font-weight: 800;
}
p {
  line-height: 1.6;
}

/* Header */
.site-header {
  background: black;
  padding: 1rem 0;
  border-bottom: 2px solid red;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav a {
  margin-left: 1rem;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}
.nav a:hover {
  color: red;
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .nav a {
    margin-left: 0;
    padding: 0.5rem 0.8rem;
  }

  .nav a.btn-outline {
    margin: 0 auto;
  }
}

/* Hero */
.hero {
  background: url('assets/d3szn-hero.jpg') center/cover no-repeat;
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  background: rgba(0,0,0,0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content {
  text-align: center;
  max-width: 600px;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  background: red;
  color: white;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  margin-right: 1rem;
  font-weight: 600;
}
.btn-outline {
  border: 2px solid red;
  color: red;
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary:hover, .btn-outline:hover {
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 4rem 0;
}
.section.dark {
  background: #111;
}
.section-sub {
  color: #ccc;
  margin-bottom: 2rem;
}

/* Merch */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}
.merch-item img {
  width: 100%;
  border: 2px solid red;
  border-radius: 6px;
}
.btn-sm {
  display: inline-block;
  margin-top: 0.5rem;
  background: red;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  color: white;
  text-decoration: none;
}

/* Booking Form */
.booking-form input, .booking-form textarea {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1rem;
  border: 1px solid #555;
  background: #222;
  color: white;
}
.booking-form button {
  width: 100%;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 1rem;
  background: black;
  border-top: 2px solid red;
  color: #aaa;
}