@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Inter:wght@500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f4f6f8;
}

/* Headings premium */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #15803d; /* green-700 */
}

.nav-link {
  color: white;
  padding: 8px 12px;
  font-weight: 500;
}

.nav-link:hover {
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

/* ACTIVE MENU */
.nav-link.active {
  background: white;
  color: #15803d;
  border-radius: 4px;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .desktop-menu {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
}
