/* ─── Custom font ──────────────────────────────────────────────────────────── */
@font-face {
  font-family: "Shard";
  src: url("../fonts/Shard-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ─── Design tokens ────────────────────────────────────────────────────────── */
:root {
  --brand-bg:      #0a0a0a;
  --brand-surface: #141414;
  --brand-border:  #262626;
  --brand-accent:  #e21f26;
  --brand-fg:      #e5e5e5;
  --brand-muted:   #94a3b8;
  --brand-dim:     #64748b;
  --brand-dimmer:  #475569;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--brand-bg);
  color: var(--brand-fg);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: var(--brand-accent);
  color: #fff;
}

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

/* ─── Layout helpers ───────────────────────────────────────────────────────── */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-sm {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Navigation ───────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid var(--brand-border);
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: block;
  line-height: 0;
}

.logo-img {
  height: 2rem;
  width: auto;
}

.nav-links {
  display: none;
  gap: 2rem;
}

.nav-links a {
  color: var(--brand-fg);
  text-decoration: none;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  transition: color 0.15s;
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* ─── Hero (parallax) ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  overflow: hidden;
}

/*
  background-attachment: fixed keeps the image in place while the page
  scrolls over it, producing the parallax effect.
*/
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.7) 60%, rgba(10,10,10,1) 100%),
    url("../images/live-show.jpeg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: min(90vw, 720px);
  height: auto;
  margin-bottom: 2.5rem;
  filter: drop-shadow(0 0 40px rgba(226, 31, 38, 0.35));
}

.hero-subtitle {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  font-size: 12px;
  color: var(--brand-muted);
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 14px;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn-primary {
  background-color: var(--brand-accent);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 10px;
  font-weight: 700;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: filter 0.15s;
}

.btn-primary:hover {
  filter: invert(1);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 10px;
  font-weight: 700;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #000;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1s infinite;
  opacity: 0.3;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

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

/* ─── About ────────────────────────────────────────────────────────────────── */
.about {
  padding: 8rem 1.5rem;
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  background-color: var(--brand-surface);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.display-heading {
  font-family: "Shard", "Oswald", sans-serif;
  font-size: 3.75rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 2rem;
  line-height: 1;
}

.display-heading .accent {
  color: var(--brand-accent);
  font-size: 3rem;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-body p {
  color: var(--brand-muted);
  line-height: 1.75;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  outline: 1px solid rgba(255, 255, 255, 0.1);
  outline-offset: -1px;
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background-color: var(--brand-accent);
  padding: 1.5rem;
  display: none;
}

.about-badge p {
  color: #fff;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}

@media (min-width: 768px) {
  .about-badge {
    display: block;
  }
}

/* ─── Shows / Tour ─────────────────────────────────────────────────────────── */
.shows {
  padding: 8rem 1.5rem;
}

.shows-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.section-heading {
  font-family: "Shard", "Oswald", sans-serif;
  font-size: 3rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.shows-label {
  color: var(--brand-accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.shows-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.show-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--brand-border);
  transition: border-color 0.15s;
}

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

.show-item:hover .btn-ticket {
  background-color: #fff;
  color: #000;
}

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

.show-date {
  color: var(--brand-accent);
  font-weight: 700;
  width: 5rem;
  flex-shrink: 0;
}

.show-info {
  flex: 1;
}

.show-venue {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.125rem;
}

.show-location {
  color: var(--brand-dim);
  font-size: 10px;
  text-transform: uppercase;
}

.btn-ticket {
  display: inline-block;
  text-align: center;
  border: 1px solid #374151;
  padding: 0.5rem 1.5rem;
  font-size: 10px;
  font-weight: 700;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--brand-fg);
  transition: background-color 0.15s, color 0.15s;
}

.btn-soldout {
  display: inline-block;
  text-align: center;
  background-color: #1e293b;
  color: var(--brand-dim);
  padding: 0.5rem 1.5rem;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
}

/* ─── Blog / Field Reports ─────────────────────────────────────────────────── */
.blog {
  padding: 8rem 1.5rem;
  background-color: var(--brand-surface);
}

.blog .section-heading {
  margin-bottom: 4rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  border: 1px solid var(--brand-border);
  cursor: pointer;
}

.blog-card:hover .blog-title {
  color: var(--brand-accent);
}

.blog-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-body {
  padding: 1.5rem;
}

.blog-tag {
  display: block;
  color: var(--brand-accent);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.blog-title {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  transition: color 0.15s;
}

.blog-excerpt {
  color: var(--brand-muted);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.blog-date {
  font-size: 10px;
  color: var(--brand-dim);
  text-transform: uppercase;
}

/* ─── Contact ──────────────────────────────────────────────────────────────── */
.contact {
  padding: 8rem 1.5rem;
  border-top: 1px solid var(--brand-border);
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-sub {
  color: var(--brand-dim);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--brand-muted);
}

.form-input {
  width: 100%;
  background-color: var(--brand-surface);
  border: 1px solid var(--brand-border);
  padding: 1rem;
  color: #fff;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}

.form-input::placeholder {
  color: var(--brand-dim);
}

.form-input:focus {
  border-color: var(--brand-accent);
}

.btn-submit {
  width: 100%;
  background-color: #fff;
  color: #000;
  padding: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 10px;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: background-color 0.15s, color 0.15s;
}

.btn-submit:hover:not(:disabled) {
  background-color: var(--brand-accent);
  color: #fff;
}

.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-status {
  text-align: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  min-height: 1.25rem;
}

.form-status.success {
  color: var(--brand-accent);
}

.form-status.error {
  color: #ef4444;
}

/* ─── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--brand-border);
  text-align: center;
}

.footer-text {
  font-size: 10px;
  color: var(--brand-dimmer);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
