/* DJ Curly — production stylesheet
   Palette: cream hsl(38 50% 94%) · ink hsl(20 30% 10%) · pink hsl(340 85% 58%)
            yellow hsl(42 92% 55%) · orange hsl(18 90% 58%) · purple hsl(280 55% 40%) */

:root {
  --cream: hsl(38 50% 94%);
  --ink: hsl(20 30% 10%);
  --pink: hsl(340 85% 58%);
  --yellow: hsl(42 92% 55%);
  --orange: hsl(18 90% 58%);
  --purple: hsl(280 55% 40%);
  --bebas: 'Bebas Neue', sans-serif;
  --monoton: 'Monoton', sans-serif;
  --grotesk: 'Space Grotesk', sans-serif;
  --caveat: 'Caveat', cursive;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--grotesk);
  overflow-x: clip;
  scroll-behavior: smooth;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--pink); }
img { max-width: 100%; display: block; }

input::placeholder, textarea::placeholder { color: hsl(20 15% 55%); }

/* Animations */
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pulse-glow {
  0%, 100% { box-shadow: 8px 8px 0 0 var(--ink), 0 0 0 0 hsla(340, 85%, 58%, .5); }
  50% { box-shadow: 8px 8px 0 0 var(--ink), 0 0 0 14px hsla(340, 85%, 58%, 0); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}
.spin { animation: spin-slow 18s linear infinite; }
.floaty { animation: floaty 5s ease-in-out infinite; }
.pulse { animation: pulse-glow 2.4s ease-out infinite; }

.grain { position: relative; }
.grain::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .12;
  mix-blend-mode: multiply;
  z-index: 1;
}

/* Layout helpers */
.wide-inner { max-width: 90rem; margin: 0 auto; padding: 0 24px; }
.mid-inner { max-width: 72rem; margin: 0 auto; padding: 0 24px; }

.pink { color: var(--pink); }
.purple { color: var(--purple); }
.outline { -webkit-text-stroke: 2px var(--ink); color: transparent; }

.hand { font-family: var(--caveat); font-size: 30px; margin-bottom: 8px; }
.hand-yellow { color: var(--yellow); }
.hand-pink { color: var(--pink); }
.hand-purple { color: var(--purple); }

.section-title {
  font-family: var(--monoton);
  letter-spacing: .02em;
  font-weight: 400;
  font-size: clamp(48px, 5vw, 72px);
  line-height: .9;
  margin: 0 0 32px;
}
.dark-title { color: var(--ink); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--bebas);
  letter-spacing: .04em;
  font-size: 20px;
  padding: 16px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}
