/* =====================================================
   CEDAR EXCHANGE — Main Stylesheet
   Colors:
     Navy:   #1e3a6e
     Orange: #c44820
     Yellow: #f0c430
     Cream:  #f0ebe0
     Text:   #1a1410
     Muted:  #5a4e3a
     Border: #d8d0c0
   ===================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: #f0ebe0;
  color: #1a1410;
  font-size: 16px;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ── Typography helpers ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c44820;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #d8d0c0;
}

/* ── Layout ── */
.section {
  padding: 48px 40px;
  border-top: 1px solid #d8d0c0;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.85;
}

.btn-primary {
  background-color: #c44820;
  color: #ffffff;
}

.btn-secondary {
  background-color: #1e3a6e;
  color: #f0c430;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background-color: #1e3a6e;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0c430;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8c0e8;
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f0c430;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #f0c430;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hamburger open state */
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  overflow: hidden;
  position: relative;
}

.hero-content {
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}

.hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c44820;
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 76px;
  font-weight: 800;
  line-height: 0.88;
  text-transform: uppercase;
  color: #1e3a6e;
}

.hero-title span {
  display: block;
  color: #c44820;
}

.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7a6a50;
  margin: 18px 0 32px;
}

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

.hero-geo {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}

.hero-geo svg {
  width: 100%;
  height: 100%;
}

/* =====================================================
   PHOTO GRID
   ===================================================== */
.photo-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6px;
  border-radius: 6px;
  overflow: hidden;
}

.photo-main {
  height: 480px;
  overflow: hidden;
}

.photo-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.photo-sm {
  height: 237px;
  overflow: hidden;
  background: #d8d0c0;
}

.photo-main img,
.photo-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  transition: transform 0.4s ease;
}

.photo-main:hover img,
.photo-sm:hover img {
  transform: scale(1.03);
}

.photo-more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d8d0c0;
}

.photo-more a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a4e3a;
  transition: color 0.15s ease;
}

.photo-more a:hover {
  color: #c44820;
}

/* =====================================================
   ABOUT
   ===================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-bio {
  font-size: 15px;
  line-height: 1.85;
  color: #5a4e3a;
}

.members {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.member {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid #d8d0c0;
  border-radius: 2px;
}

.member-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.member-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1e3a6e;
}

.member-role {
  font-size: 12px;
  color: #8a7a60;
  margin-left: auto;
  text-align: right;
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 0.04em;
}

/* =====================================================
   SHOWS
   ===================================================== */
.shows {
  display: flex;
  flex-direction: column;
}

.show {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid #d8d0c0;
}

.show-date {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c44820;
  min-width: 80px;
}

.show-venue {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1e3a6e;
  margin-bottom: 2px;
}

.show-loc {
  font-size: 13px;
  color: #8a7a60;
}

.show-pill {
  margin-left: auto;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1e3a6e;
  background: #f0c430;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

.shows-link {
  display: inline-block;
  margin-top: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c44820;
  transition: opacity 0.15s ease;
}

.shows-link:hover {
  opacity: 0.7;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background-color: #1e3a6e;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a88b8;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8c0e8;
  transition: color 0.15s ease;
}

.footer-links a:hover {
  color: #f0c430;
}

/* =====================================================
   PAGE HEADER (used on inner pages)
   ===================================================== */
.page-header {
  background-color: #1e3a6e;
  padding: 56px 40px;
}

.page-header-inner {
  max-width: 680px;
}

.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 800;
  text-transform: uppercase;
  color: #f0ebe0;
  line-height: 0.95;
  margin: 10px 0 14px;
}

.page-subtitle {
  font-size: 15px;
  color: #a8c0e8;
  line-height: 1.7;
  max-width: 520px;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1e3a6e;
}

.form-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #8a7a60;
  font-family: 'Lato', sans-serif;
  font-size: 12px;
}

.form-group input,
.form-group textarea {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: #1a1410;
  background: #ffffff;
  border: 1px solid #d8d0c0;
  border-radius: 2px;
  padding: 12px 14px;
  width: 100%;
  transition: border-color 0.15s ease;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #1e3a6e;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b0a898;
}

.btn-full {
  width: 100%;
  text-align: center;
  padding: 15px;
  font-size: 15px;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 36px;
}

.contact-card {
  padding: 16px;
  background: #ffffff;
  border: 1px solid #d8d0c0;
  border-radius: 2px;
}

.contact-card-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c44820;
  margin-bottom: 6px;
}

.contact-card-value {
  font-size: 15px;
  color: #1e3a6e;
  line-height: 1.6;
  transition: opacity 0.15s ease;
}

a.contact-card-value:hover {
  opacity: 0.7;
}

.contact-epk-cta {
  padding: 20px;
  background: #f0c430;
  border-radius: 2px;
}

.contact-epk-cta p {
  font-size: 14px;
  color: #1a1410;
  line-height: 1.6;
}

/* =====================================================
   EPK PAGE
   ===================================================== */
.epk-bio-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.epk-bio-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.epk-bio-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #5a4e3a;
}

.epk-bio-photo {
  border-radius: 4px;
  overflow: hidden;
  height: 280px;
}

.epk-bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Why book us points */
.epk-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.epk-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #d8d0c0;
  border-radius: 2px;
}

.epk-point-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  flex-shrink: 0;
}

