:root{
  --bg:#1f1f1f;
  --bg2:#232323;
  --card:#2a2a2a;
  --text:#f2f2f2;
  --muted:#b8b8b8;
  --gold:#c6a75e;
  --border: rgba(255,255,255,0.10);
  --shadow: 0 18px 60px rgba(0,0,0,0.40);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

/* remove default blue/purple link behavior */
a{ color:var(--text); text-decoration:none; }
a:visited{ color:var(--text); }
a:hover{ color:var(--gold); }

/* keep media from blowing up */
img, video{
  display:block;
  max-width:100%;
}

.container{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
}

.section{ padding:64px 0; }
.section--alt{
  background:var(--bg2);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.h2{
  margin:0 0 18px;
  font-size:28px;
  font-weight:900;
  letter-spacing:-0.01em;
}

.lead{
  margin:0 0 18px;
  max-width:78ch;
  line-height:1.65;
  color:rgba(242,242,242,0.86);
}

/* HERO */
.hero{
  position:relative;
  min-height:92vh;            /* BIG hero */
  overflow:hidden;
  border-bottom:1px solid var(--border);
}

.hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;           /* makes video full screen */
  transform:scale(1.02);
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 520px at 20% 30%, rgba(0,0,0,0.35), transparent 60%),
    linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(31,31,31,0.95));
}

.hero__inner{
  position:relative;
  z-index:2;
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
  padding:96px 0 64px;
}

.hero__title{
  font-size:clamp(40px, 5.6vw, 70px);
  font-weight:900;
  letter-spacing:-0.02em;
  margin:0;
}

.hero__subtitle{
  font-size:clamp(20px, 2.8vw, 34px);
  font-weight:800;
  margin-top:10px;
  color:rgba(242,242,242,0.92);
}

.hero__ctas{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.hero__tags{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

/* buttons & tags */
.btn, .tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:900;
  border:1px solid transparent;
}

.btn--gold{
  background:var(--gold);
  color:#1f1f1f;
}
.btn--gold:hover{ filter:brightness(1.05); }

.btn--ghost, .tag{
  background:rgba(31,31,31,0.35);
  border-color:rgba(242,242,242,0.16);
  color:rgba(242,242,242,0.92);
}
.btn--ghost:hover{ border-color:rgba(198,167,94,0.65); }

/* WHAT I DJ (vertical stack) */
.stack{
  display:grid;
  gap:14px;
  margin-top:14px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.20);
}

.card__title{ font-weight:900; margin-bottom:8px; }
.card__text{ line-height:1.6; color:rgba(242,242,242,0.86); }

/* bullets */
.bullets{
  margin:0 0 18px;
  padding-left:18px;
  line-height:1.7;
  color:rgba(242,242,242,0.90);
}
.bullets li{ margin:8px 0; }

/* mini boxes */
.mini-row{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin:18px 0;
}
.mini{
  background:rgba(31,31,31,0.35);
  border:1px solid var(--border);
  border-radius:16px;
  padding:14px;
}
.mini__top{ font-weight:900; }
.mini__sub{ margin-top:6px; color:var(--muted); font-size:12px; }

/* about photo */
.about-photo{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
}
.about-photo img{
  width:100%;
  height:auto;
  object-fit:cover;
  max-height:520px; /* prevents “giant” about photo */
}

/* highlights gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
  margin-top:14px;
}

.gallery img{
  width:100%;
  border-radius:16px;
  border:1px solid var(--border);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
  object-fit:cover;
  aspect-ratio: 4 / 5; /* keeps them consistent & not huge */
}

/* availability */
.contact{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:12px;
  color:rgba(242,242,242,0.90);
}

.plain-link{
  border-bottom:1px solid rgba(198,167,94,0.35);
}
.plain-link:hover{
  border-bottom-color: rgba(198,167,94,0.85);
}

.tiktok-row{ margin:10px 0 16px; }

.form-wrap{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  box-shadow: var(--shadow);
}

/* responsive */
@media (max-width: 950px){
  .gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 700px){
  .mini-row{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .hero__inner{ padding:84px 0 54px; }
}