:root{
    --brown:#7a1f1f;
    --gold:#d4af37;
    --off-white:#fafafa;
    --charcoal:#2c2c2c;
    --light-gold:#f4eBc8;
    --transition: all 0.3s ease;
   
  --light-bg: #fffaf3;
}

body{
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6{
    font-family:'Playfair Display', serif;
    font-weight: 600;
}

.text-gold{
    color: var(--gold) !important;
}
.bg-brown{
    background-color: var(--brown);
}

.btn-primary{
    background-color: var(--brown);
    border-color: var(--brown);
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary:hover{
    background-color: transparent;
    color: var(--brown);
    border-color: var(--brown) !important;
    box-shadow: 0 0 15px rgba(122, 31, 31, 0.4);
    transform: translateY(-2px);
}

.btn-outline-primary{
    color: var(--brown);
    border-color: var(--brown);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-primary:hover{
    background-color: var(--brown);
    color:white;
    box-shadow: 0 0 15px rgba(122, 31, 31, 0.4);
    transform: translateY(-2px);
    border-color: var(--brown);
}



/* ----------------------------------------------
   BASE NAVBAR STYLING
---------------------------------------------- */
.custom-navbar {
  padding: 20px 0;
  transition: 0.4s ease;
  z-index: 1000;
}

/* When scrolled */
.custom-navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

/* Logo */
.nav-logo {
  height: 65px;
  transition: 0.3s ease;
}
.custom-navbar.scrolled .nav-logo {
  height: 55px;
}

/* ----------------------------------------------
   NAV LINKS
---------------------------------------------- */
.nav-link {
  color: #fff !important;
  font-size: 18px;
  font-weight: 700;
  margin-left: 10px;
  padding: 10px 15px;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  transition: 0.3s ease;
}

/* Hover underline */
.nav-link:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 0;
  left: 0;
  bottom: 0;
  background: #d4a017;
  transition: 0.3s ease;
}
.nav-link:hover:after {
  width: 100%;
}
.nav-link:hover {
  transform: translateY(-2px);
  color: #ffd700 !important;
}

/* ----------------------------------------------
   LANGUAGE BUTTON
---------------------------------------------- */
.lang-btn {
  background: #d4a017;
  color: white;
  padding: 8px 18px;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  transition: 0.3s;
}
.lang-btn:hover {
  background: #b78a13;
}

/* ----------------------------------------------
   MOBILE RESPONSIVE DESIGN
---------------------------------------------- */
@media (max-width: 992px) {
  .nav-link {
    text-align: center;
    margin: 10px 0;
    font-size: 17px;
  }

  .custom-navbar {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
  }

  .navbar-toggler {
    border: none !important;
    outline: none !important;
  }

  .nav-logo {
    height: 55px;
  }

  .lang-btn {
    width: 100%;
    margin-top: 10px;
  }
}
.lang-toggle-mobile {
  display: none;
  background: #e63946;
  color: white;
  border: none;
  padding: 8px 14px;
  margin-left: 10px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}


/* Mobile show */
@media (max-width: 768px) {
  .lang-toggle-mobile {
    display: block;
  }
}

/* Even smaller screens */
@media (max-width: 480px) {
  .nav-logo {
    height: 50px;
  }
}


/* mobile actions wrapper (keeps toggle and mobile language aligned) */
.mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

/* show on small screens */
@media (max-width: 991px) {
  .mobile-actions {
    display: flex;
  }

  /* hide desktop lang button when mobile actions shown */
  .d-lg-block {
    display: none !important;
  }
}

.hero-section {
  position: relative;
  height: 75vh; /* Balanced height */
  background: url("image/about_6.png") center center/cover no-repeat;
  display: flex;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-section .container {
  z-index: 2;
}

.hero-title,
.lead,
.btn {
  text-shadow: none !important;
}

.btn-primary {
  background-color: #d4a017;
  border: none;
}

.btn-primary:hover {
  background-color: #b3880e;
}

@media (max-width: 768px) {
  .hero-section {
    height: 60vh; /* Smaller for mobile */
  }
}


/* about */

.section-title {
  position: relative;
  margin-bottom: 60px;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brown);
  letter-spacing: 1px;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background: var(--gold);
  bottom: -15px;
  left: 0;
  border-radius: 3px;
}


.about-content {
  padding: 100px 0;
  background-color: #E7E5DC;
}

#about h3 {
  color: var(--brown);
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 20px;
  padding-left: 18px;
  position: relative;
}

#about h3::before {
  content: "";
  width: 6px;
  height: 100%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 4px;
}


#about p {
  color: #444;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 18px;
}


.rest-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 3px solid transparent;
  background-clip: padding-box;
  position: relative;
  transition: var(--transition);
}

