/* Sticky Elegant Royal Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #001d4a; /* Royal Blue */
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  color: #ffd700; /* Gold tone */
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-links a {
  margin-left: 2rem;
  text-decoration: none;
  color: #fff8e1; /* Creamy gold */
  font-weight: 500;
  font-family: 'Segoe UI', sans-serif;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700; /* Gold on hover */
}


/* Hero Section with video */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 20vh;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #ffcf99;
}

.hero-content p {
  font-size: 1.3rem;
  color: #ffffff;
  max-width: 600px;
  margin: 1rem auto;
}

.hero-content .btn {
  background-color: #ffcf99;
  color: #001d4a;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-content .btn:hover {
  background-color: #ffd700;
}

/* Section Titles */
section h2 {
  font-size: 2.5rem;
  color: #ffcf99;
  margin-bottom: 2rem;
  text-align: center;
}

/* Menu Cards */
.menu-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

.menu-item {
  background: #001f3f;
  border: 1px solid #ffcf99;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.menu-item:hover {
  transform: scale(1.03);
}

.menu-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.menu-item p {
  padding: 1rem;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
}

/* About and Contact */
.about-contact {
  display: flex;
  flex-wrap: wrap;
  background: #000e2f;
  padding: 3rem 2rem;
  color: #ffffff;
}

.about, .contact {
  flex: 1 1 300px;
  padding: 1.5rem;
}

.about-contact h2 {
  color: #ffcf99;
}

form input, form textarea, form button {
  width: 100%;
  margin-top: 1rem;
  padding: 0.8rem;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

form input, form textarea {
  background-color: #001d4a;
  color: #ffffff;
  border: 1px solid #ffcf99;
}

form button {
  background-color: #ffcf99;
  color: #001d4a;
  font-weight: bold;
  cursor: pointer;
}

/* Footer or payment section */
.payment {
  background: #00122b;
  padding: 2rem;
  text-align: center;
}

.payment h2 {
  color: #ffcf99;
}

.payment button {
  background-color: #ffcf99;
  border: none;
  padding: 0.8rem 1.4rem;
  font-size: 1rem;
  font-weight: bold;
  color: #001d4a;
  border-radius: 30px;
  cursor: pointer;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
}
/* Loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #001d4a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.gold-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #ffcf99;
  border-top: 5px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

.loading-text {
  color: #ffcf99;
  font-size: 1.2rem;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Hide loader when done */
body.loaded #loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}