/* Jim Botsford Music — stylesheet */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter:wght@400;500;600&display=swap');

/* --- Palette --- */
:root {
  --cream: #F5EFE4;
  --cream-deep: #EBE2D0;
  --cream-line: #D4C4A8;
  --walnut: #2C2416;
  --walnut-soft: #3D2F1C;
  --walnut-light: #5C3A1E;
  --sienna: #B8541C;
  --sienna-deep: #8B3E15;
  --brass: #B89968;
  --brass-soft: #8B7355;
  --text-body: #3D2F1C;
  --text-muted: #6B5840;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--walnut);
  letter-spacing: 0.005em;
  margin: 0 0 0.5em;
}

a { color: var(--sienna); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--sienna-deep); }

p { margin: 0 0 1em; }

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

/* --- Layout --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- Header / Nav --- */
.site-header {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--brass);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--walnut-light);
  letter-spacing: 0.01em;
  text-decoration: none;
}

.site-logo:hover { color: var(--walnut); }

.site-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  color: var(--walnut-light);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover { color: var(--sienna); }
.site-nav a.active { border-bottom-color: var(--sienna); color: var(--walnut); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--walnut-light);
  cursor: pointer;
  padding: 4px 8px;
}

/* --- Hero (home) --- */
.hero {
  padding: 80px 0 100px;
  background: var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-soft);
  font-weight: 600;
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1.08;
  margin: 0 0 20px;
  font-weight: 500;
}

.hero h1 em {
  font-style: italic;
  color: var(--sienna);
  font-weight: 400;
}

.hero-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 520px;
  margin: 0 0 32px;
}

.hero-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 40px -20px rgba(44, 36, 22, 0.3);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: var(--sans);
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  margin-right: 10px;
}

.btn-primary {
  background: var(--sienna);
  color: var(--cream);
}

.btn-primary:hover {
  background: var(--sienna-deep);
  color: var(--cream);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--walnut-light);
  border: 1px solid var(--walnut-light);
}

.btn-ghost:hover {
  background: var(--walnut-light);
  color: var(--cream);
}

/* --- Sections --- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--cream-deep);
}

.section h2 {
  font-size: 32px;
  margin: 0 0 40px;
}

/* --- Venue gallery strip --- */
.venues {
  padding: 70px 0;
  background: var(--walnut);
  color: var(--cream);
}

.venues .eyebrow { color: var(--brass); }

.venues h2 {
  color: var(--cream);
  font-size: 28px;
  margin: 0 0 40px;
  max-width: 600px;
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.venue-card {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}

.venue-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.venue-card:hover img { transform: scale(1.05); }

.venue-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(44, 36, 22, 0.5));
}

.venue-label {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  z-index: 2;
}

/* --- Music page --- */
.music-intro {
  padding: 70px 0 30px;
  text-align: center;
}

.music-intro h1 {
  font-size: 44px;
  margin: 0 0 16px;
}

.music-intro p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

.music-section {
  padding: 50px 0;
}

.music-section + .music-section {
  border-top: 1px solid var(--cream-line);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.video-wrap {
  aspect-ratio: 16/9;
  background: var(--walnut);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-caption {
  margin-top: 12px;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--walnut);
}

.video-caption em {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 2px;
  font-family: var(--sans);
}

.track {
  background: var(--cream-deep);
  border-left: 3px solid var(--sienna);
  border-radius: 2px;
  margin-bottom: 12px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.track-info {
  flex: 1;
  min-width: 200px;
}

.track-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--walnut);
  margin: 0;
}

.track-meta {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin: 2px 0 0;
}

.track audio {
  height: 36px;
  min-width: 260px;
  flex: 1;
}

/* Audio player styling — native controls with color */
audio::-webkit-media-controls-panel {
  background-color: var(--cream);
}

/* --- Contact page --- */
.contact-hero {
  padding: 70px 0 20px;
  text-align: center;
}

.contact-hero h1 {
  font-size: 44px;
  margin: 0 0 16px;
}

.contact-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 40px 0 80px;
}

.contact-block {
  padding: 24px 0;
  border-bottom: 1px solid var(--cream-line);
}

.contact-block:last-child { border-bottom: none; }

.contact-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass-soft);
  font-weight: 600;
  margin: 0 0 6px;
}

.contact-value {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--walnut-light);
  margin: 0;
}

.contact-value a { color: var(--walnut-light); border-bottom: 1px solid transparent; }
.contact-value a:hover { color: var(--sienna); border-bottom-color: var(--sienna); }

.contact-note {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* --- Updates page --- */
.updates-intro {
  padding: 70px 0 30px;
  text-align: center;
}

.updates-intro h1 {
  font-size: 44px;
  margin: 0 0 16px;
}

.updates-list {
  padding: 20px 0 80px;
  max-width: 640px;
  margin: 0 auto;
}

.update-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--cream-line);
  display: flex;
  gap: 16px;
  align-items: baseline;
}

.update-item:last-child { border-bottom: none; }

.update-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sienna);
  flex-shrink: 0;
  transform: translateY(-3px);
}

.update-text {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--walnut);
  margin: 0;
  line-height: 1.55;
}

/* --- About page --- */
.about-hero {
  padding: 70px 0 40px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.about-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 40px -20px rgba(44, 36, 22, 0.3);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h1 {
  font-size: 44px;
  margin: 0 0 24px;
  line-height: 1.1;
}

.about-content p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
  margin: 0 0 18px;
}

.about-detail-image {
  margin: 60px 0;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
}

.about-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Footer --- */
.site-footer {
  background: var(--walnut);
  color: var(--brass);
  padding: 40px 0;
  font-size: 13px;
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-name {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 15px;
}

.site-footer a { color: var(--brass); }
.site-footer a:hover { color: var(--cream); }

/* --- Responsive --- */
@media (max-width: 820px) {
  .container, .container-narrow { padding: 0 20px; }

  .nav-toggle { display: block; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream-deep);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--brass);
    padding: 8px 0;
  }

  .site-nav.open { display: flex; }

  .site-nav a {
    padding: 14px 32px;
    width: 100%;
    border-bottom: 1px solid var(--cream-line);
  }

  .site-nav a:last-child { border-bottom: none; }
  .site-nav a.active { border-bottom-color: var(--cream-line); background: var(--cream); }

  .hero { padding: 50px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { max-width: 400px; margin: 0 auto; }

  .venue-grid { grid-template-columns: repeat(2, 1fr); }

  .video-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 0; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-width: 400px; margin: 0 auto; }

  .section { padding: 60px 0; }

  .track { flex-direction: column; align-items: stretch; }
  .track audio { width: 100%; min-width: 0; }

  .btn { display: block; text-align: center; margin: 0 0 12px; }
}
