@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; /* NO SCROLL */
}

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;
}

.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: #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 (NO SCROLL AREA)
========================= */
.hero {
  height: calc(100vh - var(--header-h) - var(--footer-h));
  background: var(--bg);
  padding: 18px 42px;
  overflow: hidden;
}

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

  display: grid;
  grid-template-columns: 520px 1fr 360px;
  gap: 20px 28px;
  align-items: center;
}

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

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

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

.hero-text h1 {
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  font-size: clamp(20px, 2vw, 34px);
}

.hero-text h1 span {
  font-weight: 600;
  color: #DDDDDD;
  font-size: clamp(12px, 1vw, 18px);
}

.hero-text p {
  margin-bottom: 10px;
  max-width: 700px;
  color: #EAEAEA;
  font-size: clamp(12px, 1.05vw, 18px);
  line-height: 1.28;
}

.hero-text h2 {
  margin-top: 10px;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: clamp(16px, 1.4vw, 26px);
}

.hero-text ul {
  list-style: none;
  display: grid;
  gap: 6px;
}

.hero-text li {
  position: relative;
  padding-left: 16px;
  color: #EAEAEA;
  font-size: clamp(12px, 1vw, 18px);
  line-height: 1.2;
}

.hero-text li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 800;
}

/* =========================
   RIGHT: LOGO (SMALLER + LOWER)
========================= */
.hero-logo {
  display: flex;
  justify-content: center;
  align-items: flex-end;     /* push logo toward bottom */
  height: 100%;
  padding-bottom: 40px;     /* fine-tune vertical position */
}

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

/* =========================
   FOOTER (FIXED)
========================= */
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;
}

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

.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);
}

/* =========================
   RESPONSIVE (ALLOW SCROLL)
========================= */
@media (max-width: 1100px) {
  html, body {
    overflow: auto;
  }

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

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

  .hero-text {
    overflow: visible;
  }

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

@media (max-width: 768px) {
	 .nav {
    flex-direction: column;
    gap: 8px;
  }

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

  .brand {
    font-size: 34px;
  }

   .hero {
    height: calc(100vh - var(--header-h));
    padding: 16px 14px calc(var(--footer-h) + 50px);
    overflow: hidden;
  }

  /* GRID (exact structure you requested) */
  .hero-grid {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows:
      auto   /* row 1 */
      auto   /* row 2 */
      auto   /* row 3: logo */
      1fr    /* row 4: image */
      auto;  /* row 5: text */

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

  /* LOGO — top right */
  .hero-logo {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    align-self: start;
  }

  .dj-logo {
    width: 90px;
  }

  /* IMAGE — bottom right, lifted */
  .hero-visual {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
    align-self: end;
  }

  .dj-image {
    width: min(340px, 72vw);
    transform: translateY(20%);
  }

  /* TEXT — left aligned, closer to footer but NOT under it */
  .hero-text {
    grid-column: 1 / -1;
    grid-row: 5;

    text-align: left;
    position: relative;
    z-index: 5;

    margin-top: -425px; /* THIS is the key line */
  }

  .hero-text p {
    font-size: 14px;
    line-height: 1.15;
    margin-bottom: 6px;
  }
	
@media (max-width: 480px) {
	 .nav {
    flex-direction: column;
    gap: 8px;
  }

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

  .brand {
    font-size: 34px;
  }

   .hero {
    height: calc(100vh - var(--header-h));
    padding: 16px 14px calc(var(--footer-h) + 50px);
    overflow: hidden;
  }

  /* GRID (exact structure you requested) */
  .hero-grid {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows:
      auto   /* row 1 */
      auto   /* row 2 */
      auto   /* row 3: logo */
      1fr    /* row 4: image */
      auto;  /* row 5: text */

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

  /* LOGO — top right */
  .hero-logo {
    grid-column: 2;
    grid-row: 3;
    justify-self: end;
    align-self: start;
  }

  .dj-logo {
    width: 90px;
  }

  /* IMAGE — bottom right, lifted */
  .hero-visual {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
    align-self: end;
  }

  .dj-image {
    width: min(340px, 72vw);
    transform: translateY(20%);
  }

  /* TEXT — left aligned, closer to footer but NOT under it */
  .hero-text {
    grid-column: 1 / -1;
    grid-row: 5;

    text-align: left;
    position: relative;
    z-index: 5;

    margin-top: -475px; /* THIS is the key line */
  }

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

	}
	
}