.epk-point-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1e3a6e;
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.epk-point-desc {
  font-size: 14px;
  color: #5a4e3a;
  line-height: 1.7;
}

/* Band members */
.epk-members {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.epk-member {
  text-align: center;
}

.epk-member-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #d8d0c0;
}

.epk-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.epk-member-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e3a6e;
}

.epk-member-placeholder span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #f0c430;
}

.epk-member-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1e3a6e;
  letter-spacing: 0.03em;
}

.epk-member-role {
  font-size: 12px;
  color: #8a7a60;
  margin-top: 2px;
  line-height: 1.4;
}

/* Technical requirements */
.epk-tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.epk-tech-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid #d8d0c0;
  border-radius: 2px;
  border-top: 3px solid #1e3a6e;
}

.epk-tech-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1e3a6e;
  margin-bottom: 14px;
}

.epk-tech-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.epk-tech-list li {
  font-size: 14px;
  color: #5a4e3a;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}

.epk-tech-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #c44820;
}

/* Press photos */
.epk-press-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.epk-press-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  background: #d8d0c0;
}

.epk-press-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}

.epk-press-photo:hover img {
  transform: scale(1.04);
}

.epk-photo-note {
  font-size: 13px;
  color: #8a7a60;
}

.epk-photo-note a {
  color: #c44820;
  text-decoration: underline;
}

/* EPK CTA */
.epk-cta-section {
  background: #1e3a6e;
  border-top: none;
  text-align: center;
}

.epk-cta {
  max-width: 480px;
  margin: 0 auto;
}

.epk-cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: #f0ebe0;
  margin-bottom: 10px;
}

.epk-cta-sub {
  font-size: 15px;
  color: #a8c0e8;
  margin-bottom: 28px;
}

/* =====================================================
   SHOWS PAGE
   ===================================================== */
.show-past .show-date,
.show-past .show-venue,
.show-past .show-loc {
  opacity: 0.5;
}

.show-ig-link {
  color: #c44820;
  text-decoration: underline;
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-full-photo {
  border-radius: 4px;
  overflow: hidden;
  height: 360px;
}

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

.about-full-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-full-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #5a4e3a;
}

.about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.about-members {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-member {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid #d8d0c0;
}

.about-member-reverse {
  grid-template-columns: 1fr 280px;
}

.about-member-reverse .about-member-photo {
  order: 2;
}

.about-member-reverse .about-member-info {
  order: 1;
}

.about-member-photo {
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
  background: #d8d0c0;
}

.about-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-member-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1e3a6e;
}

.about-member-placeholder span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #f0c430;
}

.about-member-header {
  margin-bottom: 16px;
}

.about-member-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: #1e3a6e;
  line-height: 1;
  margin-bottom: 6px;
}

.about-member-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c44820;
}

.about-member-bio {
  font-size: 15px;
  line-height: 1.85;
  color: #5a4e3a;
}

/* =====================================================
   MUSIC PAGE
   ===================================================== */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 20px;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #1a1410;
  margin-bottom: 12px;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.video-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1e3a6e;
  margin-bottom: 2px;
}

.video-date {
  font-size: 13px;
  color: #8a7a60;
}

.video-ig-note {
  font-size: 14px;
  color: #8a7a60;
}

.video-ig-note a {
  color: #c44820;
  text-decoration: underline;
  transition: opacity 0.15s ease;
}

.video-ig-note a:hover {
  opacity: 0.7;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1;
  background: #d8d0c0;
}

.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

/* =====================================================
   MOBILE — Responsive
   ===================================================== */
@media (max-width: 768px) {

  .navbar {
    padding: 14px 20px;
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 12px;
    border-top: 1px solid #2a4f8a;
  }

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

  .nav-links li a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #2a4f8a;
    font-size: 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .hero-geo {
    display: none;
  }

  .hero-content {
    padding: 40px 20px;
  }

  .hero-title {
    font-size: 56px;
  }

  .section {
    padding: 36px 20px;
  }

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

  .photo-main {
    grid-column: span 2;
    height: 220px;
  }

  .photo-col {
    flex-direction: row;
  }

  .photo-sm {
    flex: 1;
    height: 120px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .show {
    flex-wrap: wrap;
    gap: 8px;
  }

  .show-pill {
    margin-left: 0;
  }

  .footer {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }

  .page-header {
    padding: 40px 20px;
  }

  .page-title {
    font-size: 40px;
  }

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

  .contact-sidebar {
    padding-top: 0;
  }

  .epk-bio-grid {
    grid-template-columns: 1fr;
  }

  .epk-bio-photo {
    height: 220px;
  }

  .epk-points {
    grid-template-columns: 1fr;
  }

  .epk-members {
    grid-template-columns: 1fr 1fr;
  }

  .epk-tech-grid {
    grid-template-columns: 1fr;
  }

  .epk-press-photos {
    grid-template-columns: 1fr 1fr;
  }

  .about-full-grid {
    grid-template-columns: 1fr;
  }

  .about-full-photo {
    height: 240px;
  }

  .about-member {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .about-member-reverse {
    grid-template-columns: 1fr;
  }

  .about-member-reverse .about-member-photo {
    order: 0;
  }

  .about-member-reverse .about-member-info {
    order: 0;
  }

  .about-member-photo {
    height: 260px;
  }

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

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

  .gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 4/3;
  }
}