/* ======================
   GENERAL RESET & BASE
====================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #0f0f0f;
  color: #f0f0f0;
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: #00f0ff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

/* ======================
   NAVBAR
====================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(15,15,15,0.95);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links li a {
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a.active {
  color: #00f0ff;
}

/* MOBILE NAV */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #00f0ff;
  margin-bottom: 5px;
  border-radius: 3px;
}

/* ======================
   HERO SECTION
====================== */
.page-hero, .hero {
  text-align: center;
  padding: 6rem 2rem 4rem 2rem;
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
}

.page-hero h1, .hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease forwards;
}

.page-hero
