@charset "UTF-8";
/* =========================
   RESET + BASE
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --footer-h: 76px; /* fixed footer space */
}

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

body {
  min-height: 100vh;
  font-family: 'Montserrat', sans-serif;
  background: #1C1C1C;
  color: #F5F5F5;
  overflow-x: hidden;
}

main {
  min-height: calc(100vh - var(--footer-h));
  width: 100%;
  padding-bottom: 20px; /* keeps content from touching footer */
}

/* =========================
   ENTER SITE OVERLAY
========================= */
#enterOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.enter-box {
  background: #1C1C1C;
  padding: 40px 50px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.enter-box h2 {
  color: #C7A740;
  font-size: 30px;
  margin-bottom: 10px;
}

.enter-box p {
  color: #CCCCCC;
  margin-bottom: 24px;
}

#startMusic {
  padding: 14px 34px;
  font-size: 18px;
  background: #C7A740;
  color: #1C1C1C;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

#startMusic:hover {
  opacity: 0.95;
}

/* =========================
   HEADER (FLEX)
========================= */
header {
  background: #C7A740;
  padding: 8px 12px;
  z-index: 999;
  color: #F5F5F5;

  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;

  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: 1200px;
  margin: 0 auto;

  display: flex;               /* FLEX */
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

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

.nav-links a {
  color: #F5F5F5;
  text-decoration: none;
  font-weight: 600;
  font-size: 28px;
}

.brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: 0;
  line-height: 1.1;

  color: #F5F5F5;

  /* layered black fills (20% x3) */
  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);
}

/* Remove underline from brand text */
.brand,
.brand:link,
.brand:visited,
.brand:hover,
.brand:active {
  text-decoration: none !important;
  color: #F5F5F5;
  cursor: pointer;
}

/* =========================
   HERO (GRID)
========================= */
.hero {
  min-height: calc(100vh - var(--footer-h) - 64px);
  padding: 24px 48px 0;
  background: #1C1C1C;
}

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

  display: grid;                               /* GRID */
  grid-template-columns: 520px 1fr 360px;       /* player | image | logo */
  grid-template-rows: 1fr auto;                 /* stage | bottom text */

  grid-template-areas:
    "player visual logo"
    "copy   copy   copy";

  gap: 24px 36px;
  align-items: center;
}

/* LEFT: player */
.hero-player {
  grid-area: player;
  align-self: start;
}

.official-text {
  text-align: left;
  font-size: 45px;
  font-weight: 800;
  color: #C7A740;
  margin-bottom: 18px;
}

.player-frame {
  border: 3px solid #C7A740;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
}

#scPlayer {
  width: 100%;
  height: 240px;
  border: none;
}

