@import url('https://fonts.googleapis.com/css2?family=Clicker+Script&family=Monsieur+La+Doulaise&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}
body{
    font-family: 'Poppins',sans-serif;
}
 
/* Custom styles for the navbar */

.navbar {
    transition: all 0.3s ease;
    background-color:#ECEEDF !important;
    /* z-index: 50;  */
    /* position: fixed; */
}
.navbar .logo{
    position: absolute;
    left: 5rem;
    top: -2px;
    height: 7.6rem;
}


     
.nav-link {
position: relative;
}


        /* For underline on the anchors in nav */
.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: #d4af37;
transition: width 0.3s ease;
}
      
.nav-link:hover::after {
width: 100%;
}
       
.hamburger-line {
  transition: all 0.3s ease;
}
        
.hamburger.active .hamburger-line:nth-child(1) {
transform: rotate(-45deg) translate(-5px, 6px);
}
        
.hamburger.active .hamburger-line:nth-child(2) {
opacity: 0;
}
        
.hamburger.active .hamburger-line:nth-child(3) {
transform: rotate(45deg) translate(-5px, -6px);
}
        
.mobile-menu {
transition: transform 0.5s ease;
}


@media (max-width: 768px) {
  .navbar .logo {
    position: absolute; /* no absolute, stays inside navbar */
    top: 5px;
    left: 0;
    height: 6.5rem; /* smaller logo for mobile */
  }

}






/* =========================
   HERO SECTION – LUXURY BASE
   ========================= */

/* Slides fade */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  pointer-events: none;
  background-color: #000;
  padding-top: 2rem;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32; /* warmer & richer */
  filter: saturate(1.05) contrast(1.05);
}

/* Improve repaint performance */
.carousel,
.slide {
  will-change: opacity, transform;
}

/* Controls */
.control {
  z-index: 30;
  transition: transform 0.25s ease, background 0.25s ease;
}

.control:hover {
  transform: scale(1.08);
}

/* =========================
   HERO TYPOGRAPHY FEEL
   ========================= */

.hero-eyebrow {
  letter-spacing: 0.25em;
  opacity: 0.9;
}

/* =========================
   HERO CTA – MINIMAL FINE DINING
   ========================= */

.home-heroBtn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fef3c7;
  border: 2px solid rgba(245, 158, 11, 0.6);
  background: transparent;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.35),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease,
    color 0.3s ease;
}

/* Hover */
.home-heroBtn:hover {
  background: #f5b91f;
  color: #000;
  transform: translateY(-1.5px);

  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.45),
    inset 0 -2px 0 rgba(0, 0, 0, 0.15);
}

/* Active */
.home-heroBtn:active {
  transform: translateY(0);

  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.35),
    inset 0 3px 6px rgba(0, 0, 0, 0.35);
}

/* Focus */
.home-heroBtn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(245, 158, 11, 0.45),
    0 14px 28px rgba(0, 0, 0, 0.4);
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .home-heroBtn {
    transition: none;
  }
}
.slide img {
  transform: scale(1);
  transition: opacity 1s ease, transform 6s ease;
}

.slide.zoom img {
  transform: scale(1.06);
}







/* Floating Button Base */
.floating-order-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(to right, #f97316, #ef4444);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease-in-out;
  z-index: 999;
  white-space: nowrap;
  padding: 8px 16px; /* smaller size */
  height: 45px; 
  font-size: 0.95rem;
}

/* Icon */
.floating-order-btn .icon i {
  font-size: 1.2rem;
  color: #fff;
  transition: transform 0.3s ease-in-out;
}

/* Button Text */
.floating-order-btn .btn-text {
  margin-left: 8px;
}

/* Hover Animation */
.floating-order-btn:hover {
  transform: scale(1.05); /* subtle zoom */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.floating-order-btn:hover .icon i {
  transform: rotate(20deg); /* small playful tilt */
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .floating-order-btn {
    font-size: 0.85rem;
    padding: 7px 14px;
    bottom: 5px;
    right: 10px;
    height: auto;
  }

  .floating-order-btn .icon i {
    font-size: 1rem;
  }
}



/* Floating WhatsApp button styling */
.whatsapp-float {
  background-color: #25D366; /* WhatsApp green */
  width: 60px;   /* size of button */
  height: 60px;
  /* margin-bottom: 4rem; */
  position: absolute;
  top: 79%;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease-in-out;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}


/* Subtle pulse animation */
.whatsapp-float {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .whatsapp-float {
    height: 50px;
    width: 50px;
    font-size: 20px;
    padding: 10px;
    bottom: 50px;
    right: 5px;
  }
}

















/* Highlight Section Styling */
.highlights {
  background: #f9f9f9;
}

.highlight-card {
  background: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.highlight-card .icon {
  color: #ff4d4d; /* fallback color if Tailwind class not applied */
}







/* ===== Featured Menu Section Styles ===== */
/* Card Styles */
.menu-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.menu-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.menu-card-body {
  padding: 1.25rem;
}

.menu-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #d35400;
  margin-bottom: 0.5rem;
}

.menu-card-body p {
  font-size: 0.95rem;
  color: #555;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 1rem;
}

.modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  max-width: 650px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
  text-align: center;
  position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #fff;
  border: none;
  font-size: 1.5rem;
  color: #333;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.close-btn:hover {
  background: #f97316;
  color: #fff;
}

/* Modal Image */
.modal-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}

/* Modal Content */
.modal-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d35400;
  margin-bottom: 0.75rem;
}

.modal-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Prices */
.modal-prices {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-weight: 600;
  color: #e67e22;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Menu Button */
.circle-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #f97316;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.circle-btn:hover {
  width: 120px;
  border-radius: 30px;
}
.circle-btn::after {
  content: "Menu";
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.circle-btn:hover::after {
  opacity: 1;
}








/* About us section  */
.about-sec {
  background: #f8f9fa; /* light neutral bg */
}

.about-sec img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-sec img:hover {
  transform: scale(1.01);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.abt_btn{
  transition: 0.4s ease;
}
.abt_btn:hover{
  color:#fff;
}



/* CTA Section */
.cta-section {
  position: relative; /* ensures it doesn't overlap */
  z-index: 1;         /* keeps it below navbar */
  /* background-image: url('assets/images/heroimg.avif'); */
  background-color: #202e4b;
  /* margin-bottom: 0.38px; */
  /* background-repeat: no-repeat; */
  /* background-size: 100%; */
  padding-top: 4rem;  /* ensure spacing */
  padding-bottom: 4rem;
}

.cta-btn {
  background: #f97316; /* orange */
  color: #fff;
  border: 2px solid transparent;
}

.cta-btn:hover {
  background: transparent;
  border-color: #f97316;
  color: #f97316;
  transform: translateY(-2px);
}




/* Footer Section */
.footer-section {
  font-family: 'Poppins', sans-serif;
}

.footer-section h3 {
  color: #f97316; /* orange */
}

.map-container iframe {
  filter: grayscale(20%) contrast(110%);
}

.social-link {
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 18px;
}

/* Facebook */
.social-link.facebook {
  background: linear-gradient(135deg, #1877F2, #145dbf);
}
.social-link.facebook:hover {
  transform: translateY(-3px) scale(1.1);
}

/* Instagram */
.social-link.instagram {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
}
.social-link.instagram:hover {
  transform: translateY(-3px) scale(1.1);
}



/* LinkedIn */
.social-link.linkedin {
  background: linear-gradient(135deg, #0A66C2, #004182);
}
.social-link.linkedin:hover {
  transform: translateY(-3px) scale(1.1);
}



