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

body {
  font-family: Arial, sans-serif;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 15px 30px;
  color: white;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

/* Navigation Links (Desktop Layout) */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #04AA6D; /* Accent color */
}

/* Hamburger menu styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
  gap: 5px;
}

.hamburger .bar {
  height: 3px;
  width: 25px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Responsive Layout (Mobile Screen Breaking Point) */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none; /* Hide desktop links */
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #333;
    padding: 20px;
    text-align: center;
    gap: 15px;
  }

  /* Utility class to show navigation on click */
  .nav-links.active {
    display: flex;
  }
}
