/* General Styles */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f4f4f9;
  color: #333;
}

/* Header */
header {
  background: #222;
  color: #fff;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 1px;
}

/* Navigation */
.navbar {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 2px;
}

.nav-links li a:hover {
  color: #ffd369;
  border-bottom: 2px solid #ffd369;
}

/* Hamburger */
.menu-toggle {
  display: none;  /* hide by default (desktop) */
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  margin-left: 15px;
}

/* Main Content */
main {
  padding: 30px 20px;
  max-width: 900px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #ccc;
  margin-top: 30px;
  font-size: 0.9rem;
}

footer a {
  color: #ffd369;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  /* Hide nav links on mobile */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #222;
    padding: 15px;
    border-radius: 8px;
    width: 200px;
  }

  /* Show when active */
  .nav-links.active {
    display: flex;
  }

  /* Show hamburger on mobile */
  .menu-toggle {
    display: block;
  }
}
