/* Reset defaults */
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 body {
     font-family: 'Helvetica Neue', Arial, sans-serif;
     color: #2E2926;
     background-color: black;
     overflow-x: hidden;
}
 .bevan-regular {
     font-family: "Bevan", serif;
     font-weight: 400;
     font-style: normal;
}
 .bevan-regular-italic {
     font-family: "Bevan", serif;
     font-weight: 400;
     font-style: italic;
}
 .oswald-700{
     font-family: "Oswald", sans-serif;
     font-optical-sizing: auto;
     font-weight: 700;
     font-style: normal;
}
 .pontano-sans-500 {
     font-family: "Pontano Sans", sans-serif;
     font-optical-sizing: auto;
     font-weight: 500;
     font-style: normal;
}
 .pontano-sans-700 {
     font-family: "Pontano Sans", sans-serif;
     font-optical-sizing: auto;
     font-weight: 700;
     font-style: normal;
}
/* Hero section */
.hero {
  min-height: 100vh; /* start full screen, then expand if needed */
  background: url('images/hero-bg.jpg') center center / cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  text-align: center;
  padding: 10vh 1rem 5vh; /* space top and bottom */
}
/* Dark overlay for text readability */
/* .hero::before {
     content: "";
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0);
}
 */
 .hero::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, 
    /* top stays clear */
     rgba(0,0,0,0.5) 100% 
    /* bottom darkens */
     );
     z-index: 0;
}
/* Overlay text container */
 .overlay {
     position: relative;
     z-index: 1;
     max-width: 800px;
     padding: 0 1rem;
}
 .overlay {
     position: relative;
     backdrop-filter: blur(10px) brightness(1.2);
     background: rgba(255, 255, 255,0.3);
    /* optional film haze */
     padding: 2rem 3rem;
}

.overlay {
  position: relative;
  z-index: 1;
  padding: 1rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.1) 0%,   /* top: subtle */
    rgba(255, 255, 255, 0.6) 100% /* bottom: stronger */
  );
  border-radius: 6px;
  backdrop-filter: blur(3px);
}
/* Make the highlight scale and stay behind the text */
 .highlight-wrap {
     position: relative;
     display: inline-block;
     line-height: 1;
}
 .highlight-text {
     position: relative;
     color: #fff;
     opacity: 1;
     mix-blend-mode: screen;
     z-index: 2;
    /* keep text above the brush */
}
 .highlight-img {
     position: absolute;
     inset: 0;
     width: 120%;
     height: auto;
     object-fit: contain;
     z-index: 1;
     mix-blend-mode: multiply;
     opacity: 1;
     pointer-events: none;
     filter: hue-rotate(280deg) saturate(3);
     left: 50%;
     transform: translateX(-50%) translateY(-25%);
    /* raised higher */
}
 .content {
     max-width: 800px;
     z-index: 20;
}
 .content p {
     font-size: 1.2rem;
     margin: 1rem;
    
}
 h1 {
     font-size: 8rem;
     opacity: 0.8;
     color: black;
     text-transform: uppercase;
     line-height: 8rem;
}
 h2 {
     font-size: 2rem;
     margin-bottom: 0.5rem;
     line-height: 2rem;
     text-transform: uppercase;
}
 .sponsors {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 2rem;
     margin-top: 2rem;
     padding: 1rem;
     border-radius: 4px;
     /* background-color: rgba(255,255,255,0.7); */
}
 .sponsor {
     display: flex;
}
 .sponsor p{
     font-weight: bold;
}
 .sponsors img {
     max-height: 60px;
     max-width: 150px;
     object-fit: contain;
     filter: brightness(1.5);
     opacity: 0.8;
}

.contact-section {
  text-align: center;
  margin-top: 2rem;
}

/* Base button style */
.contact-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background-color: #000; /* solid black for contrast */
  color: #fff;
  font-family: "Oswald", serif;
  font-weight: 400;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: all 0.2s ease-in-out;
  position: relative;
  overflow: hidden;
}



.contact-btn:hover::before {
  opacity: 1;
}

.contact-btn:hover {
  color: #000;
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.contact-btn span,
.contact-btn::before {
  z-index: 1;
}

.contact-btn {
  position: relative;
  isolation: isolate; /* ensures hover gradient stays behind text */
}

.quote-line {
  margin-bottom: 2rem;
  background-color: rgba(255,255,255,0.7);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #F66F21;
  font-size: 2.4rem;
  border-radius: 4px;
  /* text-shadow: 0 2px 1px rgba(255,255,255,1); */
}

.unmute-btn {
  background: transparent;
  color: #2E2926;
  font-family: "Oswald", serif;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.unmute-btn:hover {
  color: #000;
}

.unmute-btn:active {
  transform: scale(0.96);
}

.site-footer {
  text-align: center;
  /* background: rgba(0, 0, 0, 0.85); */
  color: #fff;
  font-family: "Pontano Sans", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 1.2rem 0;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer p {
  margin: 0;
  opacity: 0.9;
}


/* ===========================
   Responsive Adjustments
   =========================== */
@media (max-width: 800px) {

  .overlay {
    padding: 1.5rem 1rem;
  }

  h1 {
    font-size: 4rem;
    line-height: 4.2rem;
  }

  h2 {
    font-size: 1.4rem;
    line-height: 1.6rem;
  }

  .quote-line {
    font-size: 1.4rem;
    padding: 0.8rem;
    gap: 2px;
  }

  .content p {
    font-size: 1rem;
    margin: 0.6rem 0;
  }

  .contact-btn {
    font-size: 1rem;
    padding: 0.7rem 1.8rem;
  }

  .highlight-img {
    width: 130%;              /* give it room if text wraps */
    transform: translateX(-50%) translateY(-30%) scale(0.9);
  }

  .hero {
    padding: 6vh 1rem 3vh;
    background-position: center top;
  }
}

/* Smaller phones / narrow viewports */
@media (max-width: 480px) {

  h1 {
    font-size: 3rem;
    line-height: 3.2rem;
  }

  .quote-line {
    font-size: 1.2rem;
    padding: 0.6rem;
  }

  .content p {
    font-size: 0.95rem;
  }

  .contact-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }

  .overlay {
    padding: 1rem;
  }
}


 