/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", 'Times New Roman', Times, serif;
}

/* ===== HEADER ===== */
.main-header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  background: linear-gradient(135deg, #ffffff 0%, #e6ecff 20%, #f2f7ff 60%, #ffffff 100%);

  border-radius: 20px;
  box-shadow: 0 0px -20px #e0a75f;
  z-index: 999;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 40px;
}

/* ===== LOGO ===== */
/* .logo a {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(30, 43, 60);
  text-decoration: none;
} */

/* ===== NAV LINKS ===== */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgb(30, 43, 60);
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

/* Hover / Active underline */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #120a24;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: #554343;
}

/* ===== RIGHT SIDE ===== */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Reservation Button */
.reservation-btn {
 background: linear-gradient(90deg, #b36a2e, #e0a75f, #e0a75f, #e0a75f, #e0a75f, #c47b3c);

  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.reservation-btn:hover {
  background: linear-gradient(90deg, #120a2489, #120a2496);
  box-shadow: 0 0 10px rgba(224, 170, 255, 0.6);
}

/* Cart */
.cart {
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  color: rgb(30, 43, 60);
  font-size: 1.8rem;
  cursor: pointer;
}

/* Dropdown container */
.nav-links .dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown button */
.nav-links .dropdown a {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Dropdown content */
.nav-links .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 150px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  flex-direction: column;
}

.nav-links .dropdown-content a {
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
  display: block;
}

.nav-links .dropdown-content a:hover {
  background-color: #f4f4f4;
}

/* Show dropdown on hover */
.nav-links .dropdown:hover .dropdown-content {
  display: flex;
  flex-direction: column;
}

/* Optional caret rotation */
.nav-links .dropdown a i {
  transition: transform 0.3s;
}
.nav-links .dropdown:hover a i {
  transform: rotate(180deg);
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {

  height: 65px;
  width: 125%;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(-18.9) contrast(61.2);
}

.logo img:hover {
  transform: scale(1.05); /* Slight hover zoom effect */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .logo img {
    height: 40px;
  }
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 950px) {
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  .header-right {
    gap: 10px;
  }
  .header-container {
    padding: 14px 10px;
  }

  .nav-links a {
    color: rgb(30, 43, 60);;
  }

  .nav-links a:hover {
    color: #b36a2e;
  }
}
/* Hide dropdown by default */
.dropdown-content {
  display: none;
}

/* Show on hover for desktop */
/* Show on hover for desktop */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}

/* For mobile: click to toggle */
@media (max-width: 768px) {
  .dropdown-content {
    display: none;
  }

  .dropdown-content.active-dropdown {
    display: block;
  }

  .dropbtn {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .dropdown-content a {
    display: block;
    padding: 10px 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}