.btn-pink { background: var(--pink); color: #fff; box-shadow: 8px 8px 0 0 var(--ink); }
.btn-pink:hover { color: #fff; }
.btn-outline { border: 2px solid var(--ink); transition: all .2s; }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-dark { background: var(--ink); color: var(--cream); transition: background .2s; }
.btn-dark:hover { background: var(--pink); color: var(--cream); }

/* ============ NAV ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
  background: hsla(38, 50%, 94%, .85);
  border-bottom: 1px solid hsla(20, 30%, 10%, .1);
}
.nav-inner {
  max-width: 90rem; margin: 0 auto;
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 8px; }
.brand-name { font-family: var(--bebas); letter-spacing: .08em; font-size: 24px; }
.main-nav { display: flex; align-items: center; gap: 32px; font-family: var(--bebas); letter-spacing: .04em; font-size: 18px; }
.main-nav a { transition: color .2s; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: var(--cream);
  font-family: var(--bebas); letter-spacing: .04em; font-size: 18px;
  padding: 8px 16px; border-radius: 999px;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--pink); color: var(--cream); }

/* ============ TICKERS ============ */
.ticker-band { overflow: hidden; }
.ticker-dark {
  background: var(--ink); color: var(--yellow);
  padding: 12px 0;
  border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
}
.ticker-pink {
  position: relative;
  padding: 40px 0;
  background: var(--pink); color: var(--cream);
  border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink);
}
.ticker-track {
  display: flex; white-space: nowrap; width: max-content;
  font-family: var(--bebas); letter-spacing: .04em;
  animation: marquee 32s linear infinite;
}
.ticker-dark .ticker-track { font-size: 24px; }
.ticker-pink .ticker-track { font-size: 48px; }
.ticker-group { display: flex; flex-shrink: 0; }
.ticker-group > span { padding: 0 24px; }
.ticker-group.tracks > span { padding: 0 32px; display: flex; align-items: center; gap: 24px; }

/* ============ HERO ============ */
.hero { overflow: hidden; min-height: 100dvh; display: flex; flex-direction: column; }
.hero-body { flex: 1; position: relative; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, hsla(38, 50%, 94%, .3), hsla(38, 50%, 94%, .6), var(--cream));
  pointer-events: none;
}
.float-disc {
  position: absolute; top: 48px; right: 8%;
  --r: -8deg;
  width: 112px; height: 112px; border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--orange), var(--pink));
  box-shadow: 8px 8px 0 0 var(--ink);
}
.float-vinyl { position: absolute; bottom: 96px; left: 6%; animation-delay: 1s; --r: 12deg; }
.hero-content { position: relative; max-width: 90rem; margin: 0 auto; padding: 96px 24px; }
.hero-inner { max-width: 56rem; }
.kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.kicker-line { width: 48px; height: 2px; background: var(--pink); }
.kicker-text { font-family: var(--caveat); font-size: 24px; color: var(--pink); }
.hero-title {
  font-family: var(--monoton);
  letter-spacing: .02em; font-weight: 400;
  font-size: clamp(2.5rem, 10vw, 9.5rem);
  line-height: 1.05; margin: 0;
  color: var(--ink);
}
.hero-sub { margin: 32px 0 0; max-width: 36rem; font-size: 20px; color: hsla(20, 30%, 10%, .8); line-height: 1.6; }
.hero-ctas { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.hero-stats {
  margin-top: 64px;
  display: flex; flex-wrap: wrap; column-gap: 40px; row-gap: 16px;
  font-family: var(--bebas); letter-spacing: .04em; font-size: 18px;
  color: hsla(20, 30%, 10%, .7);
}
.stat-num { font-size: 30px; color: var(--ink); }

/* ============ ABOUT ============ */
.about {
  position: relative; padding: 128px 0;
  background: var(--ink); color: var(--cream);
  overflow: hidden;
}
.blob { position: absolute; width: 384px; height: 384px; border-radius: 999px; filter: blur(64px); }
.blob-purple { top: -80px; right: -80px; background: hsla(280, 55%, 40%, .3); }
.blob-pink { bottom: -80px; left: -80px; background: hsla(340, 85%, 58%, .25); }
.about-inner {
  position: relative;
  max-width: 72rem; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: center;
}
.portrait-wrap { position: relative; }
.portrait-back {
  position: absolute; inset: -16px;
  background: var(--yellow); border-radius: 16px;
  transform: rotate(-3deg);
}
.portrait {
  position: relative; width: 100%;
  aspect-ratio: 3/4; object-fit: cover;
  border-radius: 16px;
}
.about-copy .hand { font-size: 30px; margin-bottom: 12px; }
.about-text { display: flex; flex-direction: column; gap: 20px; font-size: 18px; line-height: 1.6; color: hsla(38, 50%, 94%, .85); }
.about-text p { margin: 0; }
.specs { margin-top: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.spec { border-left: 2px solid var(--pink); padding-left: 16px; }
.spec-t { font-family: var(--bebas); letter-spacing: .04em; font-size: 14px; color: var(--yellow); }
.spec-v { font-size: 16px; }

/* ============ GALLERY ============ */
.gallery-section { position: relative; padding: 128px 0; }
.gallery-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.g-item {
  position: relative; overflow: hidden;
  border-radius: 12px; border: 2px solid var(--ink);
  margin: 0;
}
.g-feature { grid-column: span 2; grid-row: span 2; }
.g-green { background: #1f2b21; }
.g-black { background: #000; }
.g-item img { width: 100%; height: 100%; }
.fit-cover { object-fit: cover; }
.fit-contain { object-fit: contain; }
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, hsla(20, 30%, 10%, .85), transparent);
  color: var(--cream);
  font-family: var(--bebas); letter-spacing: .04em; font-size: 18px;
}

/* ============ GIGS ============ */
.gigs {
  position: relative; padding: 112px 0;
  background: var(--yellow);
  border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink);
}
.gigs-head { margin-bottom: 48px; }
.gig-list { list-style: none; margin: 0; padding: 0; }
.gig-row {
  padding: 24px 8px; margin: 0 -8px;
  border-bottom: 2px solid var(--ink);
  display: grid; grid-template-columns: 3fr 5fr 2fr 2fr; gap: 16px; align-items: center;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.gig-row:hover { background: var(--ink); color: var(--cream); }
.gig-date { font-family: var(--bebas); letter-spacing: .08em; font-size: 24px; }
.gig-venue { font-family: var(--bebas); letter-spacing: .04em; font-size: 24px; }
.gig-town { display: flex; align-items: center; gap: 4px; font-size: 14px; opacity: .7; }
.gig-tag { font-family: var(--bebas); letter-spacing: .04em; font-size: 14px; text-transform: uppercase; opacity: .8; }
.gig-cal { text-align: right; }
.gig-cal svg { opacity: .5; display: inline; }
.gigs-note { margin: 32px 0 0; font-family: var(--bebas); letter-spacing: .04em; font-size: 18px; color: hsla(20, 30%, 10%, .75); }
.gigs-insta { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); transition: color .2s; }
.gigs-insta svg { flex: none; }
.gigs-insta:hover { color: var(--pink); }

/* ============ RESIDENT DJ ============ */
.residencies { position: relative; padding: 128px 0; }
.residencies-head { margin-bottom: 48px; }
.residencies-sub { margin: 0; max-width: 40rem; font-size: 18px; line-height: 1.6; color: hsla(20, 30%, 10%, .75); }
.flyer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 44rem; margin: 0 auto; }
.flyer {
  margin: 0;
  border: 2px solid var(--ink);
  border-radius: 12px;
  overflow: hidden;
  background: #1f2b21;
  box-shadow: 8px 8px 0 0 var(--pink);
}
.flyer:nth-child(2) { box-shadow: 8px 8px 0 0 var(--purple); }
.flyer img { width: 100%; height: auto; display: block; }
.flyer figcaption {
  padding: 16px;
  background: var(--ink); color: var(--cream);
  display: flex; flex-direction: column; gap: 4px;
}
.flyer-venue { font-family: var(--bebas); letter-spacing: .04em; font-size: 20px; }
.flyer-when { font-size: 14px; color: hsla(38, 50%, 94%, .75); }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 128px 0; }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card {
  position: relative; padding: 28px;
  border-radius: 16px; border: 2px solid var(--ink);
  background: var(--cream);
  margin: 0;
}
.t-card svg { opacity: .6; margin-bottom: 12px; }
.t-card p { margin: 0; font-size: 20px; line-height: 1.375; font-weight: 500; }
.t-card footer { margin-top: 20px; font-family: var(--bebas); letter-spacing: .08em; font-size: 14px; opacity: .8; }
.t-card-pink { background: var(--pink); color: var(--cream); transform: translateY(24px); }

