/* ============================================================
   DJCueWorldWide — Static layout build (reference: briandawe pacing)
   Not a clone — different color story + media emphasis
   ============================================================ */

:root{
  --bg: #0E0F11;
  --panel: #13161A;
  --text: #EDEFF2;
  --muted: #A7B0BB;
  --line: rgba(255,255,255,0.08);

  /* Accent system (locked): teal primary + muted green secondary */
  --accent: #1AA6A6;
  --accent2: #5BCB7A;
  --shadow: 0 18px 60px rgba(0,0,0,0.55);

  --radius: 18px;
  --radius2: 26px;
  --max: 1120px;

  --fs-h2: clamp(22px, 3vw, 32px);
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
code{ color: var(--text); font-size: 0.95em; }

.container{
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.muted{ color: var(--muted); }
.stack > * + *{ margin-top: 14px; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(26,166,166,1), rgba(91,203,122,0.60));
  color: #061012;
  font-weight: 700;
  border: 0;
  cursor:pointer;
  box-shadow: 0 10px 30px rgba(26,166,166,0.18);
}

.btn--ghost{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
  box-shadow: none;
}

.btn--small{
  height: 38px;
  padding: 0 14px;
  font-weight: 700;
}

.card{
  background: linear-gradient(180deg, rgba(19,22,26,0.95), rgba(19,22,26,0.65));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card--media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.section{
  padding: 72px 0;
}

.section__head{
  display:flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section__head--tight{
  margin-bottom: 12px;
}

h2{
  margin:0;
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
}

h3{
  margin:0 0 8px 0;
  font-size: 18px;
  letter-spacing: -0.01em;
}

/* ============================================================
   TOPBAR (fixed + transparent over hero)
   ============================================================ */

.topbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  border-bottom: none;
}

.topbar__inner{
  height: 70px;
  display:flex;
  align-items:center;
  justify-content: flex-end;
  gap: 14px;
}

.topbar__nav{
  display:flex;
  gap: 18px;
  align-items:center;
}

.topbar__nav a{
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.65);
}

.topbar__nav a:hover{ color: rgba(255,255,255,1); }

.menuBtn{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(14,15,17,0.22);
  backdrop-filter: blur(6px);
  cursor:pointer;
}
.menuBtn span{
  display:block;
  height: 2px;
  width: 18px;
  margin: 5px auto;
  background: rgba(255,255,255,0.92);
  border-radius: 99px;
}

.mobileMenu{
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(14,15,17,0.92);
  padding: 10px 20px 16px;
}
.mobileMenu a{
  display:block;
  padding: 12px 0;
  color: rgba(237,239,242,0.9);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.65);
}
.mobileMenu__socials{
  display:flex;
  gap: 12px;
  padding-top: 10px;
}
.mobileMenu__socials img{
  width: 22px;
  height: 22px;
  opacity: 0.9;
}

/* ============================================================
   HERO
   ============================================================ */

.hero{
  position: relative;
  min-height: 78vh;
  display:flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hero__bg{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.06);
  transform: scale(1.02);
}

.hero__scrim{
  position:absolute;
  inset:0;
  background:
    radial-gradient(700px 500px at 20% 35%, rgba(26,166,166,0.20), transparent 60%),
    radial-gradient(600px 500px at 70% 40%, rgba(91,203,122,0.12), transparent 62%),
    linear-gradient(180deg, rgba(14,15,17,0.35), rgba(14,15,17,0.90));
}

.hero__content{
  position: relative;
  padding: 120px 0 64px;
}

.hero__logo{
  width: min(380px, 92vw);
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 20px 55px rgba(0,0,0,0.65));
}

.hero__tag{
  margin: 0;
  max-width: 720px;
  color: rgba(237,239,242,0.90);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero__socials{
  display:flex;
  gap: 12px;
  margin-top: 24px;
}
.hero__socials img{
  width: 22px;
  height: 22px;
  opacity: 0.88;
}
.hero__socials a:hover img{ opacity: 1; }

/* ============================================================
   GRIDS
   ============================================================ */

.grid2{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

/* This is the new combined Bookings + Contact layout */
.bookingsLayout{
  align-items: start;
}

/* Right portrait should visually align with the combined left column */
.bookingsPortrait img{
  min-height: 640px;
}

.about__highlights{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.pill{
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(19,22,26,0.45);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  color: rgba(237,239,242,0.92);
}

.mediaGrid{
  display:grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.mediaCard--video{
  grid-row: span 2;
}

.videoPoster{
  position: relative;
  width:100%;
  height:100%;
  border:0;
  padding:0;
  cursor:pointer;
  background: transparent;
}

.videoPoster img{
  width:100%;
  height:100%;
  object-fit: cover;
  min-height: 420px;
  filter: contrast(1.05);
}

.playBadge{
  position:absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(14,15,17,0.78);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.featuredVideo{
  width:100%;
  height:100%;
  min-height: 420px;
  object-fit: cover;
}

.mediaNote{
  margin-top: 14px;
  font-size: 14px;
}

/* ============================================================
   SERVICES (POLISH)
   - Was 4-wide across the whole page
   - Now 2-wide inside the left column (prevents pushing Contact down)
   ============================================================ */

.serviceGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service{
  padding: 18px 16px;
}
.service p{ margin: 0; }

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

.contactCard{
  padding: 18px;
}

.contactHead{
  margin-top: 148px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.contactMeta{
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
  display:grid;
  gap: 10px;
}

.contactMeta__row{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.label{ color: rgba(167,176,187,0.9); font-weight: 700; font-size: 13px; }
.value{ color: rgba(237,239,242,0.92); font-weight: 700; font-size: 13px; }

.socialRow{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.socialRow img{
  width: 22px;
  height: 22px;
  opacity: 0.9;
}
.socialRow a:hover img{ opacity: 1; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer{
  padding: 28px 0 46px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,11,13,0.65);
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
}

.footer__brand{
  display:flex;
  align-items:center;
  gap: 12px;
}
.footer__brand img{
  height: 28px;
  width:auto;
  opacity: 0.95;
}
.footer__name{
  font-weight: 900;
  letter-spacing: -0.01em;
}
.footer__tag{
  font-size: 13px;
}

.footer__links{
  display:flex;
  gap: 12px;
}
.footer__links img{
  width: 20px;
  height: 20px;
  opacity: 0.85;
}
.footer__links a:hover img{ opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 980px){
  .mediaGrid{ grid-template-columns: 1fr 1fr; }
  .mediaCard--video{ grid-row: auto; grid-column: 1 / -1; }

  .grid2{ grid-template-columns: 1fr; }
  .card--media img{ min-height: 260px; }

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

  .bookingsPortrait img{ min-height: 360px; }
}

@media (max-width: 740px){
  .topbar__nav{ display:none; }
  .menuBtn{ display:block; }
  .hero{ min-height: 84vh; }

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