/* =========================
   VARIABLES
========================= */
:root{
  --accent: #ff4d4d;
  --accent-gradient: linear-gradient(45deg, #ff4d4d, #ff914d);
}

/* =========================
   BASE
========================= */
*{ box-sizing: border-box; }

body{
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* Prevent sticky nav from covering section titles when clicking anchors */
section{ scroll-margin-top: 84px; }

/* =========================
   TOP NAV
========================= */
.topnav{
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 14px 10px;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topnav a{
  color: #fff;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: 0.25s ease;
}

.topnav a:hover{
  background: var(--accent-gradient);
  border-color: transparent;
}

/* =========================
   GENERAL LAYOUT
========================= */
section{
  border-radius: 12px;
  margin: 2rem auto;
  max-width: 1000px;
}

/* Mobile padding only */
@media (max-width: 768px){
  section{ padding: 2rem 1rem; }
}

/* =========================
   HEADER / HERO
========================= */
header{
  min-height: 60vh;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.85)),
    url("images/hero.jpg") center / contain no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding: 0 1rem 2.5rem;
}

.hero-text h1{
  font-size: 4rem;
  color: white;
  letter-spacing: 3px;
  text-shadow: 0 0 25px rgba(0,0,0,0.9);
  margin: 0;
}

.hero-tagline{
  margin: 12px 0 0;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

@media (max-width: 768px){
  header{ min-height: 40vh; }
  .hero-text h1{ font-size: 2.5rem; }
}

/* =========================
   SERVICES
========================= */
#services{
  background: var(--accent);
  color: white;
  padding: 2rem;
  text-align: center;
}

#services h2{
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
}

#services p{
  font-size: 1.15rem;
  margin: 0;
}

/* =========================
   ABOUT
========================= */
#about{
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  padding: 4rem 2rem;
}

#about h2{
  font-size: 2rem;
  margin-bottom: 1rem;
}

#about p{
  font-size: 1.1rem;
  max-width: 900px;
  margin: auto;
}

/* =========================
   MUSIC
========================= */
#music{
  background: linear-gradient(135deg, #3a1c71, #d76d77);
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}

#music h2{ margin: 0 0 1.25rem 0; }

.music-intro{
  margin: 1rem auto 0;
  max-width: 760px;
  font-size: 1.05rem;
  opacity: 0.95;
}

.music-actions{
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.music-btn{
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid rgba(255,255,255,0.22);
  color: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.music-btn.primary{
  background: var(--accent);
  border-color: transparent;
}

.music-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* Filters */
.music-filters{
  margin: 1.75rem auto 0;
  max-width: 980px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-btn{
  appearance: none;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.35);
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease;
  font-weight: bold;
}

.filter-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.30);
}

.filter-btn.active{
  background: var(--accent-gradient);
  border-color: transparent;
}

/* Grid */
.music-grid{
  margin: 1.5rem auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@media (max-width: 980px){
  .music-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px){
  .music-grid{ grid-template-columns: 1fr; }
}

.music-card{
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 14px;
  text-decoration: none;
  color: white;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.music-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(0,0,0,0.45);
  border-color: rgba(255,255,255,0.25);
}

.music-cover{
  width: 84px;
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  display: grid;
  place-items: center;
}

.music-cover-fallback{
  font-size: 28px;
  opacity: 0.95;
}

.music-title{
  font-size: 1.05rem;
  font-weight: bold;
  margin-top: 2px;
}

.music-meta{
  opacity: 0.85;
  font-size: 0.92rem;
  margin-top: 4px;
}

.music-badges{
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge{
  font-size: 0.78rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
}

.music-cta{
  margin-top: 12px;
  color: #1DB954;
  font-weight: bold;
}

.music-note{
  margin-top: 2rem;
  opacity: 0.9;
}

.music-note a{
  color: #ffd580;
  text-decoration: underline;
}

.music-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Hide cards when filtered */
.music-card.is-hidden{ display: none !important; }

/* =========================
   BOOKING (Email Buttons)
========================= */
#booking{
  background: linear-gradient(135deg, #0f2027, #203a43);
  padding: 5rem 2rem;
  text-align: center;
}

.booking-intro{
  margin: 1rem auto 0;
  max-width: 760px;
  font-size: 1.05rem;
  opacity: 0.95;
}

/* Centered category headings */
.booking-subhead{
  margin: 3rem auto 1.5rem;
  text-align: center;
  color: #ffd580;
  letter-spacing: 1px;
  font-size: 1.4rem;
}

/* Centered grid */
.booking-grid{
  margin: 0 auto 2.5rem;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  justify-content: center;
}

.booking-card{
  text-align: left;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.booking-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.22);
}

.booking-card h3{
  margin: 0 0 8px 0;
  font-size: 1.1rem;
}

.booking-price{
  margin: 0 0 14px 0;
  color: #ffd580;
  font-weight: bold;
}

/* Center button under content */
.booking-btn{
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  text-align: center;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  background: var(--accent);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-btn:hover{
  background: var(--accent-gradient);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.35);
}

/* =========================
   FEATURED JFQ BOOKING BANNER
========================= */
.jf-feature{
  padding: 4.5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #2b1230, #b24a4a);
  position: relative;
  overflow: hidden;
}

.jf-pill{
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  letter-spacing: 1px;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.jf-title{
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 2px;
}

.jf-copy{
  margin: 1.25rem auto 0;
  max-width: 860px;
  font-size: 1.15rem;
  opacity: 0.95;
}

.jf-btn{
  display: inline-block;
  margin-top: 2.25rem;
  padding: 16px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  background: var(--accent);
  border: 2px solid rgba(255,255,255,0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.jf-btn:hover{
  background: var(--accent-gradient);
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.35);
}

/* =========================
   GIGS
========================= */
#gigs{
  padding: 5rem 2rem;
  background: #000;
  text-align: center;
}

.gigs-subhead{
  text-align: center;
  margin-top: 2rem;
  color: #ffd580;
  letter-spacing: 0.5px;
}

.gig-list{
  max-width: 800px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gig{
  padding: 2rem;
  border: 2px solid var(--accent);
  border-radius: 16px;
  background: #111;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gig:hover{
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(255, 77, 77, 0.5);
}

.gig-date{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0.75rem 0;
  color: #ff914d;
  font-weight: bold;
}

.gig-date .cal-icon{
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: 0.95;
}

.gig-date .cal-icon rect,
.gig-date .cal-icon line{
  stroke: currentColor;
}

/* =========================
   CONTACT
========================= */


#contact a{
  color: #ffd580;
  text-decoration: underline;
}/* =========================
   CONTACT SECTION
========================= */

#contact{
  background: linear-gradient(135deg,#102a43,#243b55);
  padding:4rem 2rem;
  text-align:center;
}

.contact-intro{
  max-width:700px;
  margin:1rem auto 2rem;
  opacity:.9;
}

.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  max-width:900px;
  margin:0 auto;
}

.contact-card{
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.15);
  border-radius:16px;
  padding:1.5rem;
  transition:.25s;
}