/* ============ INSTAGRAM ============ */
.insta { position: relative; padding: 32px 0 128px; }
.insta-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: 48px;
}
.insta-follow { text-decoration: none; }
.insta-embed {
  --behold-row-gap: 12px;
  --behold-column-gap: 12px;
  --behold-border-radius: 12px;
}

/* ============ BOOK ============ */
.book {
  position: relative; padding: 128px 0;
  background: var(--ink); color: var(--cream);
  overflow: hidden;
}
.mirrorball {
  position: absolute; top: 40px; right: 40px;
  width: 224px; height: 224px; opacity: .7;
}
.mirrorball img { width: 100%; height: 100%; object-fit: cover; border-radius: 999px; }
.book-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 5fr 7fr; gap: 48px;
}
.book-sub { font-size: 18px; color: hsla(38, 50%, 94%, .8); margin: 0 0 40px; line-height: 1.6; }
.contact-list { display: flex; flex-direction: column; gap: 20px; font-family: var(--bebas); letter-spacing: .04em; font-size: 18px; }
.contact-row { display: flex; align-items: center; gap: 16px; }
a.contact-row:hover { color: var(--cream); }
.contact-badge {
  width: 48px; height: 48px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.bg-pink { background: var(--pink); }
.bg-yellow { background: var(--yellow); color: var(--ink); }
.bg-purple { background: var(--purple); }
.bg-whatsapp { background: #25d366; color: #fff; }
.socials { margin-top: 40px; display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px; border-radius: 999px;
  border: 2px solid hsla(38, 50%, 94%, .4);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.social-btn:hover { background: var(--pink); border-color: var(--pink); color: var(--cream); }

.book-form {
  background: var(--cream); color: var(--ink);
  border-radius: 16px; padding: 40px;
  box-shadow: 8px 8px 0 0 var(--pink);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.book-form label { display: block; }
.book-form label > span {
  display: block;
  font-family: var(--bebas); letter-spacing: .08em; font-size: 14px;
  margin-bottom: 8px;
}
.book-form input, .book-form textarea {
  width: 100%;
  border-radius: 8px; border: 2px solid var(--ink);
  background: transparent;
  padding: 12px 16px;
  font-family: var(--grotesk); font-size: 16px;
  outline: none;
  transition: border-color .2s;
  color: inherit;
}
.book-form textarea { resize: vertical; }
.book-form input:focus, .book-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 2px hsla(340, 85%, 58%, .3);
}
.form-message { margin-top: 20px; }
.book-form .btn-dark { margin-top: 28px; }
.book-form .btn-dark:active { transform: scale(.98); }
.form-sent {
  margin-top: 20px; color: var(--pink);
  font-family: var(--bebas); letter-spacing: .04em; font-size: 18px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink); color: hsla(38, 50%, 94%, .7);
  border-top: 1px solid hsla(38, 50%, 94%, .1);
}
.footer-inner {
  padding: 40px 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px;
}
.footer-brand { display: flex; align-items: center; gap: 8px; }
.footer-name { font-family: var(--bebas); letter-spacing: .08em; font-size: 20px; color: var(--cream); }
.footer-tag { font-size: 14px; margin-left: 8px; }
.footer-copy { font-size: 14px; font-family: var(--bebas); letter-spacing: .08em; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .float-vinyl { left: auto; right: 6%; bottom: 24px; }
  .float-vinyl svg { width: 56px; height: 56px; }
  .about-inner { grid-template-columns: 1fr; }
  .portrait-wrap { max-width: 24rem; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .t-grid { grid-template-columns: 1fr; }
  .t-card-pink { transform: none; }
  .flyer-grid { grid-template-columns: 1fr; max-width: 24rem; gap: 40px; }
  .book-grid { grid-template-columns: 1fr; }
  .mirrorball { width: 128px; height: 128px; top: 24px; right: 24px; opacity: .4; }
  .gig-row { grid-template-columns: 1fr; gap: 8px; }
  .gig-cal { display: none; }
  .ticker-pink .ticker-track { font-size: 32px; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .g-feature { grid-column: span 1; grid-row: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .book-form { padding: 24px; }
  .hero-content { padding: 64px 24px; }
  .float-disc { width: 72px; height: 72px; top: 24px; }
}
