@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary-color: #000;
  --text-color: #333;
  --bg-color: #fff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gray-900: #111827;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--primary-color);
}

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.nav-item button {
  font-size: 0.875rem;
  padding: 1.5rem 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-item button:hover {
  color: var(--gray-600);
}

.nav-link {
  font-size: 0.875rem;
  padding: 1.5rem 0.5rem;
  text-decoration: none;
  color: var(--text-color);
}

.nav-link:hover {
  color: var(--gray-600);
}

.icon-btn {
  padding: 0.5rem;
  background: none;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
}

.icon-btn:hover {
  background: var(--gray-100);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg-color);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 40;
}

.mega-menu.active {
  display: block;
}

.mega-menu-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.menu-section h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.menu-section ul {
  list-style: none;
  space: 0.5rem;
}

.menu-section a {
  font-size: 0.875rem;
  color: var(--gray-600);
  text-decoration: none;
  padding: 0.25rem 0;
  display: block;
}

.menu-section a:hover {
  color: var(--gray-900);
}

.dropdown-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 30;
}

.dropdown-overlay.active {
  display: block;
}

.menu-image-container {
  height: 200px; /* Reduced height */
  overflow: hidden;
  border-radius: 4px;
}

.menu-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
