        @font-face {
  font-family: 'dilemma-sans-black';
  src: url('../fonts/dilemma-sans-black.woff') format('woff');
  font-style: normal;
}

        @font-face {
  font-family: 'BrownStd';
  src: url('../fonts/BrownStd-Regular.ttf') format('truetype');
  font-style: normal;
}
   

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'dilemma-sans-black';
}

body {
  min-height: 100vh;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background-image: url("../images/desktop common.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: flex-end;
  align-items: center;

  padding: 5vh 6vw;
  overflow: hidden;
}

/* Overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* adjust opacity */
  z-index: 1;
}

/* Keep content above overlay */
.hero > * {
  position: relative;
  z-index: 2;
}

/* CONTENT BOX */
.overlay-content {
  max-width: 30vw;
  width: 100%;
      background: rgb(255 255 255 / 0%);
  padding: 3rem 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

/* LOGO */
.logo {
  width: 6rem;
  max-width: 100%;
  margin-bottom: 0.7rem;
}

/* TEXT */
.overlay-content h1 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: #ece8d6;
}

.overlay-content p {
      font-family: 'BrownStd';
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-weight: 100;
  color: #ece8d6;
}

/* DROPDOWN */
.dropdown {
  width: 75%;
  padding: 0.9rem 1rem 0.9rem 2.5rem; /* extra left space for arrow */
  font-size: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 0.4rem;
  border: 1px solid #000;
  background-color: #ece8d6;
  font-weight: 900;
  font-family: 'BrownStd';

  /* remove default arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* custom arrow on LEFT */
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 1rem;
}

/* BUTTON */
.cta-btn {
  width: 75%;
  padding: 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  background: #ece8d6;
  color: #000;
  border: none;
  border-radius: 0.4rem;
  cursor: pointer;
  border: 1px solid #000;
}

.cta-btn:hover {
  opacity: 0.9;
}

.site-footer {
  width: 100%;
  background-color: #000;
  padding: 0.7rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
}


/* ðŸ“± MOBILE VIEW */
@media (max-width: 768px) {
  .hero {
    background-image: url("../images/mobile common size (3).png");
    justify-content: center;
    padding: 4vh 5vw;
  }

  .overlay-content {
    max-width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  .logo {
    margin: 0 auto 1.2rem;
  }

  .overlay-content h1 {
    font-size: 1.9rem;
  }
}