@charset "UTF-8";

/* =========================
   RESET + BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --footer-h: 76px;
  --header-h: 80px;
  --gold: #C7A740;
  --bg: #1C1C1C;
  --text: #F5F5F5;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* =========================
   HEADER
========================= */
header {
  height: var(--header-h);
  background: var(--gold);
  padding: 8px 12px;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;

  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.2),
    0 2px 0 rgba(0, 0, 0, 0.2),
    0 3px 0 rgba(0, 0, 0, 0.2);
}

.nav {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 28px;
  font-weight: 600;
}

.brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0;
  line-height: 1.1;
  color: var(--text);

  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.2),
    0 2px 0 rgba(0, 0, 0, 0.2),
    0 3px 0 rgba(0, 0, 0, 0.2);
}

.brand,
.brand:link,
.brand:visited,
.brand:hover,
.brand:active {
  text-decoration: none !important;
  color: var(--text);
  cursor: pointer;
}

/* =========================
   HERO DESKTOP
========================= */
.hero {
  height: calc(100vh - var(--header-h) - var(--footer-h));
  background: var(--bg);
  padding: 18px 42px 0;
  overflow: hidden;
}

.hero-grid {
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 520px minmax(420px, 560px) 520px;

  gap: 20px 28px;
  align-items: stretch;
  justify-content: center;
}

/* =========================
   LEFT: DJ IMAGE
========================= */
.hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 100%;
}

.dj-image {
  display: block;
  width: min(520px, 95%);
  height: auto;
  object-fit: contain;
  transform: translateY(4px);
}

/* =========================
   CENTER: TEXT + FORM
========================= */
.hero-text {
  max-height: 100%;
  overflow: hidden;

  justify-self: center;
  align-self: center;
  text-align: left;
  width: 100%;
  max-width: 560px;
}

.hero-text h1 {
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 5px;
  font-size: clamp(20px, 1.9vw, 32px);
}

.hero-text p {
  margin-bottom: 4px;
  max-width: 100%;
  color: #EAEAEA;
  font-size: clamp(11px, 0.86vw, 14px);
  line-height: 1.12;
}

.cta-line {
  font-size: clamp(11px, 0.86vw, 14px);
  font-weight: 800;
  color: var(--text);
}

/* =========================
   FORM
========================= */
.booking-form-wrapper {
  margin-top: 4px;
  max-width: 100%;
}

.booking-form {
  display: grid;
  gap: 3px;
}

.booking-form label {
  font-size: clamp(10px, 0.78vw, 12px);
  font-weight: 700;
  color: #EAEAEA;
}

.booking-form input,
.booking-form select {
  height: 30px;
  border-radius: 8px;
  border: 2px solid rgba(199, 167, 64, 0.65);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 5px 10px;
  outline: none;
  font-size: 12px;
  width: 100%;
  font-family: "Montserrat", sans-serif;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--gold);
}

.booking-form select {
  appearance: auto;
}

.booking-form select option {
  background: var(--bg);
  color: var(--text);
}

/* Checkbox consent */
.checkbox-row {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  margin-top: 4px;
}

.checkbox-row input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--gold);
}

.checkbox-row label {
  font-size: clamp(9px, 0.75vw, 11px);
  line-height: 1.25;
  color: #EAEAEA;
}

.submit-btn {
  margin-top: 3px;
  height: 34px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;

  background: var(--gold);
  color: var(--bg);
}

.submit-btn:hover {
  opacity: 0.95;
}

/* =========================
   RIGHT: LOGO
========================= */
.hero-logo {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 40px;
}

.dj-logo {
  width: 140px;
  height: auto;
  object-fit: contain;
}

/* =========================
   FOOTER
========================= */
footer {
  height: var(--footer-h);

  bottom: 0;
  left: 0;
  right: 0;

  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 800;
  font-size: 18px;
  color: var(--text);

  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.2),
    0 2px 0 rgba(0, 0, 0, 0.2),
    0 3px 0 rgba(0, 0, 0, 0.2);
}

