/* Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, sans-serif;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 3rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f3c5c;
}

.logo span {
  color: #1fb6a6;
}

nav a {
  margin-right: 1.5rem;
  text-decoration: none;
  color: #0f172a;
  font-weight: 500;
}

/* BUTTONS */
.btn {
  border: none;
  border-radius: 999px;
  padding: 0.6rem 1.2rem;
  cursor: pointer;
}

.primary {
  background: #1fb6a6;
  color: white;
}

.large {
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  margin-top: 1rem;
}

/* HERO SECTION */
.hero {
  height: 85vh;
  background-image: url("assets/hero-bg.jpeg"); /* or hero-bg.jpeg if in same folder */
  background-size: cover;
  background-position: center center; /* ensures the focus stays in center */
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.75); /* light overlay to improve text readability */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center; /* center on mobile */
  padding: 2rem;
  text-align: center;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #0f172a;
}

.hero-content span {
  color: #1fb6a6;
}

.hero-content p {
  color: #475569;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.hero-content small {
  display: block;
  margin-top: 0.75rem;
  color: #64748b;
}

/* RESPONSIVE FOR MOBILE */
@media (max-width: 768px) {
  .hero {
    height: 60vh; /* shorter hero on small screens */
    background-position: top center; /* keep main part visible */
  }

  .hero-overlay {
    padding: 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem; /* smaller text */
  }

  .hero-content p {
    font-size: 1rem;
  }
}
