/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ================= HEADER ================= */
.header {
  width: 100%;
  background-color: #3c2144;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  z-index: 1000;
  height: 90px;
}

/* ================= LOGO ================= */
.logo img {
  height: 70px;   /* logo size */
  width: auto;  
}

.logo a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #6c5ce7; /* Lavender color */
  text-decoration: none;
}

/* ================= NAVIGATION ================= */
.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 60px;
}

.nav-links li a {
  text-decoration: none;
  color: #d4af37; /* Golden color */
  font-size: 17px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #6c5ce7;
}

/* ================= MOBILE MENU ================= */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle .bar {
  height: 3px;
  width: 25px;
  background-color: #d4af37;
  margin: 4px 0;
  transition: all 0.3s;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #3c2144;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
  }

  .nav.open {
    max-height: 300px; /* Adjust if needed */
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
  }

  .menu-toggle {
    display: flex;
  }
}
