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

:root {
  --orange: #e8641c;
  --orange-light: #ff8a42;
  --orange-pale: #fff1e6;
  --bg: #ffffff;
  --bg-soft: #fff8f3;
  --dark: #201812;
  --text: #2b2420;
  --text-muted: #8a7d70;
  --border: rgba(232,100,28,0.18);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--orange);
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo img {
  height: 100px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links > li > a:hover { color: var(--orange); }
.nav-links > li:hover .dropdown { display: block; }
.nav-links > li > a.is-active { color: var(--orange); }

.dropdown {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(43,36,32,0.08);
  min-width: 200px;
  padding: 0.5rem 0;
}
.dropdown a {
  display: block;
  padding: 0.5rem 1.2rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.dropdown a:hover { color: var(--orange); }

.nav-cta {
  background: var(--orange);
  color: #fff !important;
  padding: 0.55rem 1.4rem !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-light); color: #fff !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 8rem 2rem 4rem;
  background:
    linear-gradient(to bottom, rgba(20,12,6,0.55) 0%, rgba(20,12,6,0.35) 40%, rgba(20,12,6,0.72) 100%),
    url('https://images.squarespace-cdn.com/content/v1/646809c9679e22092ad0a1b4/82781060-ae44-4526-bd3c-dda86cf1a359/atomic-funk-project-best-nyc-wedding-event-dance-party-band-background-awards.jpg') center/cover no-repeat;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
  color: #fff;
}
.hero h1 em { font-style: italic; color: var(--orange-light); }

.hero-sub {
  max-width: 560px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* ─── PAGE HEADER (for interior pages) ─── */
.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.page-header .section-label { justify-content: center; display: block; }
.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--text);
}
.page-header h1 em { font-style: italic; color: var(--orange); }
.page-header p {
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--text-muted);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--orange);
  color: var(--orange);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.btn:hover { background: var(--orange); color: #fff; }
.btn-filled { background: var(--orange); color: #fff; }
.btn-filled:hover { background: var(--orange-light); color: #fff; }

/* ─── SECTION BASE ─── */
section { padding: 6rem 2rem; }

.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text);
}
h2 em { font-style: italic; color: var(--orange); }

p { color: var(--text-muted); margin-bottom: 1rem; }

/* ─── ABOUT ─── */
.about { background: var(--bg-soft); }

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

.about-img {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(232,100,28,0.12), transparent),
    url('public/images/Jake3.jpeg') center/cover no-repeat;
  position: relative;
}
.about-img::after {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 1px solid rgba(232,100,28,0.35);
  z-index: -1;
}

/* ─── VIDEO CAROUSEL ─── */
.video-carousel {
  background: var(--bg);
  padding: 10rem 0 3rem;
  overflow: hidden;
}

.video-carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding: 0 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-controls {
  display: flex;
  gap: 0.75rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--orange);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}
.carousel-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.carousel-track-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(43,36,32,0.12);
}

.carousel-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.video-slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  cursor: pointer;
}

.video-slide-inner {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-soft);
}

.video-slide-inner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  pointer-events: none;
}

.video-slide.is-active .video-slide-inner video {
  pointer-events: auto;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,12,6,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.video-slide.is-active .video-overlay.is-playing {
  opacity: 0;
  pointer-events: none;
}

.video-slide-meta {
  padding: 1rem 2rem 0;
  max-width: 1100px;
  margin: 0 auto;
}
.video-slide-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.video-slide-sub {
  font-size: 0.73rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  background: rgba(232,100,28,0.25);
  border: none;
  cursor: pointer;
  transition: background 0.2s, width 0.3s;
  padding: 0;
}
.carousel-dot.is-active {
  background: var(--orange);
  width: 24px;
}

/* ─── AWARDS ─── */
.awards { background: var(--bg); text-align: center; }

.awards-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.award-badge { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }

.award-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem; font-weight: 700;
  color: var(--orange); text-align: center;
  letter-spacing: 0.05em; padding: 0.5rem; line-height: 1.3;
  background: var(--orange-pale);
}

.award-year { font-size: 0.68rem; letter-spacing: 0.15em; color: var(--text-muted); text-transform: uppercase; }

