/* menu.css */

/* Background video styling */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

video.bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  object-fit: cover;
  opacity: 0.3;
}

/* Fade-in effect */
.fade-in {
  opacity: 0;
  animation: fadeIn ease-in 1;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

s

/* Sidebar toggle */
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1000;
  top: 0px;
  left: 0;
  background-color: white;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  border-right: 2px solid gold;
}

.sidebar a {
  padding: 10px 25px;
  text-decoration: none;
  font-size: 18px;
  color: #000;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  background-color: #f1f1f1;
  color: #B8860B;
}
/* Hamburger Style (Punch hole look) */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: #B8860B;
  box-shadow: 0 0 0 2px white inset;
  transition: all 0.3s ease;
}



.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  color: #B8860B;
  position: fixed;
  top: 80px;
  left: 10px;
  z-index: 1001;
}

/* Menu page layout */
.menu-page {
  margin-top: 100px;
  padding: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.menu-page h1 {
  text-align: center;
  color: #B8860B;
  font-size: 32px;
  margin-bottom: 20px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  color: #222;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item .price {
  color: #B8860B;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 90%;
    background-color: white;
    border: 2px solid gold;
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
  }

  .navbar .logo {
    font-size: 14px;
    font-weight: bold;
  }

  .navbar nav {
    display: none; /* optional: hide links inside pill */
  }

  .cta-link {
    display: none; /* optional: hide CTA button for minimal look */
  }

  .open-menu {
    top: 60px;
    left: 15px;
  }
}
/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.nav-logo {
  font-size: 18px;         /* Smaller logo text */
  font-weight: bold;
  margin-right: 15px;      /* Less space between logo and links */
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 12px;       /* Much smaller padding */
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  position: sticky;
  top: 5px;                /* Closer to top */
  margin: 10px auto;
  max-width: 100%;
  z-index: 999;
  animation: fadeDown 0.5s ease-in-out;
  height: 50px;            /* Optional fixed height */
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 14px;         /* Smaller text */
  padding: 5px 8px;        /* Less padding */
  transition: color 0.3s;
}

nav a:hover {
  color: #ff7b00;
}

/* Hamburger Menu */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 3px;
  border-radius: 4px;
  background: #ff7b00;
  box-shadow: 0 0 0 2px #fff inset;
}
/* Mobile Nav */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.8rem;
    display: none;
    z-index: 998;
  }

  nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

.cta-link {
  background-color: gold;
  color: #8B0000;
  padding: 8px 14px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-link:hover {
  background-color: #ffcc00;
}

/* Sidebar Menu */
.side-menu {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #8B0000;
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
}

.side-menu a {
  padding: 10px 30px;
  text-decoration: none;
  font-size: 18px;
  color: white;
  display: block;
  transition: 0.3s;
}

.side-menu a:hover {
  background-color: gold;
  color: #8B0000;
}

.closebtn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 32px;
}

/* Open Button */
.open-menu {
  font-size: 22px;
  cursor: pointer;
  position: fixed;
  top: 0px;
  left: 15px;
  z-index: 1001;
  color: #8B0000;
  background: gold;
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* Hero Section */
/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

/* Hero Content */
.hero-content {
  max-width: 600px;
  color: #111;
}

/* Order Button */
.order-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 1.2rem;
  color: white;
  background-color: #e63946;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.order-button:hover {
  background-color: #c92a34;
}

.order-btn {
  background-color: gold;
  color: #8B0000;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background 0.3s;
}

.order-btn:hover {
  background-color: #ffcc00;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1.2s ease-in forwards;
}

/* Fullscreen background video settings */
#background-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.6; /* Controls video brightness (0.5–0.7 looks good) */
}

/* Optional: dark overlay for better readability */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4); /* Slight black overlay */
  z-index: 0;
}

/* Fade-in effect for menu sections */
.menu-section {
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Make all main text dark */
body, h1, h2, h3, p, a {
  color: #111 !important;
}

/* Optional: darken section titles */
.section-title {
  color: #222 !important;
}

/* Button can stay light or change depending on preference */
.order-button {
  background-color: #e63946;
  color: white;
}

.order-button:hover {
  background-color: #c92a34;
}
#bg-video {
  filter: brightness(0.6); /* Adjust from 0.3 to 0.6 */
}
/* 📸 Gallery Layout */
.photo-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 20px;
}

.photo-gallery img {
  width: 250px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.photo-gallery img:hover {
  transform: scale(1.05);
}

/* 📄 Physical Menu Image Section */
.menu-photos-container {
  padding: 80px 40px 20px; /* adds space from navbar */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1;
  position: relative;
}

.menu-photos-right {
  display: flex;
  gap: 15px;
}

.popup-image-small {
  width: 130px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.popup-image-small:hover {
  transform: scale(1.05);
}

/* 📄 Menu Photos Section */
.menu-photos-section {
  padding: 80px 20px 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.menu-photos-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.popup-image-small {
  width: 150px;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s ease-in-out;
}

.popup-image-small:hover {
  transform: scale(1.05);
}

/* Popup Overlay */
.image-popup {
  display: none;
  position: fixed; /* Important: fix to the screen */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden; /* Prevent scroll inside popup */
}

/* Image inside the popup */
.image-popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}

