/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #355E3B; /* hunter green */
  color: #f0fdf4; /* pale mint/white text */
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(53, 94, 59, 0.95); /* frosted hunter green */
  backdrop-filter: blur(6px);
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #a8e6a1; /* pale mint */
  letter-spacing: 1px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.hamburger div {
  width: 25px;
  height: 3px;
  background: #f0fdf4;
  border-radius: 2px;
}
.hamburger:hover {
  transform: scale(1.1);
}

/* Nav Menu */
nav ul {
  list-style: none;
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 220px;
  background: #2a4630;
  display: flex;
