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

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)); /* adjusts based on footer height */
  width: 100%;
  display: block;
  padding-bottom: 20px /* ensures nothing hides behind the 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 (FLUSH TOP)*/
header {
  top: 0;
  left: 0;
  right: 0;
  background: #C7A740;
  padding: 6px 6px 6px 6px;
  z-index: 999;         /* above everything except the overlay */

  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0;
  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);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
	 text-decoration: none;
}

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

.nav-links a:last-child {
  margin-right: 0;
}

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


.booking-form-wrapper {
  background: #1C1C1C;
  padding: 40px 20px;
  color: #F5F5F5;
  font-family: 'Montserrat', sans-serif;
}

.booking-form {
  max-width: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
  grid-row-gap: 26px;
  grid-column-gap: 25px;
  align-items: center;
}

.booking-form label {
  font-size: 20px;
  font-weight: 500;
}

.booking-form input {
  width: 100%;
  padding: 5px px;
  font-size: 18px;
  border: none;
  background: #ffffff;
  color: #000;
}

/* CLICKABLE TEXT STYLE */
.submit-btn {
  grid-column: 1 / -1; /* span both columns */
  text-align: center;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 400;
  color: #C7A740;
  text-decoration: none;
  cursor: pointer;

  /* remove button look */
  border: none;
  background: none;
  padding: 0;
}


.submit-link:hover {
  opacity: 0.85;
}



/* =========================
   FOOTER (FIXED + FLUSH BOTTOM)
========================= */
footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #C7A740;
  padding: 18px 18px;
  z-index: 50;
	font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 18px;
  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);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
}

.footer-brand {
  font-weight: 700;
  color: #F5F5F5;
}

.contact-icons {
  display: 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;        /* keeps logos proportional */
  width: auto;
  object-fit: contain;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* FONT ICONS (phone/email/id) */
.contact-icons i {
  font-size: 22px;
  color: #F5F5F5;
}

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


/* Make room so content doesn't hide under fixed footer */
:root {
  --footer-h: 76px; /* adjust if you change footer padding/font */
}

/* =========================
   HERO 
========================= */
.hero {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;

  padding: 40px 120px 0px 120px;
  min-height: calc(100vh - 64px - 76px);
  overflow: hidden;
}

/* Official text */
.official-text {
  text-align: center;
  font-size: 45px;
  font-weight: 800;
  color: #C7A740;
	font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 20px;
}

/* LEFT TEXT (TOP-LEFT AREA) */
.hero-left {
	position: relative;

  right: -50px;   /* move left/right */
  top: -50px;    /* move up/down */

  width: 250px;
  height: auto;
}

.hero-left h1 {
  font-size: 36px;
  color: #C7A740;
  line-height: 1.05;
  margin-bottom: 18px;

  white-space: nowrap; /* keeps it on one line */
}




/* RIGHT AREA acts like a stage for overlays */
.hero-right {
  position: absolute;
  inset: 0;
  pointer-events: none; /* prevents blocking clicks on text */
}

.hero-bottom-text{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px; /* sits above footer */
  z-index: 999; /* in front of DJ image */
  width: 100%;
  padding: 0 24px 6px;
  text-align: center;
  pointer-events: none;
}

.hero-bottom-text h2{
  margin: 0 0 4px;
  font-size: 32px;
  font-weight: 700;
  color: #F5F5F5;
	line-height: 1.1;
}

.hero-bottom-text p{
  margin: 0;
	margin-bottom: 0px;
  font-size: clamp(22px, 2.1vw, 32px);
  font-weight: 600;
  line-height: 1.05;
  color: #F5F5F5;

  /* makes it readable over the image */
  text-shadow: 0 6px 28px rgba(0,0,0,0.85);
}




/* =========================
   DJ IMAGE (BOTTOM CENTER + BEHIND FOOTER)
========================= */
.dj-image {
    position: absolute;
  left: 50%;
  bottom: calc(var(--footer-h) * -.8);
  transform: translateX(-50%);
  width: 2800px;
  height: auto;
  max-height: 95vh;     /* 🔑 limits vertical size */
  object-fit: contain;
  max-width: none;
  z-index: 5;
  pointer-events: none;
}


/* =========================
   LOGO (RIGHT SIDE)
========================= */
.dj-logo {
  position: absolute;

  right: 125px;   /* move left/right */
  top: 180px;    /* move up/down */

  width: 315px;
  height: auto;

  z-index: 12;
  pointer-events: none;
}

.dj-LogoOnSubPages{
  position: absolute;

  right: 125px;   /* move left/right */
  bottom: 80px;    /* move up/down */

  width: 215px;
  height: auto;

  z-index: 12;
  pointer-events: none;
}

.dj-fullBodyImage {
  position: relative;
  width: 450px;   /* increase size */
  max-width: 55vw;  /* responsive scaling */
  height: auto;
  z-index: 12;
  pointer-events: none;
}


.about-section {
  
}

.three-col-layout {
  display: grid;
  grid-template-columns: 450px 1fr 300px; /* left image | text | right logo */
  align-items: end; /* bottom-align images and center text */
  gap: 120px;
  width: 100%;
	height: 10vh;
}

.three-col-layoutEvents {
  display: grid;
  grid-template-columns: 300px 1fr 300px; /* left image | text | right logo */
  align-items: end; /* bottom-align images and center text */
  gap: 120px;
  width: 100%;
	height: 10vh;
}


/* LEFT LARGE IMAGE */
.left-image img {
  width: 575px;
  object-fit: contain;
  display: block;
  margin-left: -40px;   /* move image LEFT */
}

.right-imageEvents img{
	  width: 575px;
  object-fit: contain;
  display: block;
  margin-left: -250px;   /* move image LEFT */
}

/* CENTER TEXT */
.center-text {
  max-width: 550px;
  align-self: center;
	height: auto;
	margin-top: 20px;
	font-size: 14px;
}

.center-text {
  max-width: 550px;
  align-self: center;
	height: auto;
	margin-top: 20px;
	font-size: 14px;
}

.center-text h1 {
  font-size: 2.6rem;
  font-weight: 200;
  color: #f5f5f5;
  margin-bottom: 30px;
}



.center-text p {
  font-size: frem;
  margin-bottom: 10px;
  line-height: 1.6;
	
}

.center-text h2 {
  margin: 30px 0 10px;
  font-size: 1.6rem;
  color: #f5f5f5;
}

.center-text ul {
  list-style: none;
  padding: 0;
}

.center-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 1px;
}