.hero-visual {
  /* make the image layer span the whole hero */
  grid-column: 1 / -1;
  grid-row: 1 / -1;

  position: relative;
  z-index: 1; /* behind text/player/logo */
  pointer-events: none;

  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.dj-image {
  width: min(1000px, 120vw); /* big like screenshot, responsive */
  height: auto;
  object-fit: contain;

  /* push down so it sits behind footer slightly */
  transform: translateY(9%);
}




/* RIGHT: logo */
.hero-logo {
  grid-area: logo;

  display: flex;                 /* FLEX */
  justify-content: center;
  align-items: center;
  align-self: start;
}

.dj-logo {
  width: 315px;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

/* BOTTOM TEXT */
.hero-bottom-text {
  grid-area: copy;
  text-align: center;
  padding-bottom: 10px;

  position: relative;
  z-index: 5;   /* text goes FRONT */
}


.hero-bottom-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-bottom-text p {
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 0 6px 28px rgba(0,0,0,0.85);
}

/* =========================
   FOOTER (FLEX)
========================= */
footer {
  
  left: 0;
  right: 0;
  bottom: 0;

  background: #C7A740;
  padding: 16px 18px;
  z-index: 50;

  font-weight: 800;
  font-size: 18px;
  line-height: 1.1;
  color: #F5F5F5;

  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;
  /*margin: 0 auto;*/
width: 100%;
  display: flex;                 /* FLEX */
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-brand {
  font-weight: 76px;
  color: #F5F5F5;
	white-space: nowrap;
}

.contact-icons {
  display: flex;                 /* FLEX */
  align-items: center;
  gap: 16px;
}

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

/* PNG ICONS */
.contact-icons img {
  height: 26px;
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* FONT ICONS */
.contact-icons i {
  font-size: 22px;
  color: #F5F5F5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

footer a,
footer a:link,
footer a:visited,
footer a:hover,
footer a:active {
  text-decoration: none;
  color: #F5F5F5;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "logo"
      "visual"
      "player"
      "copy";
  }

  .official-text {
    text-align: center;
  }

  .hero-player {
    justify-self: center;
    width: min(560px, 100%);
  }

  .hero-logo {
    justify-content: center;
  }
	.dj-image {
    width: min(900px, 140vw);   /* a bit wider for tablet */
    transform: translateY(12%); /* keeps it sitting low */
  }
}

@media (max-width: 768px) {

  /* =========================
     NAV
  ========================= */
  .nav {
    flex-direction: column;
    gap: 8px;
  }

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

  .brand {
    font-size: 34px;
  }

  /* =========================
     HERO BASE
  ========================= */
  .hero {
    padding: 16px 14px 0;
    overflow-x: hidden;
  }

  /* =========================
     HERO GRID STRUCTURE
     1 = official
     2 = player
     3 = logo (LEFT)
     4 = DJ image
     5 = bottom text
  ========================= */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows:
      auto   /* row 1: official */
      auto   /* row 2: player */
      auto   /* row 3: logo */
      auto   /* row 4: DJ image */
      auto;  /* row 5: bottom text */

    gap: 10px;
    column-gap: 10px;
    min-height: auto;
    position: relative;
    align-items: start;
  }

  /* =========================
     ROW 1: OFFICIAL TEXT
  ========================= */
  .official-text {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
    font-size: 26px;
    margin: 0;
  }

  /* =========================
     ROW 2: PLAYER (CENTERED)
  ========================= */
  .hero-player {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: min(95vw, 420px);
  }

  #scPlayer {
    width: 100%;
    height: 200px;
  }

  /* =========================
     ROW 3: LOGO (LEFT, ABOVE IMAGE)
  ========================= */
  .hero-logo {
    grid-column: 1;      /* ? LEFT column */
    grid-row: 4;

    justify-self: start;
    display: flex;
    justify-content: flex-start;
    align-items: center;
	  margin-bottom: -6px;
  }

  .dj-logo {
    width: 150px;
    height: auto;
  }

  /* =========================
     ROW 4: DJ IMAGE (FULL WIDTH)
  ========================= */
  .hero-visual {
    grid-column: 1 / -1;
    grid-row: 4;

    display: flex;
    justify-content: center;
    align-items: flex-end;
	  margin-top: -10;
  }

  .dj-image {
    width: min(650px, 120vw);
    height: auto;
    object-fit: contain;
    transform: translateY(-15%);
    pointer-events: none;
  }

  /* =========================
     ROW 5: BOTTOM TEXT
  ========================= */
  .hero-bottom-text {
    grid-column: 1 / -1;
    grid-row: 5;

    position: relative;
    padding: 0 0px 0;
    margin-top: -165px;
    text-align: center;
  }

  .hero-bottom-text h2 {
    font-size: 20px;
  }

  .hero-bottom-text p {
    font-size: 15px;
    line-height: 1.25;
  }

}



@media (max-width: 480px) {

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

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

  .brand {
    font-size: 34px;
  }

  /* HERO BASE */
  .hero {
    padding: 14px 12px 0;
    overflow-x: hidden;
  }

  /* GRID (same structure, tighter) */
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows:
      auto   /* row 1: official */
      auto   /* row 2: player */
      auto   /* row 3: logo */
      auto   /* row 4: DJ image */
      auto;  /* row 5: bottom text */

    gap: 8px;
    column-gap: 8px;
    min-height: auto;
    position: relative;
    align-items: start;
  }

  /* ROW 1: OFFICIAL TEXT */
  .official-text {
    grid-column: 1 / -1;
    grid-row: 1;
    text-align: center;
    font-size: 22px;
    margin: 0;
  }

  /* ROW 2: PLAYER (CENTERED) */
  .hero-player {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    width: min(94vw, 360px);  /* smaller than 420px */
  }

  #scPlayer {
    width: 100%;
    height: 175px;            /* smaller height for small phones */
  }

  /* LOGO (LEFT, ABOVE IMAGE) */
  .hero-logo {
    grid-column: 1 ;
    grid-row: 4;              /* matches your exact layout */
    justify-self: start;

    display: flex;
    justify-content: flex-start;
    align-items: center;

    margin-bottom: -4px;      /* slightly less aggressive */
  }

  .dj-logo {
    width: 190px;             /* smaller logo for 480px */
    height: auto;
  }

  /* DJ IMAGE */
  .hero-visual {
    grid-column: 1 / -1;
    grid-row: 4;

    display: flex;
    justify-content: center;
    align-items: flex-end;

    margin-top: -10px;        /* ? fixed unit */
  }

  .dj-image {
    width: min(560px, 128vw); /* smaller than 650px */
    height: auto;
    object-fit: contain;

    transform: translateY(10%); /* less lift than -15% */
    pointer-events: none;
  }

  /* BOTTOM TEXT */
  .hero-bottom-text {
    grid-column: 1 / -1;
    grid-row: 5;

    position: relative;
    padding: 0;
    margin-top: -55px;       /* less negative than -165px */
    text-align: center;
  }

  .hero-bottom-text h2 {
    font-size: 18px;
  }

  .hero-bottom-text p {
    font-size: 14px;
    line-height: 1.2;
  }

}
