:root {
  --black: #0f0f0f;
  --dark: #181818;
  --cream: #f2e6c9;
  --red: #c62828;
  --yellow: #d9a441;
  --muted: #b9ad91;
  --white: #ffffff;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(15, 15, 15, 0.95);
  border-bottom: 3px solid var(--red);
}

.nav {
  max-width: 1180px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

nav a {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

nav a:hover, nav a.active { color: var(--yellow); }

.hero {
  min-height: 76vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 90px 20px;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.88)),
    url("images/band-photo.svg");
  background-size: cover;
  background-position: center;
}

.hero-inner { max-width: 900px; }

.hero-logo {
  width: min(520px, 90vw);
  margin: 0 auto 24px;
}

h1, h2, h3 {
  line-height: 1.1;
  margin-top: 0;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--red);
  font-size: clamp(48px, 9vw, 110px);
  letter-spacing: 4px;
  margin-bottom: 14px;
}

.hero p {
  font-size: clamp(19px, 2.4vw, 27px);
  max-width: 800px;
  margin: 0 auto 28px;
}

.button {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 14px 24px;
  margin: 8px 8px 8px 0;
  font-weight: 900;
  text-transform: uppercase;
  border-radius: 4px;
  border: 2px solid var(--red);
}

.button.secondary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.button.outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}

.section {
  max-width: 1180px;
  margin: auto;
  padding: 64px 20px;
}

.section.narrow { max-width: 850px; }

.section h2 {
  color: var(--yellow);
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 24px;
}

.lede {
  font-size: 21px;
  color: var(--cream);
}

.muted { color: var(--muted); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 18px;
}

.card {
  background: var(--dark);
  border-left: 5px solid var(--red);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

.card h3 {
  color: var(--cream);
  font-size: 24px;
  margin-bottom: 10px;
}

.show-card h3 { color: var(--yellow); }

.booking-list {
  columns: 2;
  padding-left: 20px;
}

form {
  display: grid;
  gap: 16px;
  max-width: 760px;
  margin-top: 26px;
}

input, textarea, select {
  width: 100%;
  padding: 15px;
  border: 2px solid #333;
  background: #101010;
  color: var(--cream);
  font-size: 16px;
}

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

button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 15px 24px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background: var(--yellow);
  color: var(--black);
}

.about-photo {
  border: 5px solid var(--red);
  margin-bottom: 28px;
}

.member-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-bottom: 4px solid var(--red);
  margin: -24px -24px 20px;
  width: calc(100% + 48px);
  max-width: calc(100% + 48px);
}

footer {
  text-align: center;
  padding: 34px 20px;
  background: var(--dark);
  border-top: 3px solid var(--red);
  color: var(--muted);
}

/* Calendar page */

#calendar {
  background: #181818;
  padding: 24px;
  border: 3px solid #c62828;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}

.fc {
  color: #f2e6c9;
}

.fc-theme-standard td,
.fc-theme-standard th,
.fc-theme-standard .fc-scrollgrid {
  border-color: #333;
}

.fc .fc-toolbar-title {
  color: #d9a441;
  text-transform: uppercase;
}

.fc .fc-button {
  background: #c62828;
  border-color: #c62828;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: bold;
}

.fc .fc-button:hover,
.fc .fc-button-primary:not(:disabled).fc-button-active {
  background: #d9a441;
  border-color: #d9a441;
  color: #0f0f0f;
}

.fc .fc-daygrid-day-number,
.fc .fc-col-header-cell-cushion {
  color: #f2e6c9;
}

.fc .fc-day-today {
  background: rgba(217, 164, 65, 0.18) !important;
}

.fc-event {
  cursor: pointer;
  border: none;
  padding: 2px 4px;
}

@media (max-width: 760px) {
  .nav {
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .booking-list {
    columns: 1;
  }
}

@media (max-width: 700px) {
  #calendar {
    padding: 12px;
  }

  .fc .fc-toolbar {
    display: block;
    text-align: center;
  }

  .fc .fc-toolbar-chunk {
    margin-bottom: 12px;
  }
}