.contact-card:hover{
  transform:translateY(-4px);
  box-shadow:0 0 20px rgba(0,0,0,.4);
}

.contact-card h3{
  margin-bottom:.5rem;
  color:#ffd580;
}

.contact-btn{
  display:inline-block;
  margin-top:1rem;
  padding:10px 18px;
  border-radius:30px;
  text-decoration:none;
  background:var(--accent);
  color:white;
  font-weight:bold;
  transition:.25s;

  max-width:100%;
  word-break:break-word;
  text-align:center;
}

.contact-btn:hover{
  background:var(--accent-gradient);
}/* =========================
   JFQ FEATURED SECTION
========================= */
.jfq-feature {
  margin: 2.5rem auto 0;
  max-width: 1000px;
  padding: 2.5rem 1.75rem;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(255, 77, 77, 0.28), transparent 60%),
    radial-gradient(900px 500px at 90% 30%, rgba(255, 145, 77, 0.22), transparent 55%),
    rgba(0,0,0,0.35);
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
  text-align: center;
}

.jfq-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.35);
  color: #ffd580;
}

.jfq-title {
  margin: 1rem 0 0.5rem;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
}

.jfq-subtitle {
  margin: 0.75rem auto 0;
  max-width: 820px;
  font-size: 1.05rem;
  opacity: 0.95;
  line-height: 1.6;
}

.jfq-actions {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.jfq-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.14);
  background: var(--accent-gradient);
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.jfq-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.5);
  filter: brightness(1.06);
}

.jfq-btn.secondary {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.22);
}

.jfq-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  text-align: left;
}

@media (max-width: 900px) {
  .jfq-grid { grid-template-columns: 1fr; }
  .jfq-title { font-size: 2rem; }
}

.jfq-card {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 18px;
}

.jfq-card h3 {
  margin: 0 0 8px 0;
  font-size: 1.15rem;
}

.muted {
  opacity: 0.85;
}

.jfq-photo {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  margin-top: 10px;
}

.jfq-photo-fallback code {
  color: #ffd580;
}

/* Responsive video embeds */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 10px;
}

@media (max-width: 620px) {
  .video-grid { grid-template-columns: 1fr; }
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* =========================
   FIX: Email buttons not hanging off edge
   (Applies to contact buttons + other long-label buttons)
========================= */
.contact-btn,
.booking-btn {
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
  text-align: center;
}
.booking-actions {
  margin: 1rem 0 2rem;
}

.booking-note {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.5;
}#lessons {
  scroll-margin-top: 100px;
}#gigs .gig-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 1rem 0 2rem;
}

#gigs .gig-btn {
  display: inline-block;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

#gigs .gig-btn.secondary {
  opacity: 0.9;
}

#gigs .gig-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

#gigs .gig {
  border-radius: 18px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

#gigs .gig.jfq {
  border-left: 5px solid #d4af37;
}

#gigs .gig.jfii {
  border-left: 5px solid #5bc0eb;
}

#gigs .gig.this-week {
  box-shadow: 0 0 0 2px rgba(255,255,255,0.12);
  transform: scale(1.01);
}

#gigs .gig-date span {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.35rem;
}

#gigs .gig-empty {
  opacity: 0.8;
}
