/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #000;
  color: #fff;
}

/* CONTAINER */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

/* NAVBAR */
.navbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 2rem 0;
}

/* LOGO */
.logo img {
  display: block;
  height: auto;
  max-height: 41px;
}

/* DESKTOP NAV LINKS */
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  padding-bottom: 0.25rem;
  transition: border-color 0.2s;
}
.nav-links a.active,
.nav-links a:hover {
  border-bottom: 2px solid #fff;
}

/* ICONS */
.nav-icons {
  display: flex;
  gap: 1.5rem;
}
.icon {
  display: inline-flex;
  color: #fff;
}

/* HAMBURGER - hidden desktop */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* MOBILE MENU - hidden by default */
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu .nav-links {
  flex-direction: column;
  gap: 1.25rem;
  background: #000;
  padding: 1rem 2rem;
}
.mobile-menu .nav-icons {
  flex-direction: row;
  gap: 1rem;
  padding: 0 2rem 1rem;
}

/* HERO */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 0 4rem;
  background: radial-gradient(circle at 25% 50%, #14141F 0%, #000 70%);
  overflow: hidden;
}
.hero-bg-text {
  position: absolute;
  top: 20%;
  left: 5%;
  font-size: 15rem;
  font-weight: bold;
  color: rgba(255,255,255,0.04);
  white-space: nowrap;
  pointer-events: none;
}
.hero-content {
  max-width: 550px;
  z-index: 1;
}
.hero-content h1,
.hero-content h2 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 600;
}
.hero-content h2 {
  margin-top: 1rem;
}
.highlight {
  color: #D5891E;
}
.btn {
  display: inline-block;
  margin-top: 3rem;
  padding: 1rem 2rem;
  background: #fff;              /* white background */
  color: #000;                   /* black text */
  border: 2px solid #fff;        /* white border to match */
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn:hover {
  background: #D5891E;           /* golden yellow on hover */
  color: #fff;                   /* white text */
  border-color: #D5891E;         /* matching border */
}

/*
.btn {
  display: inline-block;
  margin-top: 3rem;
  padding: 1rem 2rem;
  border: 2px solid #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  transition: background 0.2s, color 0.2s;
}
.btn:hover {
  background: #fff;
  color: #000;
}

*/

.hero-image {
  flex-shrink: 0;
  max-width: 45%;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* RESPONSIVE BELOW 768px */
@media (max-width: 768px) {
  /* tighten container padding */
  .container {
    padding: 0 1.5rem;
  }

  /* show hamburger, hide desktop nav+icons */
  .menu-toggle {
    display: inline-flex;
  }
  .nav-links,
  .nav-icons {
    display: none;
  }

/* stack hero vertically & add extra top‐space */
  .hero {
    flex-direction: column;
    padding: 6rem 1.5rem 3rem; /* ↑ increased top padding from 4rem → 6rem */
    text-align: center;
  }

  /* optional: extra gap between header and text */
  .hero-content {
    margin-top: 2rem;
  }


  /* stack hero vertically */
  .hero {
    flex-direction: column;
    padding: 4rem 1.5rem;
    text-align: center;
  }
  .hero-bg-text {
    font-size: 8rem;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-content h1,
  .hero-content h2 {
    font-size: 2rem;
  }
  .hero-content h2 {
    margin-top: 0.5rem;
  }
  .btn {
    margin-top: 2rem;
  }
  .hero-image {
    max-width: 100%;
    margin-top: 2rem;
  }

  /* mobile menu full‑width */
  .mobile-menu.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
}