.center-text ul li::before {
  
  color: #d9b250;
  position: absolute;
  left: 0;
  font-size: 1.3rem;
}

/* RIGHT LOGO IMAGE */
.right-logo img {
  width: 140px;
  object-fit: contain;
  align-self: end;
  transform: translateY( -115px); /* adjust vertical position */
	margin-right: 220px; 
	justify-self: end; 

}

.left-logoEvents img{
	width: 140px;
  object-fit: contain;
  align-self: end;
  transform: translateY( -115px); /* adjust vertical position */
	margin-left: 100px; 
	justify-self: end; 
}



/* RESPONSIVE */
@media (max-width: 1000px) {
  .three-col-layout {
    flex-direction: column;
    text-align: center;
	  
  }

  .left-image img,
  .right-logo img {
    width: 60%;
    max-width: 350px;
  }

  .center-text ul li {
    padding-left: 0;
  }

  .center-text ul li::before {
    display: none;
  }
}




/* =========================
   SOUNDCLOUD (TOP RIGHT + THICK GOLD BORDER)
========================= */
.hero-player {
  position: relative;
  right:  -75px;   /* move left/right */
  top: 25px;    /* move up/down */

  width: 525px;
  max-width: 560px;

  border-radius: 18px;
  overflow: hidden;

  z-index: 15;
  pointer-events: auto; /* allow clicks */
	

}


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

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


/* RESPONSIVE (LARGE DESKTOP / ULTRAWIDE (1440px+)) */
@media (min-width: 1440px) {
  .hero {
    padding-left: 160px;
    padding-right: 160px;
  }

  .dj-image {
    width: 3000px;
  }

  .hero-bottom-text p {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* RESPONSIVE STANDARD LAPTOP (1200–1439px) */
@media (max-width: 1439px) and (min-width: 1200px) {
  .dj-logo {
    width: 280px;
  }

  .hero-player {
    width: 500px;
  }
}

/* RESPONSIVE TABLET (iPad / Android tablets) */
@media (max-width: 1024px) {
  .nav-links a {
    font-size: 22px;
    margin-right: 24px;
  }

  .brand {
    font-size: 36px;
  }

  .hero-left h1 {
    font-size: 32px;
  }

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

  .hero-bottom-text p {
    font-size: 22px;
  }

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

  .contact-icons i {
    font-size: 20px;
  }
}

/* RESPONSIVE MOBILE (iPhone & Android – Portrait) */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links a {
    font-size: 16px;
    margin-right: 14px;
	  text-decoration: none;
  }
.brand,
.brand:link,
.brand:visited,
.brand:hover,
.brand:active {
  text-decoration: none !important;
  color: #F5F5F5;
}
	
  .brand {
  text-decoration: none;
  color: #F5F5F5;
  cursor: pointer;
}


  .hero-left h1 {
    font-size: 24px;
  }

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

  .hero-bottom-text p {
    font-size: 16px;
  }

  .contact-icons {
    gap: 12px;
  }

  .contact-icons img {
    height: 22px;
  }

  .contact-icons i {
    font-size: 18px;
  }
}

/* =========================
   IPHONE / MODERN MOBILE (<=430px)
========================= */
@media (max-width: 430px) {

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

  body {
    margin: 0;
  }

  .hero {
    
    min-height: 60vh;
  }

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

  .brand {
    font-size: 26px;
    text-align: center;
  }
	
  .nav-links a {
    font-size: 15px;
    margin-right: 10px;
  }
	
.official-text{
		font-size: 26px;
	}
  .hero-left h1 {
    font-size: 22px;
    text-align: center;
    white-space: normal;
  }

  .hero-player {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 14px;
  }

  #scPlayer {
   
    height: 60px;
  }

  .hero-bottom-text {
    bottom: -35px;
    padding: 0 -95px;
  }

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

  .hero-bottom-text p {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.1;
  }

  .dj-image {
    width: 30vw;
    max-height: 90vh;
    bottom: 10px;
  }

  .dj-logo {
    width: 120px;
    right: 50%;
    top: 220px;
    transform: translateX(175%);
  }

  footer {
    font-size: 14px;
  }

	/* =========================================
   GLOBAL RESPONSIVE FIXES (ADD AT BOTTOM)
========================================= */

/* Stop ANY element from exceeding the viewport */
img, iframe, audio, video {
  max-width: 100% !important;
  height: auto;
}

* {
  max-width: 100%;
}

/* Fix SoundCloud Player Overflow */
.hero-player {
  position: relative;
  right: 0 !important;
  top: 25px;
  width: 100% !important;
  max-width: 360px;
  margin: 0 auto;
}

#scPlayer {
  width: 100% !important;
  height: 180px !important;
}

/* Fix oversized DJ image */
.dj-image {
  width: 100% !important;
  max-width: 900px;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

/* Remove left/right offsets that were breaking mobile */
.hero-left,
.hero-player {
  right: 0 !important;
}
}