/* Header Styles */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6%;
  background: #f9f6ed;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 100px;
  height: 60px;
  object-fit: contain;
}

.brandname {
  font-size: 40px;
  font-family: 'Playfair Display', serif;
  color: #2e2b23;
}

.brand-text {
  font-size: 32px;
  font-weight: 500;
  font-family: Georgia, serif;
  color: #2c2c2c;
}

/* Navigation */
#navbar ul {
  display: flex;
  gap: 42px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

#navbar ul li a {
  text-decoration: none;
  color: #2e2b23; /* default link color */
  font-size: 18px;
  font-weight: 500;
  padding: 8px 14px;
  transition: all 0.3s ease;
} 

#navbar ul li a:hover {
  color: #2e2b23; /* hover matches default */
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #444;
  display: block;
  transition: all 0.3s ease;
} 

/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 6%;
    background: #e9e7de;
    padding: 12px 0;
  }

  nav.active ul {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  #navbar ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  #navbar ul li a {
    font-size: 20px;
    padding: 10px 0;
  }
} 

/* Active Link */
#navbar ul li a.active {
  color: #7b6a00;
  font-weight: 700;
}