/* ─── TESTIMONIALS ─── */
.testimonial-section { background: var(--bg-soft); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(43,36,32,0.05);
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem; color: var(--orange); opacity: 0.25;
  position: absolute; top: -0.5rem; left: 1.2rem; line-height: 1;
}

.testimonial-text {
  font-style: italic; font-size: 0.95rem; line-height: 1.8;
  margin-bottom: 1.2rem; color: var(--text);
}
.testimonial-author { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--orange); }

/* ─── SERVICES ─── */
.services { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 3rem;
}

.service-card { background: var(--bg); padding: 2rem 1.8rem; transition: background 0.3s; }
.service-card:hover { background: var(--bg-soft); }
.service-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; color: var(--orange); margin-bottom: 1rem; display: block; }
.service-name { font-family: var(--font-display); font-size: 1.15rem; margin-bottom: 0.75rem; color: var(--text); }
.service-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ─── PHOTO STRIP ─── */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.photo-strip-item { aspect-ratio: 1; overflow: hidden; position: relative; background: var(--bg-soft); }
.photo-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s;
}
.photo-strip-item:hover img { transform: scale(1.06); }

/* ─── LIVE SHOWS ─── */
.shows {
  background:
    linear-gradient(to bottom, rgba(20,12,6,0.78), rgba(20,12,6,0.6)),
    url('public/images/band-huddle.jpeg') center/cover fixed no-repeat;
  text-align: center;
}
.shows h2, .shows h2 em { color: #fff; }
.shows h2 em { color: var(--orange-light); }
.shows p { color: rgba(255,255,255,0.8); }

/* ─── CTA ─── */
.cta {
  background:
    linear-gradient(to bottom, rgba(20,12,6,0.68), rgba(20,12,6,0.85)),
    url('https://images.squarespace-cdn.com/content/v1/646809c9679e22092ad0a1b4/81687392-4c7f-4b76-9eda-5048761c9653/atomic-funk-project-best-nyc-wedding-event-dance-party-band-background-inquire-now.jpg') center/cover no-repeat;
  text-align: center;
  padding: 8rem 2rem;
}
.cta h2 { color: #fff; }
.cta h2 em { color: var(--orange-light); }

/* ─── CONTACT PAGE ─── */
.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-item { margin-bottom: 2rem; }
.contact-info-item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.contact-info-item a, .contact-info-item span {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}
.contact-info-item a:hover { color: var(--orange); }

.contact-form {
  display: grid;
  gap: 1.4rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 140px; }
.contact-form .btn { justify-self: start; border: none; margin-top: 0.5rem; }

.contact-map {
  margin-top: 4rem;
  aspect-ratio: 21/9;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── SONGS PAGE ─── */
.songs-section { background: var(--bg); }
.songs-intro { max-width: 640px; margin: 0 auto 3rem; text-align: center; }

.songs-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3.5rem;
}
.songs-filter button {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.6rem 1.3rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.songs-filter button:hover { border-color: var(--orange); color: var(--orange); }
.songs-filter button.is-active { background: var(--orange); border-color: var(--orange); color: #fff; }

.songs-category { margin-bottom: 3.5rem; }
.songs-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.songs-category-title em { font-style: italic; color: var(--orange); }

.songs-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}
.song-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.song-title { color: var(--text); }
.song-artist { color: var(--text-muted); font-style: italic; white-space: nowrap; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  padding: 4rem 2rem 2rem;
  border-top: 4px solid var(--orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}
.footer-brand p { font-size: 0.85rem; margin-top: 1rem; max-width: 280px; color: rgba(255,255,255,0.6); }
.footer-col h4 { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--orange-light); margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.83rem; padding: 0.25rem 0; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
}
.social-links { display: flex; gap: 1.2rem; }
.social-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.1em; transition: color 0.2s; }
.social-links a:hover { color: var(--orange-light); }

/* ─── DIVIDER ─── */
.gold-divider { width: 40px; height: 1px; background: var(--orange); margin: 1.5rem auto; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .awards-row { gap: 1.5rem; }
  .video-carousel-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .carousel-track-wrapper { border-radius: 0; box-shadow: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}