.rest-image img {
  transition: var(--transition);
}

.rest-image:hover img {
  transform: scale(1.04);
}


.view-menu-btn {
  background-color: var(--brown);
  border-color: var(--brown);
  color: #fff;
  font-size: 1.1rem;
  padding: 12px 28px;
  border-radius: 7px;
  margin-top: 15px;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(139, 69, 19, 0.25);
}

.view-menu-btn:hover {
  background-color: var(--brown-dark);
  border-color: var(--brown-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 18px rgba(110, 54, 16, 0.35);
}


.feature-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  transform: rotate(15deg) scale(1.1);
}
/* =========================
   MENU SECTION (UPDATED)
========================= */
/* ---------------- MENU SECTION ---------------- */

.menu-section {
  padding: 60px 0;
}

.menu-title {
  font-size: 2rem;
  color: #b45309;
  font-weight: bold;
  margin-bottom: 30px;
}

/* Category Buttons */
.categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.categories button {
  padding: 9px 12px;
  background-color: #facc15;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-size: 13px;
}

.categories button:hover,
.categories button.active {
  background-color: #b45309;
  color: white;
}
.img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 300px;               
  box-shadow: rgba(0,0,0,0.2) 0px 4px 12px;
  transition: 0.3s;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;          
  background: #fff;          
  padding: 10px;                
  transition: 0.4s ease;
}

.img-wrap:hover img {
  transform: scale(1.05);
}

.img-wrap:hover {
  box-shadow: rgba(0,0,0,0.35) 0px 8px 18px;
}

/* Info box inside image */

.img-info {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  opacity: 1 !important;   
  transform: translateY(0); 
}

.gallery_item {
  transition: all 0.25s ease-in-out;
}




/* tackout menu*/
.take-out{
  padding: 100px 0;
}
.hero-wrapper {
      height: 350px;
   
      position: relative;
      overflow: hidden;
      background: linear-gradient(to right, #7c3aed, #2563eb);
    }

    .hero-bg-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 1;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.5);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
    }

    .btn-custom {
      background: #facc15;
      color: #111;
      padding: 10px 28px;
      border-radius: 50px;
      font-weight: 600;
      transition: .3s ease;
    }

    .btn-custom:hover {
      background: #fde047;
      transform: scale(1.05);
      box-shadow: 0 6px 18px rgba(255, 255, 0, 0.3);
    }

/*contact-footer*/

.contact-section{
  padding: 100px 0;
}
.contact-info-item{
  display: flex;
  align-items: center;
  margin-bottom: 25px;

}
.contact-icon{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--brown);
  font-size: 1.2rem;
}

.map-container{
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}


 footer {
  background-color: var(--charcoal);
  color: white;
  padding: 60px 0 30px;
}

/* Footer Logo */
.footer-logo {
  width: 140px;
  height: auto;
}

.social-icon {
  width: 40px;
  height: 40px;
  color: #c43636;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--gold);
  transform: translateY(-5px) rotate(5deg);
}

a {
  text-decoration: none;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  footer {
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }

  .social-icons {
    justify-content: center;
  }
}



/*back to top*/
 .back-to-top-btn{
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #7a1f1f;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;


 }
 .back-to-top-btn.active{
  opacity: 1;
  visibility: visible;

 }
  
 /* Popup Overlay */
/*.popup-overlay {*/
/*  position: fixed;*/
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100%;*/
/*  background: rgba(0, 0, 0, 0.6);*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  z-index: 9999;*/
/*}*/


/*.popup-box {*/
/*  background: #fff;*/
/*  padding: 30px 25px;*/
/*  border-radius: 12px;*/
/*  text-align: center;*/
/*  max-width: 420px;*/
/*  width: 90%;*/
/*  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);*/
/*  animation: popupFade 0.4s ease;*/
/*}*/

/*.popup-box h2 {*/
/*  margin-bottom: 15px;*/
/*  color: #d4a017;*/
/*}*/

/*.popup-box p {*/
/*  font-size: 16px;*/
/*  line-height: 1.6;*/
/*  color: #333;*/
/*}*/


/*.popup-btn {*/
/*  margin-top: 20px;*/
/*  padding: 10px 25px;*/
/*  border: none;*/
/*  background: #d4a017;*/
/*  color: #fff;*/
/*  font-size: 15px;*/
/*  border-radius: 6px;*/
/*  cursor: pointer;*/
/*}*/

/*.popup-btn:hover {*/
/*  background: #b89112;*/
/*}*/


/*@keyframes popupFade {*/
/*  from {*/
/*    transform: scale(0.8);*/
/*    opacity: 0;*/
/*  }*/
/*  to {*/
/*    transform: scale(1);*/
/*    opacity: 1;*/
/*  }*/
/*}*/




  