/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== NAVBAR ===== */
#navbar {
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}
#navbar.scrolled {
  background: rgba(14, 26, 46, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-link {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4911A;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* Mobile menu */
#mobile-menu.open { opacity: 1 !important; pointer-events: all !important; }

/* ===== HERO ===== */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('https://images.pexels.com/photos/5083915/pexels-photo-5083915.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
#hero:hover .hero-bg-img { transform: scale(1.0); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 26, 46, 0.88) 0%,
    rgba(30, 58, 95, 0.80) 50%,
    rgba(14, 26, 46, 0.85) 100%
  );
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: linear-gradient(135deg, #D4911A 0%, #e8a829 100%);
  box-shadow: 0 4px 15px rgba(212, 145, 26, 0.3);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #c47f0f 0%, #D4911A 100%);
  box-shadow: 0 6px 25px rgba(212, 145, 26, 0.45);
}
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
}

/* ===== MENU CARDS ===== */
.menu-card {
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
}

/* ===== GALLERY ===== */
.gallery-img {
  aspect-ratio: 1 / 1;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(30, 58, 95, 0.12);
  transition: box-shadow 0.3s ease;
}
.gallery-img:hover {
  box-shadow: 0 8px 32px rgba(30, 58, 95, 0.2);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== MOBILE MENU ANIMATION ===== */
.mobile-link {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#mobile-menu.open .mobile-link {
  opacity: 1;
  transform: translateY(0);
}
#mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
#mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
#mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
#mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.2s; }
#mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.25s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 767px) {
  .font-display { line-height: 1.15; }
}
