/* ============================================
   MATT MUELLER LIVE — style.css
   ============================================ */

:root {
  --black: #0a0906;
  --deep: #111009;
  --warm-dark: #1a1710;
  --cream: #f4ede0;
  --cream-light: #faf6f0;
  --gold: #c9a84c;
  --gold-light: #e0c47a;
  --text: #e8dfd0;
  --text-muted: #9a9082;
  --border: rgba(201, 168, 76, 0.18);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 64px;
  --max-w: 1180px;
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: linear-gradient(to bottom, rgba(10,9,6,0.90) 0%, rgba(10,9,6,0.0) 100%);
  transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
  background: rgba(10, 9, 6, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo: PNG has black bg, so we make it transparent via mix-blend-mode 
   OR simply invert only the black→white. The logo text is WHITE on black bg
   in the PNG — invert(1) makes it black text on white, which is wrong.
   We want white text. The PNG is already white-on-black, so we just use it 
   directly WITHOUT invert, and let mix-blend-mode screen drop the black bg. */
.nav-logo {
  margin-right: auto;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  height: 30px;
  width: auto;
  /* screen blend removes the black background, keeps white text */
  mix-blend-mode: screen;
  opacity: 0.95;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(244, 237, 224, 0.9);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 60% horizontal keeps Matt right-of-center; 55% vertical pulls frame down so torso is visible */
  object-position: 60% 55%;
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* Strong dark left panel; right side stays bright so Matt shows clearly */
  background:
    linear-gradient(to right, rgba(10,9,6,0.96) 0%, rgba(10,9,6,0.80) 32%, rgba(10,9,6,0.18) 60%, rgba(10,9,6,0.0) 100%),
    linear-gradient(to top,   rgba(10,9,6,0.80) 0%, rgba(10,9,6,0.15) 28%, rgba(10,9,6,0.0) 60%);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  animation: heroFade 1.2s ease-out 0.3s both;
}

.hero-content {
  max-width: 760px;
  padding-left: 10px;
}

/* Pull logo image left edge flush with the text below it */
.hero-logo-wrap {
  margin-bottom: 20px;
  margin-left: -px; /* compensates for PNG internal padding */
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}

/* Hero logo: same screen trick to keep white text, drop black bg */
.hero-logo-wrap {
  margin-bottom: 20px;
}
.hero-logo-img {
  width: var(--hero-main-logo-width);
  max-width: min(var(--hero-main-logo-width), 82vw);
  height: auto;
  margin-bottom: 0;
  mix-blend-mode: screen;
  filter: brightness(1.1);

  /* move ONLY the Matt Mueller logo */
  transform: translateX(-14px);
}

.hero-logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
    /* move ONLY the logo group */
  transform: translateX(-14px);
}

.hero-logo-img {
  display: block;
  max-width: 520px;
  width: 100%;
}

/* "Live Entertainment" — big, white, spaced */
.hero-logo-sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
  transform: translateX(8px);
  width: 100%;
  text-align: left;
  margin-top: -14px;
  line-height: 1;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(244, 237, 224, 0.88);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.75;
  text-shadow: 0 1px 12px rgba(0,0,0,0.65);
}

.hero-actions {
  display: flex;
  gap: px;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: heroFade 1.5s ease-out 1.2s both;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244, 237, 224, 0.45);
}
.btn-outline:hover {
  border-color: var(--cream);
  background: rgba(244, 237, 224, 0.07);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border-color: transparent;
  padding-left: 0;
}
.btn-ghost:hover { color: var(--gold-light); letter-spacing: 0.14em; }

.full-width { width: 100%; justify-content: center; }

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-label.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 32px;
}
.section-title em { font-style: italic; color: var(--gold-light); }
.section-title.light { color: var(--cream-light); }

/* ── ABOUT ── */
.about {
  padding: 120px 0;
  background: var(--deep);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.about-photo-wrap {
  position: relative;
  height: 640px;
  overflow: hidden;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 2px;
  filter: saturate(0.85) contrast(1.05);
}

.about-body {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 0.975rem;
  line-height: 1.8;
}
.about-body strong { color: var(--cream); font-weight: 500; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0;
}

.tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
  transition: all var(--transition);
}
.tag:hover { border-color: var(--gold); color: var(--gold); }

/* ── SHOWS ── */



.month-group {
  margin-top: 4rem;
}

.month-heading {
  font-family: var(--font-body);
  color: #d8c95f;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
}

.month-grid {
  display: block;
  border-top: 1px solid rgba(216, 201, 95, 0.35);
  border-left: 1px solid rgba(216, 201, 95, 0.35);
  border-right: 1px solid rgba(216, 201, 95, 0.35);
}

.month-grid .show-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  min-height: 125px;
  padding: 2rem 2.6rem;
  border-bottom: 1px solid rgba(216, 201, 95, 0.35);
}

.show-date {
  min-width: 90px;
}

.show-month {
  font-size: 0.9rem;
  letter-spacing: 0.28em;
}

.show-day {
  font-size: 3.4rem;
  line-height: 0.95;
}

.show-venue {
  font-size: 1.55rem;
  line-height: 1.2;
}

.show-time {
  font-size: 1.18rem;
  margin-top: 0.45rem;
}




.shows {
  padding: 60px 0;
  background: var(--warm-dark);
  position: relative;
}

.shows::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.show-card {
  background: var(--warm-dark);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  transition: background var(--transition);
}

.show-card:hover {
  background: rgba(201, 168, 76, 0.06);
}

