/* General Reset */
* {
  margin: 0; padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  scroll-behavior: smooth;
  background: #000;
  color: #fff;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden; /* prevent sideways scroll */
}

/* Header */
header {
  backdrop-filter: blur(5px);
  position: fixed;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}
.logo { display: flex; align-items: center; }
.logo img { width: 500px; margin-right: 20px; }
.logo h1 { font-size: 40px; color:#f4a261; }

/* Navbar */
nav ul {
  display: flex; list-style: none;
}
nav ul li { margin: 0 15px; }
nav ul li a {
  color: #fff; text-decoration: none;
  transition: color 0.3s;
}
nav ul li a:hover, nav ul li a.active { color: #f4a261; }
.hamburger {
  display: none; font-size: 28px; cursor: pointer;
  margin-left: 15px;
}

/* Home Section */
#home {
  background: #000;
  height: 90vh;
  position: relative;
  overflow: hidden;
  color: #fff;
}

#home .overlay {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

#home h2.dynamic-text {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 15px;
  animation: textColorChange 5s infinite alternate;
}
#home h2.dynamic-text span {
  color: #f4a261;
}

/* Sub-text animation */
#home .sub-text {
  font-size: 1.5rem;
  color: #ddd;
  margin-bottom: 40px;
  animation: floatUp 3s ease-in-out infinite alternate;
}

/* Call to Action Button */
.home-btn {
  padding: 15px 35px;
  font-size: 1.2rem;
  border: none;
  background: #f4a261;
  color: #fff;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}
.home-btn:hover {
  background: #e76f51;
  transform: scale(1.1);
}

/* Floating food icons animation */
.floating-icons {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}
.floating-icons span {
  position: absolute;
  font-size: 2rem;
  opacity: 0.7;
  animation: floatIcons 10s linear infinite;
}

/* Random positions for icons */
.floating-icons span:nth-child(1) { left: 10%; animation-delay: 0s; }
.floating-icons span:nth-child(2) { left: 30%; animation-delay: 2s; }
.floating-icons span:nth-child(3) { left: 50%; animation-delay: 4s; }
.floating-icons span:nth-child(4) { left: 70%; animation-delay: 6s; }
.floating-icons span:nth-child(5) { left: 90%; animation-delay: 8s; }

/* Keyframes */
@keyframes floatIcons {
  0% { transform: translateY(100vh) rotate(0deg); }
  50% { transform: translateY(50vh) rotate(180deg); }
  100% { transform: translateY(-20vh) rotate(360deg); }
}

@keyframes textColorChange {
  0% { color: #fff; }
  50% { color: #f4a261; }
  100% { color: #e76f51; }
}

@keyframes floatUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Sections */
section { 
  padding: 80px 10%; 
  text-align: center; 
  background: #000; 
  color: #fff;
}
section h2 { 
  margin-bottom: 20px; 
  font-size: 2.5rem; 
  color: #fff;
}
section h2 span { 
  color: #f4a261; 
}

/* Menu */
.menu-container {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 20px;
}
.menu-card {
  background: #1a1a1a; border: 1px solid #333;
  border-radius: 8px; padding: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  color: #fff;
}
.menu-card img {
  width: 100%; height: 150px; object-fit: cover; border-radius: 8px;
}
.menu-card:hover {
  transform: translateY(-5px); box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

/* Menu section default (desktop) stays same */

/* Mobile menu slider */
@media (max-width: 768px) {
  .menu-container {
    display: flex !important;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
    transition: transform 0.6s ease-in-out;
  }

  .menu-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}




/* Menu PDF button */
.menu-pdf {
  text-align: center;
  margin-top: 30px;
}
.menu-pdf button {
  background: #f4a261; border: none; padding: 20px 40px;
  color: #fff; border-radius: 12px; cursor: pointer;
  font-size: 1.2rem; /* bigger text */
}
.menu-pdf button:hover { background: #e76f51; }

/* About Section */
.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.about-image {
  flex: 1;
  min-width: 320px;
}
.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.about-content {
  flex: 1;
  min-width: 320px;
}
.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}
.about-content h2 span { color: #f4a261; }
.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 20px;
}
.about-content button {
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  background: #f4a261;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.about-content button:hover {
  background: #e76f51;
  transform: translateY(-2px);
}

/* Contact Section */
#contact .contact-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.contact-content {
  flex: 1;
  min-width: 320px;
}
.contact-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}
.contact-content h2 span { color: #f4a261; }
.contact-content p,
.contact-details p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #fff;
}
.contact-content button {
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  background: #f4a261;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 10px;
}
.contact-content button:hover {
   background: #e76f51;
  transform: translateY(-2px);
}
.contact-image {
  flex: 1;
  min-width: 320px;
}
.contact-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Reviews Section */
#reviews {
  background: #000;
  color: #fff;
  padding: 80px 10%;
  text-align: center;
}

#reviews h2 {
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #fff;
}
#reviews h2 span { color: #f4a261; }

.reviews-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.review-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.review-card h4 {
  font-size: 1.1rem;
  color: #f4a261;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

/* Responsive */
@media(max-width: 768px) {
  .reviews-container {
    flex-direction: column;
    align-items: center;
  }
  .review-card {
    width: 90%;
  }
}


/* Location Section */
.location-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.location-map {
  flex: 1;
  min-width: 320px;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.location-content {
  flex: 1;
  min-width: 320px;
}
.location-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
}
.location-content h2 span { color: #f4a261; }
.location-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 20px;
}
.location-content button {
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  background: #f4a261;
  color: #fff;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.location-content button:hover {
   background: #e76f51;
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: #111; 
  color: #fff; 
  text-align: center;
  padding: 20px 0; /* ensure no extra space */
  margin: 0;
}
footer .social a {
  margin: 0 10px; color: #fff; font-size: 20px;
  text-decoration: none;
}
footer .social a:hover { color: #f4a261; }

body::after {
  content: "";
  display: block;
  height: 0; /* removes ghost space under footer */
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;} to {opacity: 1;}
}
section { opacity: 0; transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
section.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media(max-width: 768px) {
  nav ul { display: none; flex-direction: column; background: #111; position: absolute; top: 60px; right: 20px; }
  nav ul.show { display: flex; }
  .hamburger { display: block; }

  /* Make menu a slider on mobile */
  .menu-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
  }
  .menu-card {
    flex: 0 0 80%; /* show one card at a time */
    scroll-snap-align: start;
  }
  .menu-container::-webkit-scrollbar {
    display: none; /* hide scrollbar */
  }
}
