/* ================== GLOBAL STYLES ================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0b1d3a; /* Deep Midnight Blue */
  color: #fff;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}

/* ================== HEADER ================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  padding: 0.5rem 1rem;
}

.header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 1200px;
  margin: auto;
}

.header .logo {
  height: 50px;
  width: auto;
}

.header h1 {
  color: #0b1d3a;
  font-size: 1.8rem;
}

/* ================== STICKY NAVIGATION ================== */
.sticky-nav {
  position: sticky;
  top: 80px; /* below header */
  background-color: #0b1d3a;
  z-index: 999;
  padding: 0.5rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.nav-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-btn {
  background-color: transparent;
  border: 1px solid #D4AF37;
  color: #D4AF37;
  padding: 0.5rem 1rem;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-btn:hover {
  background-color: #D4AF37;
  color: #0b1d3a;
}

/* ================== CONTENT CONTAINER ================== */
.content-container {
  padding-top: 140px; /* space for fixed header + sticky nav */
  max-width: 1200px;
  margin: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ================== MENU SECTION ================== */
.menu-section {
  margin-bottom: 50px;
}

.menu-section h2 {
  font-size: 2rem;
  color: #D4AF37;
  margin-bottom: 1rem;
  text-align: center;
}

/* ================== MENU GRID ================== */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

/* ================== GLASS CARD ================== */
.glass-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #D4AF37;
  border-radius: 15px;
  backdrop-filter: blur(8px);
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s forwards;
}

.glass-card.horizontal-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.menu-content h3 {
  font-size: 1.2rem;
  color: #D4AF37;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-content .price {
  color: #fff;
  margin-left: 10px;
}

.menu-content p {
  color: #ccc;
  margin-top: 0.3rem;
  font-size: 0.95rem;
}

/* ================== ANIMATION ================== */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sequential fade-in delay for cards */
.glass-card:nth-child(1) { animation-delay: 0.1s; }
.glass-card:nth-child(2) { animation-delay: 0.2s; }
.glass-card:nth-child(3) { animation-delay: 0.3s; }
.glass-card:nth-child(4) { animation-delay: 0.4s; }
.glass-card:nth-child(5) { animation-delay: 0.5s; }
.glass-card:nth-child(6) { animation-delay: 0.6s; }
.glass-card:nth-child(7) { animation-delay: 0.7s; }
.glass-card:nth-child(8) { animation-delay: 0.8s; }

/* Hover lift effect */
.glass-card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}