@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 on desktop */
}

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: #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
========================= */
.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; /* image | form/text | logo */
  gap: 20px 28px;
  align-items: center;
}

/* LEFT 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 (fit without scrolling) */
.hero-text {
  max-height: 100%;
  overflow: hidden;
}

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

/* Paragraphs */
.hero-text p {
  margin-bottom: 10px;
  max-width: 720px;
  color: #EAEAEA;
  font-size: clamp(12px, 1.03vw, 17px);
  line-height: 1.25;
}

.cta-line {
  font-size: clamp(12px, 0.95vw, 16px);
  font-weight: 800;
  color: var(--text);
}

/* FORM */
.booking-form-wrapper {
  margin-top: 10px;
  max-width: 720px;
}

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

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

.booking-form input {
  height: 42px;
  border-radius: 10px;
  border: 2px solid rgba(199, 167, 64, 0.65);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 10px 12px;
  outline: none;
  font-size: 15px;
}

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

.submit-btn {
  margin-top: 6px;
  height: 46px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 15px;

  background: var(--gold);
  color: #1C1C1C;
}

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

/* RIGHT LOGO (smaller + lower) */
.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 (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 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: #F5F5F5;
}

/* =========================
   RESPONSIVE (ALLOW SCROLL ON SMALL SCREENS)
========================= */
@media (max-width: 1100px) {
  html, body {
    overflow: auto; /* allow scroll on phones/tablets */
  }

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

@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;
	  
  }
	
	.booking-form input {
		height: 44px;}
		
@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;
  }

	.booking-form input {
		height: 44px;
	}
	
	


