/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Roboto', sans-serif; }
body { background: #fff; color: #333; scroll-behavior: smooth; }

/* Navbar */
/* -------------------- Navbar -------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: #fffefd;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  overflow-x: hidden; 
}

/* -------------------- Logo -------------------- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}



/* -------------------- Nav Links -------------------- */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #f16836;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 5px 0;
  transition: all 0.3s ease;
}

/* Animated underline effect */
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: #ff4500;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  transform: scale(1.05);
}

/* -------------------- Hamburger Menu -------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #f16836;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger toggle animation to X */
.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* -------------------- Responsive -------------------- */
@media(max-width: 768px) {
  .hamburger {
    display: flex;
    /* Align hamburger properly next to logo */
    margin-right: 0; 
  }

  .nav-links {
    position: fixed;
    top: 70px; /* below navbar */
    right: -100%;
    width: 90%; /* not full screen */
    max-width: 300px; /* mobile panel width */
    height: calc(100vh - 70px); /* full height minus navbar */
    background: #fffefd;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 20px;
    padding: 10px 0;
  }

  .heading {
    font-size: 26px;
  }
}

@media(max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .heading {
    font-size: 22px;
  }

  .nav-links li a {
    font-size: 18px;
  }
}

/* -------------------- Logo -------------------- */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}

.heading {
  
  font-size: 32px;
  color: #f16836;
}

/* -------------------- Nav Links -------------------- */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #f16836;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  padding: 5px 0;
  transition: all 0.3s ease;
}

/* Animated underline effect */
.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 3px;
  background: #ff4500;
  border-radius: 2px;
  transition: 0.3s;
}

.nav-links li a:hover::after {
  width: 100%;
}

.nav-links li a:hover {
  transform: scale(1.05);
}

/* -------------------- Hamburger Menu -------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
  position: absolute;
  right: 20px; /* fixed distance from right */
  top: 50%;
  transform: translateY(-50%);
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #f16836;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hamburger toggle animation to X */
.hamburger.toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.toggle span:nth-child(2) {
  opacity: 0;
}

.hamburger.toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Show hamburger on mobile */
@media(max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px; /* below navbar */
    right: -100%;
    width: 90%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: #fffefd;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 20px;
    padding: 10px 0;
  }
}
/* -------------------- Responsive -------------------- */
@media(max-width: 768px) {
  .hamburger {
    display: flex;
    /* Align hamburger properly next to logo */
    margin-right: 0; 
  }

  .nav-links {
    position: fixed;
    top: 70px; /* below navbar */
    right: -100%;
    width: 90%; /* not full screen */
    max-width: 300px; /* mobile panel width */
    height: calc(100vh - 70px); /* full height minus navbar */
    background: #fffefd;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: -2px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li a {
    font-size: 20px;
    padding: 10px 0;
  }

  .heading {
    font-size: 26px;
  }
}

@media(max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .heading {
    font-size: 22px;
  }

  .nav-links li a {
    font-size: 18px;
  }
}


/* Banner */
/* Banner Section */
.banner {
  position: relative;
  height: 100vh; /* Adjust for desktop */
  overflow: hidden;
}

.banner-slide .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 1s;
  background-size: cover;
  background-position: center; /* ensures center focus */
}

.banner-slide .slide.active {
  opacity: 1;
}

.banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
  display: block; /* prevent overflow and maintain aspect ratio */
}

/* Banner content */
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  padding: 0 20px; /* add padding for small screens */
}

