/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: #fff;
  color: #000;
  line-height: 1.6;
}
body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  width: 8px;
  height: 100%;
  background: linear-gradient(to bottom, gold, transparent);
  z-index: 999;
}
body::before {
  left: 0;
}
body::after {
  right: 0;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #000;
}
@keyframes colorChange {
  0% { color: gold; }
  50% { color: white; }
  100% { color: gold; }
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  animation: colorChange 2s infinite;
  text-shadow: 0 0 10px rgba(218,165,32,0.4);
}

.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;
}
.navbar {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);

  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}


/* 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;
  }
}


/* Hero Section */

.hero {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  color: #ff7b00;
}

.hero p {
  max-width: 600px;
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #333;
}

.hero img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  margin-top: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.buttons a {
  padding: 0.7rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  background: #ff7b00;
  color: white;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.buttons a.outline {
  background: transparent;
  color: #ff7b00;
  border: 2px solid #ff7b00;
}

.buttons a:hover {
  opacity: 0.85;
}

/* About Section */
.about {
  background: #fef9f5;
  padding: 4rem 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.about img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-text h2 {
  color: #ff7b00;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text p {
  color: #444;
  font-size: 1rem;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stats div {
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stats h3 {
  color: #ff7b00;
  font-size: 1.5rem;
}

.stats span {
  display: block;
  font-size: 1rem;
  color: #666;
}

/* ------------------ Navbar ------------------ */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  border-radius: 24px;
  padding: 20px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 999;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 90%;
}

.navbar a {
  color: black;
  margin: 0 20px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
}

body.scrolled .navbar {
  padding: 16px 32px;
  border-radius: 20px;
}

/* ------------------ Hero Section ------------------ */
.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.hero-image {
  flex: 1 1 45%;
}

.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.hero-text {
  flex: 1 1 45%;
}

.hero-text h1 {
  font-size: 3rem;
  color: goldenrod;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

/* ------------------ Menu Button ------------------ */
.menu-button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.menu-button a {
  background-color: white;
  border: 2px solid #DAA520;
  color: #DAA520;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-button a:hover {
  background-color: #DAA520;
  color: white;
}
/* Glitter Mouse Trail */
.glitter-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, #ffd700, #ff4500);
  border-radius: 50%;
  pointer-events: none;
  animation: fadeOut 0.8s ease-out forwards;
  z-index: 9999;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
.menu-box-btn {
  display: inline-block;
  padding: 10px 25px;
  border: 2px solid gold;
  border-radius: 10px;
  background: transparent;
  color: black;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-box-btn:hover {
  background-color: gold;
  color: white;
  box-shadow: 0 0 10px gold;
}
.video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  color: gold;
}

.hero-content p {
  font-size: 1.2rem;
  color: white;
}

.menu-btn {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid gold;
  color: gold;
  text-decoration: none;
  border-radius: 10px;
  background-color: transparent;
  transition: 0.3s;
}

.menu-btn:hover {
  background-color: gold;
  color: black;
}
.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.video-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}


.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust darkness */
}
/* --- Section Container for All Locations --- */
.locations-section {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 60px 5%;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1200px;
}

/* --- Section Heading --- */
.locations-section h2 {
  text-align: center;
  font-size: 2.2rem;
  color: goldenrod;
  margin-bottom: 40px;
}

/* --- Container that aligns location cards horizontally --- */
.locations-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* --- Individual Location Card --- */
.location-card {
  background: white;
  border-radius: 12px;
  border-left: 5px solid goldenrod;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
}

/* --- Location Title --- */
.location-card h3 {
  font-size: 1.3rem;
  margin: 10px 0;
  color: #333;
}

/* --- Location Description --- */
.location-card p {
  font-size: 1rem;
  color: #444;
}

/* --- Location Image Styling --- */
.location-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.map-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin: 40px auto;
  padding: 20px;
  max-width: 1000px;


.map-box {
  flex: 1 1 48%;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-box h3 {
  text-align: center;
  color: goldenrod;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
}
@media (max-width: 768px) {
  .map-box {
    flex: 1 1 100%;
  }
}
.opening-hours {
  background: white;
  padding: 60px 5%;
  border-radius: 20px;
  margin: 40px auto;
  max-width: 1100px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.opening-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.opening-image img {
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.opening-text {
  flex: 1;
}

.opening-text h2 {
  font-size: 1.8rem;
  color: goldenrod;
  margin-bottom: 20px;
}

.opening-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.opening-stats {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.opening-stats h3 {
  font-size: 2.5rem;
  color: #000;
  margin: 0;
}

.opening-stats span {
  font-size: 1.2rem;
  color: goldenrod;
  margin-left: 5px;
}

.opening-stats p {
  font-size: 0.9rem;
  color: #444;
  max-width: 180px;
}
/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInMove 1.2s ease forwards;
}

@keyframes fadeInMove {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1.2s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.menu-box-btn:hover,
.contact-btn:hover {
  box-shadow: 0 0 15px gold;
  transform: scale(1.05);
}


/* Slight delay for staggered effect */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
/* Navbar entrance animation */
.navbar-animate {
  opacity: 0;
  transform: translateY(-50px);
  animation: navbarFadeDown 1s ease forwards;
  animation-delay: 0.5s;
}

/* Add this animation */
@keyframes fadeInSmooth {
  0% {
    opacity: 0;
    transform: translateY(-20px); /* Just a little upward float */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-btn {
  padding: 10px 20px;
  background-color: goldenrod;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #d4af37; /* Slightly lighter gold */
}
body {
  background-color: white;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

h2, h3, h4 {
  color: goldenrod;
  font-weight: 600;
}


.contact-wrapper {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  gap: 40px;
}

.contact-icon-card {
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 30px 20px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.contact-icon-card img {
  width: 60px;
  margin-bottom: 20px;
}

.contact-icon-card:hover {
  transform: translateY(-5px);
}

/* FIX CONTENT POSITION BELOW NAVBAR */
body { padding-top: 70px !important; }
section { margin-top: 30px !important; }
/* Hide nav-links and show hamburger on mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 10px;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: goldenrod;
    border-radius: 4px;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
    margin-top: 10px;
  }
}

/* On desktop, hide hamburger and mobile ORDER button */
@media (min-width: 769px) {
  .menu-toggle {
    display: none;
  }

  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: inline-block;
  }
}
/* Reverse layout for About section on desktop */
.about-reverse {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-reverse {
    flex-direction: column;
  }
}
.about-img {
  max-width: 100%;
  width: 500px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.about-reverse {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 5%;
}

.about-img-container {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.about-img {
  max-width: 450px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  flex: 1 1 40%;
}

.about-text {
  flex: 1 1 50%;
}
.about.about-reverse {
  display: flex !important;
  flex-direction: row-reverse;
  align-items: center;
  gap: 40px;
  padding: 4rem 2rem;
}

.about.about-reverse .about-img-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about.about-reverse .about-img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.about.about-reverse .about-text {
  flex: 1;
}

/* Responsive fix */
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about-img {
    max-width: 90%;
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    width: 100%;
    max-width: 500px;
  }
}
.footer {
  width: 100%;
  background: white;
  padding: 60px 0 30px;
  border-top: 1px solid #ddd;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  margin-top: 60px;
  color: #333;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}

.footer-column {
  flex: 1 1 30%;
  min-width: 240px;
}

.footer-column h4 {
  font-size: 1.2rem;
  color: goldenrod;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #333;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: goldenrod;
}

.footer-column form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column input[type="email"] {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
}

.footer-column button {
  padding: 10px;
  background-color: goldenrod;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

.footer-column button:hover {
  background-color: darkgoldenrod;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #eee;
  padding-top: 20px;
  color: #777;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: #333;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  color: goldenrod;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-column {
    width: 100%;
    max-width: 500px;
  }
}