.footer-content {
  max-width: 1400px;
  width: 100%;
  display: flex;
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.contact-icons {
  display: flex;
  gap: 16px;
}

.contact-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-icons img,
.contact-icons i {
  height: 26px;
  color: var(--text);
  transition: transform 0.2s ease;
}

.contact-icons a:hover img,
.contact-icons a:hover i {
  transform: scale(1.15);
}

footer a,
footer a:link,
footer a:visited,
footer a:hover,
footer a:active {
  text-decoration: none;
  color: var(--text);
}

.footer-fine-print {
  width: 100%;
  flex-basis: 100%;
  text-align: center;
  font-size: 9px;
  line-height: 1.15;
  font-weight: 500;
  color: var(--text);
  opacity: 0.85;
  margin-top: -4px;
  text-shadow: none;
}
/* =========================
   LAPTOP HEIGHT FIX
========================= */
@media (min-width: 1101px) and (max-height: 850px) {
  .hero {
    padding: 14px 42px 0;
  }

  .hero-text h1 {
    font-size: clamp(19px, 1.8vw, 30px);
    margin-bottom: 4px;
  }

  .hero-text p {
    font-size: clamp(10px, 0.82vw, 13px);
    line-height: 1.08;
    margin-bottom: 3px;
  }

  .cta-line {
    font-size: clamp(10px, 0.82vw, 13px);
  }

  .booking-form-wrapper {
    margin-top: 3px;
  }

  .booking-form {
    gap: 2px;
  }

  .booking-form label {
    font-size: clamp(9px, 0.7vw, 11px);
  }

  .booking-form input,
  .booking-form select {
    height: 28px;
    border-radius: 7px;
    padding: 4px 9px;
    font-size: 11px;
  }

  .checkbox-row {
    grid-template-columns: 16px 1fr;
    gap: 7px;
    margin-top: 3px;
  }

  .checkbox-row input {
    width: 14px;
    height: 14px;
  }

  .checkbox-row label {
    font-size: 9px;
    line-height: 1.15;
  }

  .submit-btn {
    height: 32px;
    border-radius: 7px;
    font-size: 11px;
    margin-top: 3px;
  }
}

/* =========================
   LARGE DESKTOP
   2560 x 1484
========================= */
@media (min-width: 2200px) and (min-height: 1200px) {
  :root {
    --header-h: 142px;
    --footer-h: 135px;
  }

  header {
    padding: 14px 22px;
  }

  .nav {
    max-width: 2490px;
  }

  .nav-links {
    gap: 64px;
  }

  .nav-links a {
    font-size: 50px;
  }

  .brand {
    font-size: 85px;
  }

  .hero {
    height: calc(100vh - var(--header-h) - var(--footer-h));
    padding: 32px 75px 0;
    overflow: hidden;
  }

  .hero-grid {
    height: 100%;
    max-width: 2490px;
    grid-template-columns: 924px minmax(720px, 850px) 924px;
    gap: 36px 50px;
    align-items: stretch;
    justify-content: center;
  }

  .hero-visual {
    align-items: flex-end;
    justify-content: flex-start;
  }

  .dj-image {
    width: min(924px, 95%);
    transform: translateY(7px);
  }

  .hero-text {
    justify-self: center;
    align-self: center;
    text-align: left;
    width: 100%;
    max-width: 850px;
    overflow: hidden;
  }

  .hero-text h1 {
    font-size: 52px;
    margin-bottom: 10px;
  }

  .hero-text p {
    max-width: 100%;
    font-size: 23px;
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .cta-line {
    font-size: 22px;
  }

  .booking-form-wrapper {
    margin-top: 10px;
  }

  .booking-form {
    gap: 7px;
  }

  .booking-form label {
    font-size: 19px;
  }

  .booking-form input,
  .booking-form select {
    height: 52px;
    border-radius: 14px;
    border-width: 4px;
    padding: 10px 18px;
    font-size: 20px;
  }

  .checkbox-row {
    grid-template-columns: 28px 1fr;
    gap: 14px;
    margin-top: 8px;
  }

  .checkbox-row input {
    width: 26px;
    height: 26px;
  }

  .checkbox-row label {
    font-size: 18px;
    line-height: 1.25;
  }

  .submit-btn {
    height: 56px;
    border-radius: 14px;
    font-size: 20px;
    margin-top: 6px;
  }

  .hero-logo {
    padding-bottom: 70px;
  }

  .dj-logo {
    width: 250px;
  }

  footer {
    height: var(--footer-h);
    padding: 18px 32px;
    font-size: 32px;
  }

  .footer-content {
    max-width: 2490px;
    gap: 32px;
  }

  .contact-icons {
    gap: 28px;
  }

  .contact-icons img,
  .contact-icons i {
    height: 46px;
    font-size: 39px;
  }

  .footer-fine-print {
    font-size: 16px;
    line-height: 1.25;
    margin-top: 6px;
  }
}

/* =========================
   RESPONSIVE / TABLET
========================= */
@media (max-width: 899px) {
  html,
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  header {
    height: auto;
    min-height: var(--header-h);
  }

  .hero {
    height: auto;
    overflow: visible;
  }

  .hero-grid {
    height: auto;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-text {
    overflow: visible;
  }

  .dj-logo {
    width: 180px;
  }

  .hero-logo {
    padding-bottom: 0;
  }
}

/* =========================
   900px to 1100px
========================= */
@media (min-width: 900px) and (max-width: 1100px) {
  html,
  body {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  header {
    height: var(--header-h);
    min-height: var(--header-h);
  }

  .nav {
    flex-direction: row;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links a {
    font-size: 20px;
  }

  .brand {
    font-size: 34px;
  }

  .hero {
    height: calc(100vh - var(--header-h) - var(--footer-h));
    overflow: hidden;
  }

  .hero-grid {
    height: 100%;
    display: grid;
    grid-template-columns: 330px minmax(300px, 420px) 220px;
    gap: 14px 20px;
    align-items: stretch;
    justify-content: center;
  }

  .hero-visual {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .dj-image {
    width: min(330px, 95%);
    height: auto;
    object-fit: contain;
    transform: translateY(4px);
  }

  .hero-text {
    justify-self: center;
    align-self: center;
    text-align: left;
    width: 100%;
    max-width: 420px;
    max-height: 100%;
    overflow: hidden;
  }

  .hero-logo {
    height: 100%;
    padding-bottom: 28px;
    align-items: flex-end;
  }

  .dj-logo {
    width: 100px;
  }
}

/* =========================
   1024 x 668
========================= */
@media (min-width: 900px) and (max-width: 1100px) and (max-height: 700px) {
  :root {
    --header-h: 57px;
    --footer-h: 112px;
  }

  html,
  body {
    overflow: hidden;
  }

  header {
    height: var(--header-h);
    min-height: var(--header-h);
    padding: 6px 9px;
  }

  .nav {
    max-width: 996px;
    flex-direction: row;
  }

  .nav-links {
    gap: 26px;
  }

  .nav-links a {
    font-size: 20px;
  }

  .brand {
    font-size: 34px;
  }

  .hero {
    height: calc(100vh - var(--header-h) - var(--footer-h));
    padding: 10px 30px 0;
    overflow: hidden;
  }

  .hero-grid {
    height: 100%;
    max-width: 996px;
    display: grid;
    grid-template-columns: 330px minmax(300px, 360px) 330px;
    gap: 12px 20px;
    align-items: stretch;
    justify-content: center;
  }

  .hero-visual {
    height: 100%;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .dj-image {
    width: min(330px, 95%);
    transform: translateY(4px);
  }

  .hero-text {
    justify-self: center;
    align-self: center;
    text-align: left;
    width: 100%;
    max-width: 360px;
    max-height: 100%;
    overflow: hidden;
  }

  .hero-text h1 {
    font-size: 20px;
    margin-bottom: 3px;
  }

  .hero-text p {
    max-width: 100%;
    font-size: 8px;
    line-height: 1.05;
    margin-bottom: 2px;
  }

  .cta-line {
    font-size: 8px;
  }

  .booking-form-wrapper {
    margin-top: 2px;
    max-width: 100%;
  }

  .booking-form {
    gap: 2px;
  }

  .booking-form label {
    font-size: 7px;
  }

  .booking-form input,
  .booking-form select {
    height: 19px;
    border-radius: 5px;
    border-width: 1.3px;
    padding: 2px 6px;
    font-size: 8px;
  }

  .checkbox-row {
    grid-template-columns: 12px 1fr;
    gap: 5px;
    margin-top: 2px;
  }

  .checkbox-row input {
    width: 11px;
    height: 11px;
  }

  .checkbox-row label {
    font-size: 7px;
    line-height: 1.1;
  }

  .submit-btn {
    height: 22px;
    border-radius: 5px;
    font-size: 8px;
    margin-top: 2px;
  }

  .hero-logo {
    height: 100%;
    padding-bottom: 28px;
    align-items: flex-end;
  }

  .dj-logo {
    width: 100px;
  }

  footer {
    height: var(--footer-h);
    min-height: var(--footer-h);
    padding: 8px 13px;
    font-size: 13px;
  }

  .footer-content {
    max-width: 996px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .footer-brand {
    width: 100%;
    text-align: center;
    white-space: normal;
    font-size: 13px;
    order: 1;
  }

  .contact-icons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    order: 2;
  }

  .contact-icons img,
  .contact-icons i {
    height: 18px;
    font-size: 16px;
  }

  .footer-fine-print {
    order: 3;
    width: 100%;
    max-width: 86%;
    text-align: center;
    font-size: 7px;
    line-height: 1.15;
    padding: 0 10px;
    margin: 0 auto;
    text-shadow: none;
  }
}

/* =========================
   MOBILE VIEW
========================= */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body {
    background: var(--bg);
  }

  header {
    height: auto;
    padding: 10px 12px;
  }

  .nav {
    flex-direction: column;
    gap: 8px;
  }

  .nav-links {
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links a {
    font-size: 16px;
  }

  .brand {
    font-size: 32px;
    text-align: center;
  }

  .hero {
    height: auto;
    min-height: calc(100vh - var(--footer-h));
    padding: 28px 26px 0;
    overflow: hidden;
  }

  .hero-grid {
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "text"
      "image";
    gap: 20px;
    align-items: start;
  }

  .hero-logo {
    grid-area: logo;
    justify-self: end;
    align-self: start;
    height: auto;
    padding-bottom: 0;
  }

  .dj-logo {
    width: 95px;
  }

  .hero-text {
    grid-area: text;
    position: relative;
    z-index: 2;
    max-height: none;
    overflow: visible;
    margin-top: 0;
    text-align: left;
  }

  .hero-text h1 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .hero-text p {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .cta-line {
    font-size: 16px;
  }

  .booking-form-wrapper {
    max-width: 100%;
  }

  .booking-form {
    gap: 10px;
  }

  .booking-form label {
    font-size: 15px;
  }

  .booking-form input,
  .booking-form select {
    height: 44px;
    font-size: 15px;
  }

  .checkbox-row {
    grid-template-columns: 22px 1fr;
    gap: 10px;
  }

  .checkbox-row input {
    width: 20px;
    height: 20px;
  }

  .checkbox-row label {
    font-size: 13px;
    line-height: 1.3;
  }

  .submit-btn {
    height: 48px;
    font-size: 15px;
  }

  .hero-visual {
    grid-area: image;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: -12px;
  }

  .dj-image {
    display: block;
    width: min(430px, 88vw);
    height: auto;
    object-fit: contain;
    transform: translateY(4px);
  }

  footer {
    height: auto;
    min-height: var(--footer-h);
    padding: 10px 8px;
  }

  .footer-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .footer-brand {
    width: 100%;
    text-align: center;
    font-size: 18px;
    white-space: normal;
    order: 1;
  }

  .contact-icons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    order: 2;
  }

  .contact-icons img,
  .contact-icons i {
    height: 24px;
  }

  .footer-fine-print {
    order: 3;
    width: 100%;
    max-width: 90%;
    text-align: center;
    font-size: 9px;
    line-height: 1.25;
    font-weight: 500;
    color: var(--text);
    opacity: 0.85;
    padding: 0 12px;
    margin: 0 auto;
    text-shadow: none;
  }
}

/* =========================
   SMALLER PHONES
========================= */
@media (max-width: 480px) {
  .hero {
    padding: 24px 26px 0;
  }

  .brand {
    font-size: 28px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 17px;
    line-height: 1.16;
  }

  .cta-line {
    font-size: 15px;
  }

  .booking-form label {
    font-size: 14px;
  }

  .booking-form input,
  .booking-form select {
    height: 42px;
    font-size: 14px;
  }

  .checkbox-row label {
    font-size: 12px;
  }

  .submit-btn {
    height: 46px;
    font-size: 14px;
  }

  .dj-logo {
    width: 88px;
  }

  .dj-image {
    width: min(390px, 90vw);
    transform: translateY(4px);
  }

  .footer-brand {
    font-size: 16px;
  }

  .contact-icons {
    gap: 16px;
  }

  .contact-icons img,
  .contact-icons i {
    height: 23px;
  }

  .footer-fine-print {
    order: 3;
    max-width: 92%;
    font-size: 8.5px;
    line-height: 1.25;
    padding: 0 14px;
    margin: 0 auto;
  }
}

/* =========================
   EXTRA SMALL PHONES
========================= */
@media (max-width: 390px) {
  .hero {
    padding: 20px 22px 0;
  }

  .brand {
    font-size: 24px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a {
    font-size: 15px;
  }

  .hero-text h1 {
    font-size: 25px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.15;
  }

  .cta-line {
    font-size: 14px;
  }

  .booking-form label {
    font-size: 13px;
  }

  .booking-form input,
  .booking-form select {
    height: 40px;
    font-size: 13px;
  }

  .checkbox-row label {
    font-size: 11px;
  }

  .submit-btn {
    height: 44px;
    font-size: 13px;
  }

  .dj-logo {
    width: 78px;
  }

  .dj-image {
    width: min(350px, 92vw);
    transform: translateY(4px);
  }

  .footer-brand {
    font-size: 14px;
    line-height: 1.2;
  }

  .contact-icons {
    gap: 13px;
  }

  .contact-icons img,
  .contact-icons i {
    height: 21px;
  }

  .footer-fine-print {
    order: 3;
    max-width: 94%;
    font-size: 8px;
    line-height: 1.2;
    padding: 0 12px;
    margin: 0 auto;
  }
}
/* =========================
   HERO ENHANCEMENT
   Black cinematic background + ghost overlay image
   Music page
   No gold dust
   No structure changes
========================= */

/* Make the hero section support layered effects */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 70% 38%,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.035) 24%,
      rgba(255, 255, 255, 0.01) 48%,
      transparent 72%
    ),
    radial-gradient(
      circle at 28% 42%,
      rgba(199, 167, 64, 0.06) 0%,
      rgba(199, 167, 64, 0.025) 30%,
      transparent 68%
    ),
    linear-gradient(
      135deg,
      #080808 0%,
      #111111 35%,
      #1C1C1C 58%,
      #050505 100%
    );
}

/* GHOST OVERLAY IMAGE - smaller, lower, and more to the left */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../images/madMaxTransparentBackgroundPhoto.png");
  background-repeat: no-repeat;

  /* first value = left/right, second value = up/down */
  background-position: 2% 68%;

  /* smaller background image so the head is not cut off */
  background-size: clamp(360px, 38vw, 720px);

  opacity: 0.22;

  filter:
    grayscale(1)
    contrast(1.15)
    brightness(0.85)
    blur(0.8px);

  mix-blend-mode: screen;

  z-index: 0;
  pointer-events: none;
}
/* Black cinematic haze only — no gold dust particles */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 70% 40%,
      rgba(255, 255, 255, 0.06) 0%,
      rgba(255, 255, 255, 0.025) 28%,
      transparent 62%
    ),
    radial-gradient(
      circle at 30% 42%,
      rgba(199, 167, 64, 0.05) 0%,
      rgba(199, 167, 64, 0.02) 34%,
      transparent 68%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.22) 100%
    );

  opacity: 0.72;
  z-index: 1;
  pointer-events: none;
}

/* Keep all real page content above the visual effects */
.hero-grid,
.hero-visual,
.hero-text,
.hero-logo,
.music-gallery-section,
.soundcloud-gallery,
.soundcloud-card,
.dj-image,
.dj-logo {
  position: relative;
  z-index: 2;
}

/* Soft dark glow behind the main DJ image */
.hero-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  width: 78%;
  height: 74%;
  transform: translateX(-50%);

  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 255, 255, 0.07) 0%,
      rgba(199, 167, 64, 0.05) 28%,
      rgba(0, 0, 0, 0) 72%
    );

  filter: blur(42px);
  z-index: 0;
  pointer-events: none;
}

/* Main DJ image depth */
.dj-image {
  filter:
    drop-shadow(0 22px 36px rgba(0, 0, 0, 0.60))
    drop-shadow(0 0 22px rgba(199, 167, 64, 0.08));
}

/* Logo polish */
.dj-logo {
  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 16px rgba(199, 167, 64, 0.10));
}

/* Text depth */
.hero-text h1,
.hero-text p,
.hero-text span,
.hero-text li,
.music-gallery-section,
.soundcloud-gallery {
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
/* =========================
   MOBILE ONLY
   Extra oversized ghost overlay image
========================= */
@media (max-width: 768px) {
  .hero::before {
    background-position: center 50%;
    background-size: clamp(820px, 200vw, 1450px);
    opacity: 0.50;
  }
}