.banner-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.banner-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.banner-content .btn {
  padding: 12px 30px;
  background: #ff4500;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}

.banner-content .btn:hover {
  background: #000;
}

/* ---------------- Responsive Fixes ---------------- */

/* Tablets and smaller screens */
@media (max-width: 1024px) {
  .banner {
    height: 60vh; /* reduce height for tablet */
  }
  .banner-content h1 {
    font-size: 36px;
  }
  .banner-content p {
    font-size: 18px;
  }
}

/* Mobile screens */
@media (max-width: 768px) {
  .banner {
    height: 50vh; /* shorter height for mobile */
  }

  .banner-content {
    width: 80%; /* ensure it fits well */
  }
  .banner-content h1 {
    font-size: 28px;
  }
  .banner-content p {
    font-size: 16px;
  }
  .banner-content .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .banner {
    height: 40vh; /* even shorter for small phones */
  }
  .banner-content h1 {
    font-size: 22px;
  }
  .banner-content p {
    font-size: 14px;
  }
  .banner-content .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}


/* About */
.about { padding: 90px; text-align: center; background: #fff3f0; }
.about h2 { font-size: 36px; color: #ff4500; margin-bottom: 20px; } 
.about p { margin-bottom: 30px; font-size: 18px; line-height: 1.6;  }
.about-images { display: flex; gap: 20px; justify-content: center; margin-bottom: 30px; }
.about-images img { width: 45%; border-radius: 15px; transition: 0.3s; }
.about-images img:hover { transform: scale(1.05); }
.cards { display: flex; gap: 20px; justify-content: center; margin-bottom: 30px; }
.card { background: #ffefd5; padding: 20px; border-radius: 15px; width: 250px; transition: 0.3s; }
.card:hover { transform: translateY(-10px); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }
.about .btn { padding: 12px 30px;
  background: #ff4500;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;}
.about .btn:hover { background: #000; }



/* About section extra styles */
.why-choose { margin: 40px auto; max-width: 500px; text-align: left; }
.why-choose h3 { color: #ff4500; margin-bottom: 15px; font-size: 24px; }
.why-choose ul { list-style: none; padding: 0; }
.why-choose ul li { padding: 10px 0; font-size: 18px; border-bottom: 1px solid #eee; }

.team-highlight { margin: 50px auto; max-width: 800px; text-align: center; }
.team-highlight h3 { color: #ff4500; margin-bottom: 15px; font-size: 24px; }
.team-highlight p { margin-bottom: 20px; line-height: 1.6; }
.team-images { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.team-images img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; border: 5px solid #ff4500; transition: 0.3s; }
.team-images img:hover { transform: scale(1.05); }

/* Combo Layout: Why Choose Us (Left) + Vision & Mission (Right) */
.about-combo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin: 50px auto;
  max-width: 1100px;
  flex-wrap: wrap; /* for responsiveness */
  border: 0px solid #edb361;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 16px 0 #edb361;
}

/* Left column */
.why-choose {
  flex: 1;
  text-align: left;
}
.why-choose h3 {
  color: #ff4500;
  margin-bottom: 15px;
  font-size: 24px;
}
.why-choose ul {
  list-style: none;
  padding: 0;
}
.why-choose ul li {
  padding: 10px 0;
  font-size: 18px;
  border-bottom: 1px solid #eee;
}

/* Right column */
.vision-mission {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.vision-mission .card {
  width: 100%;
  max-width: 400px;
}

/* Responsive */
@media(max-width: 768px) {
  .about-combo {
    flex-direction: column;
    align-items: center;
  }
  .vision-mission .card {
    max-width: 100%;
  }
}



/* Ambience */
.ambience { padding: 80px 10%; background: #fff; text-align: center; }
.ambience h2 { color: #ff4500; font-size: 36px; margin-bottom: 20px; }
.ambience-items { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 30px; }
.ambience-item { width: 300px; background: #fff3f0; border-radius: 15px; overflow: hidden; transition: 0.3s; box-shadow: 0 15px 25px rgba(0,0,0,0.2);}
.ambience-item img { width: 100%; height: 200px; object-fit: cover; transition: 0.3s; }
.ambience-item:hover img { transform: scale(1.05); }
.ambience-item h3 { padding: 15px; color: #ff4500; }
.ambience-item p { padding: 0 15px 15px; }

/* Menu */


.menu {
  position: relative;
  padding: 80px 10%;
  text-align: center;
  overflow: hidden; /* ensures video stays inside */
  background: #ffe8d8; /* fallback */
  color: #fff;
}



.menu h2 {
  color: #ff4500;
  font-size: 36px;
  margin-bottom: 40px;
  animation: fadeInDown 1s ease;
}

.menu-category {
  margin-bottom: 60px;
  width: 100%;
}

.menu-category h3 {
  font-size: 28px;
  color: #363231;
  margin-bottom: 25px;
  animation: fadeInDown 1s ease;
}

.menu-items {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.menu-item {
  background: #fff;
  width: 260px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.menu-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-item h4 {
  padding: 15px;
  color: #ff4500;
  font-size: 20px;
  transition: color 0.3s ease;
}

.menu-item p {
  padding: 0 15px;
  font-size: 15px;
  color: #555;
  transition: opacity 0.3s ease;
}

.menu-item span {
  display: block;
  padding: 15px;
  font-weight: bold;
  color: #000;
  font-size: 18px;
}

/* Hover effects */
.menu-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

.menu-item:hover img {
  transform: scale(1.1);
}

.menu-item:hover h4 {
  color: #e63e00;
}

.menu-item:hover p {
  opacity: 0.9;
}

/* Keyframes for smooth entry */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Contact Section */
.contact {
  padding: 80px 10%;
  position: relative;
  padding: 80px 10%;
  overflow: hidden; /* ensures blur doesn't overflow */
  z-index: 0; /* for stacking */
}


.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('src/restaurant-bg.jpg') center/cover no-repeat;
  filter: blur(5px); /* adjust blur intensity */
  z-index: -1; /* behind content */
}


.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

/* Location Card */
.location-card {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: #fff;
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  animation: fadeUp 1s ease forwards;
}

.location-card h2 {
  font-size: 28px;
  color: #ff4500;
  margin-bottom: 20px;
}

.info-item {
  display: flex;
  gap: 15px;
  font-size: 16px;
  margin-bottom: 15px;
  
  transition: transform 0.3s ease;
}

.info-item i {
  font-size: 22px;
  color: #ff4500;
}
.info-item p{
  text-align: left;
  
}

.info-item a {
  color: #ff4500;
  font-weight: bold;
  text-decoration: none;
}

.info-item:hover {
  transform: translateY(-5px);
}

/* Contact Form Card */
.contact-form-card {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  background: #fff; /* solid background */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  color: #333;
  text-align: center;
  animation: fadeUp 1s ease forwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.contact-form-card h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ff4500;
}

.contact-form-card p {
  margin-bottom: 20px;
  color: #555;
}

.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-card input,
.contact-form-card textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  outline: none;
  background: #fafafa;
  color: #333;
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: #aaa;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: #ff4500;
  box-shadow: 0 0 10px rgba(255,69,0,0.3);
  background: #fff;
}

.contact-form-card button {
  padding: 12px;
  border-radius: 25px;
  border: none;
  font-weight: bold;
  font-size: 16px;
  background: linear-gradient(45deg, #ff4500, #ff6347);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-card button:hover {
  background: #000;
  color: #ff4500;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}

/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Footer */
/* Footer */
footer {
  background: #000;
  color: #fff;
  padding: 60px 10%;
  font-family: 'Roboto', sans-serif;
  position: relative;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-content > div {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-content h4 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #ff4500;
  position: relative;
  display: inline-block; /* ensures line aligns with text width */
}

.footer-content h4::after {
  content: '';
  display: block;
  width: 60%; /* responsive width relative to h4 */
  max-width: 100px; /* optional: max limit */
  height: 2px;
  background: #ff4500;
  margin-top: 5px;
  border-radius: 2px;
}


.footer-content ul {
  list-style: none;
  padding: 0;
}

.footer-content ul li {
  margin-bottom: 10px;
}

.footer-content ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-content ul li a:hover {
  color: #ff4500;
  transform: translateX(5px);
}

/* Locations */

.locations {
  max-height: 100px; /* limit height */
}
.footer-content .locations p {
  line-height: 1.6;
  color: #ccc;
}

/* Social Media */
/* Social Media Section */
.footer-content .social-media {
  text-align: center; /* center heading and icons */
  display: flex;
  flex-direction: column;
}

.footer-content .social-media h4 {
  font-size: 20px;
  color: #ff4500;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
}

.footer-content .social-media h4::after {
  content: '';
  display: block;
  width: 50%;
  max-width: 100px;
  height: 2px;
  background: #ff4500;
  margin: 5px auto 0;
  border-radius: 2px;
}

.footer-content .social-media a {
  display: inline-block;
  margin: 5px 10px;
  width: 40px;
  height: 40px;
  background: #1a1a1a;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-content .social-media a:hover {
  background: #ff4500;
  color: #fff;
  transform: scale(1.2);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-bottom a {
  color: #ff4500;
  text-decoration: none;
}

/* Responsive */
@media(max-width: 768px) {
  .footer-content .social-media a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 16px;
    margin: 5px 5px;
  }

  .footer-content .social-media h4 {
    font-size: 18px;
  }
}

@media(max-width: 480px) {
  .footer-content .social-media a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    margin: 5px 3px;
  }

  .footer-content .social-media h4 {
    font-size: 16px;
  }
}


/* Medium screens (Tablets & small laptops) */
@media (max-width: 1024px) {
  .navbar {
    padding: 12px 3%;
  }

  .banner-content h1 {
    font-size: 36px;
  }
  .banner-content p {
    font-size: 18px;
  }

  .about, 
  .ambience, 
  .menu, 
  .contact {
    padding: 60px 5%;
  }

  .ambience-item, 
  .menu-item {
    width: 45%;
  }
}

/* Tablets and large phones */
@media (max-width: 768px) {
  .heading {
    font-size: 26px;
  }

  .banner-content h1 {
    font-size: 28px;
  }
  .banner-content p {
    font-size: 16px;
  }

  .about-images {
    flex-direction: column;
    align-items: center;
  }
  .about-images img {
    width: 90%;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .ambience-item, 
  .menu-item {
    width: 100%;
    max-width: 400px;
  }

  .contact-container {
    flex-direction: column;
  }

  footer {
    padding: 40px 5%;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }
  .heading {
    font-size: 22px;
  }

  .banner-content h1 {
    font-size: 22px;
  }
  .banner-content p {
    font-size: 14px;
  }
  .banner-content .btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .why-choose h3,
  .vision-mission h3,
  .ambience h2,
  .menu h2,
  .contact-form-card h2 {
    font-size: 20px;
  }

  .why-choose ul li {
    font-size: 16px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-content .social-media a {
    margin: 5px;
  }
}

 /*last add for display*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden; /* Prevent horizontal scroll */
}