.show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
  text-align: center;
}

.show-month {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2px;
}

.show-day {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
}

.show-info { flex: 1; }

.show-venue {
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 4px;
}

.show-time {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── CONTACT ── */
.contact {
  padding: 120px 0;
  background: var(--deep);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-body {
  color: var(--text-muted);
  font-size: 0.975rem;
  margin-bottom: 28px;
  max-width: 380px;
}

.contact-email {
  display: block;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 28px;
  transition: color var(--transition);
}
.contact-email:hover { color: var(--gold-light); }

.contact-social { display: flex; gap: 20px; }

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color var(--transition);
}
.social-link:hover { color: var(--cream); }

/* ── FORM ── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-size: 0.95rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(154, 144, 130, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -4px;
}
.form-note a { color: var(--gold); }
.form-note a:hover { color: var(--gold-light); }

/* ── FOOTER ── */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--black);
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  height: 24px;
  width: auto;
  mix-blend-mode: screen;
  opacity: 0.7;
  margin-right: auto;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.footer-social {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-social:hover { color: var(--gold); }

@media (max-width: 900px) {
  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo-wrap {
    height: 640px;
  }

  .about-photo {
    height: 100%;
  }

  .hero-content-wrap {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero-content-wrap { padding: 0 20px; }
  .hero-actions { flex-direction: column; }
  .hero-scroll-hint { display: none; }
  .shows-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-wrap: wrap; gap: 10px; }
  .about, .shows, .contact { padding: 80px 0; }
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}




/* FINAL SHOWS OVERRIDE — month-separated stacked layout */

.shows-grid.month-grid {
  display: block;
  grid-template-columns: none;
  gap: 0;
  background: transparent;
  border-top: 1px solid rgba(216, 201, 95, 0.35);
  border-left: 1px solid rgba(216, 201, 95, 0.35);
  border-right: 1px solid rgba(216, 201, 95, 0.35);
  border-bottom: none;
}

.month-group {
  margin-top: 4.25rem;
}

.month-heading {
  font-family: var(--font-body);
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1.1rem;
}

.shows-grid.month-grid .show-card {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  min-height: 135px;
  padding: 2.25rem 3rem;
  background: var(--warm-dark);
  border-bottom: 1px solid rgba(216, 201, 95, 0.35);
}

.shows-grid.month-grid .show-date {
  min-width: 95px;
  align-items: center;
}

.shows-grid.month-grid .show-month {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
}

.shows-grid.month-grid .show-day {
  font-size: 3.6rem;
  line-height: 0.95;
}

.shows-grid.month-grid .show-venue {
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.shows-grid.month-grid .show-time {
  font-size: 1.18rem;
}

@media (max-width: 800px) {
  .month-group {
    margin-top: 3rem;
  }

  .month-heading {
    font-size: 1rem;
  }

  .shows-grid.month-grid .show-card {
    padding: 1.5rem;
    gap: 1.4rem;
    min-height: 110px;
  }

  .shows-grid.month-grid .show-date {
    min-width: 70px;
  }

  .shows-grid.month-grid .show-day {
    font-size: 2.8rem;
  }

  .shows-grid.month-grid .show-venue {
    font-size: 1.2rem;
  }

  .shows-grid.month-grid .show-time {
    font-size: 1rem;
  }
}




/* FINAL HERO LOGO OVERRIDE — easier alignment controls */

:root {
  --hero-logo-group-x: 0px;
  --hero-logo-group-y: 0px;

  --hero-main-logo-width: 520px;

  --hero-sub-x: 0px;
  --hero-sub-y: -8px;
  --hero-sub-size: 1.45rem;
  --hero-sub-spacing: 0.22em;
  --hero-sub-weight: 500;
  --hero-sub-width: 520px;
}

.hero-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: var(--hero-main-logo-width);
  transform: translate(
    var(--hero-logo-group-x),
    var(--hero-logo-group-y)
  );
  margin-bottom: 22px;
}

.hero-logo-img {
  width: var(--hero-main-logo-width);
  max-width: min(var(--hero-main-logo-width), 82vw);
  height: auto;
  margin-bottom: 0;
  mix-blend-mode: screen;
  filter: brightness(1.1);
}

.hero-logo-sub {
  font-family: 'Montserrat', 'DM Sans', sans-serif;
  font-size: var(--hero-sub-size);
  font-weight: var(--hero-sub-weight);
  letter-spacing: var(--hero-sub-spacing);
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  width: var(--hero-sub-width);
  text-align: left;
  margin-top: 0;
  transform: translate(
    var(--hero-sub-x),
    var(--hero-sub-y)
  );
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
}



.hero-img {
  object-position: 58% 20%;
}


/* Make show rows shorter */
.shows-grid.month-grid .show-card {
  min-height: 105px;
  padding: 1.45rem 3rem;
}


/* Reduce space under "2026 Shows" */
.shows .month-group:first-of-type {
  margin-top: 0.75rem;
}



.form-status {
  font-size: 0.85rem;
  text-align: center;
  color: var(--text-muted);
  min-height: 1.2em;
}

.form-status.success {
  color: var(--gold-light);
}

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

.contact-form button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.show-address {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  line-height: 1.4;
  opacity: 0.75;
  display: block;
  text-decoration: none;
  transition: color 0.2s ease;
}

.show-address:hover {
  color: var(--gold);
  opacity: 1;
}

.shows-grid.month-grid .show-card {
  min-height: 0;
  padding: 1.1rem 3rem;
}