/* ========================
   BASE
======================== */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #1e3a3a;
  color: #F0ECE7;
}

/* ========================
   NAVBAR / HEADER
======================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  background-color: #1e3a3a;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: #F0ECE7;
  text-decoration: none;
  font-weight: 600;
}

/* ========================
   LOGO
======================== */
.logo-img {
  height: auto;
  max-height: 25px;
}

/* ========================
   HERO SECTION
======================== */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #F0ECE7;
  z-index: 2;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
}

.hero-overlay h1 {
  margin-bottom: 10px;
}

.hero-overlay p {
  margin: 0;
}

/* ========================
   CTA BUTTON
======================== */
.hero-btn {
  padding: 15px 30px;
  background: #cfd152;
  color: #471915;
  font-size: 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
}

/* ========================
   GLOBAL IMAGE FIX (CLS)
======================== */
img {
  max-width: 100%;
  height: auto;
}

/* ========================
   MOBILE (CRITICAL)
======================== */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    height: 50vh;
    min-height: 300px;
  }

  .hero-overlay {
    padding: 15px;
  }

  .hero-overlay h1 {
    font-size: 1.6rem;
  }

  .hero-overlay p {
    font-size: 0.95rem;
  }

  .hero-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}