/* === Reset === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === Custom Properties === */
:root {
  --bg: #1a1410;
  --accent: #c8821a;
  --text: #f0ebe3;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* === Typography === */
h1, h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* === Utility === */
section {
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* === Nav === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: rgba(26, 20, 16, 0.95);
  backdrop-filter: blur(8px);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__links {
  display: none;
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(26, 20, 16, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 1rem;
}

.nav__links.is-open {
  display: flex;
}

.nav__links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav__links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.nav__links svg {
  vertical-align: middle;
  color: var(--text);
}

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

/* Desktop nav */
@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }

  .nav__links {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    padding: 0;
    background: none;
    backdrop-filter: none;
  }
}

/* === Placeholders === */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--accent);
  color: var(--accent);
  font-size: 0.85rem;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav__logo-img {
  display: block;
  height: 40px;
  width: auto;
  /* Logo art is black on transparent; invert to white for the dark nav */
  filter: invert(1);
}

.about__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* === Hero === */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0 1.5rem;
  text-align: center;
  background: linear-gradient(rgba(26, 20, 16, 0.6), rgba(26, 20, 16, 0.6)),
              url('images/hero.jpg') center/cover no-repeat;
  position: relative;
}

.hero__content {
  margin-top: -4rem;
}

.hero__title {
  font-size: clamp(3rem, 10vw, 7rem);
  letter-spacing: 0.05em;
  color: var(--text);
}

.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--accent);
  margin-top: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  animation: bounce 2s ease infinite;
  color: var(--accent);
  opacity: 0.6;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* === About === */
.about__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.about__image {
  width: 100%;
  max-width: 400px;
}

.about__text p {
  margin-bottom: 1rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
}

@media (min-width: 768px) {
  .about__container {
    flex-direction: row;
    gap: 3rem;
    align-items: flex-start;
  }

  .about__image {
    flex-shrink: 0;
    width: 40%;
  }

  .about__text {
    flex: 1;
  }
}

/* === Shows === */
.shows__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.shows__empty {
  text-align: center;
  color: var(--accent);
  font-style: italic;
  padding: 2rem 0;
}

.show-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(200, 130, 26, 0.2);
  border-radius: 8px;
  transition: border-color 0.2s;
}

.show-card:hover {
  border-color: var(--accent);
}

.show-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.show-card__date {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.95rem;
}

.show-card__location {
  font-size: 0.9rem;
  opacity: 0.7;
}

a.show-card__location {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a.show-card__location:hover {
  color: var(--accent);
  opacity: 1;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .show-card {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }

  .show-card__date {
    min-width: 160px;
  }
}

/* === Booking === */
.booking__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 600px;
}

.booking__form label {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.75rem;
}

.booking__form input,
.booking__form textarea {
  background-color: rgba(240, 235, 227, 0.05);
  border: 1px solid rgba(240, 235, 227, 0.15);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.booking__form input:focus,
.booking__form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.booking__submit {
  margin-top: 1.25rem;
  padding: 0.85rem 2rem;
  background-color: var(--accent);
  color: var(--bg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
  align-self: flex-start;
}

.booking__submit:hover {
  background-color: #d99a3a;
}

/* === Footer === */
.footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(240, 235, 227, 0.1);
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer a {
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer p {
  margin: 0;
}
