html {
  scroll-behavior: smooth;
}
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}

#preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(59, 43, 39, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.glass-loader {
  padding: 2rem 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  color: #f2e0d4;
}

.loader-text {
  font-size: 1rem;
  letter-spacing: 0.5px;
  color: #f2e0d4;
  font-family: 'Georgia', serif;
}

.fas.fa-fire-flame-curved {
  animation: pulseFire 1.5s ease-in-out infinite;
}

@keyframes pulseFire {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
}

/* BLUR SITE CONTENT WHILE LOADING */
#site-content.loading {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #F3E9DC;
  color: #5A3E36;
}

.site-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #8B5E3C;
}

.custom-navbar {
  background-color: #F3E9DC;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.nav-link-custom {
  color: #5A3E36;
  font-weight: 500;
  margin-left: 1rem;
  transition: color 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler {
  border:none !important;
}

/* Nav link background and color on hover */
.nav-link-custom:hover,
.nav-item.dropdown:hover > .nav-link-custom {
  background-color: #5A3E36;
  color: #ffffff;
  border-radius: 0.5rem;
}

/* Dropdown item hover */
.custom-dropdown .dropdown-item:hover {
  background-color: #5A3E36;
  color: #ffffff;
}

/* Dropdown styling */
.custom-dropdown {
  background-color: #F3E9DC;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.custom-dropdown .dropdown-item {
  color: #5A3E36;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  transition: background-color 0.3s ease;
}


.hero-section {
  height: 100vh;
  background-image: url('../images/hero-bg.jpg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(90, 62, 54, 0.6); /* Dark brown overlay */
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #f5f0e9;
}

.btn-hero {
  background-color: #8B5E3C;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-hero:hover {
  background-color: #5A3E36;
  color: #fff;
}

.about-alt-section {
  min-height: 90vh;
  background: url('../images/about-bg.jpg') center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.about-alt-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(90, 62, 54, 0.8); /* stronger overlay */
  z-index: 0;
}

.about-alt-section .container {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.about-title-alt {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  color: #fff;
}

.about-text-alt {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #f5eae1;
}

.about-text-alt-small {
  font-size: 1.05rem;
  color: #f5eae1;
}

.menu-section {
  background-color: #F3E9DC;
  color: #5A3E36;
}

.menu-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #8B5E3C;
}

.menu-subtitle {
  font-size: 1.1rem;
  color: #7a665c;
}

.menu-card {
  background-color: #fff9f4;
  border-radius: 1rem;
  border-left: 6px solid #8B5E3C;
  transition: transform 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
}

.menu-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.dish-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #5A3E36;
}

.dish-desc {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #7a665c;
}

.dish-price {
  font-weight: bold;
  font-size: 1rem;
  color: #A2674A;
}

.filter-btn.active {
  background-color: #8B5E3C;
  color: #fff;
  border-color: #8B5E3C;
}


.contact-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 20, 10, 0.6); /* rustic dark overlay */
  z-index: 0;
}

.contact-section .container {
  position: relative;
  z-index: 2;
}

.contact-section {
  background: url('../images/contact-bg.jpg') no-repeat center center/cover;
  backdrop-filter: blur(5px);
  position: relative;
  z-index: 1;
} 

.contact-title {
    color: #fff;
    
}

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
}

.contact-form .form-control::placeholder {
  color: #ddd;
}

.contact-form .form-label {
  font-weight: 500;
  color: #f8f8f8;
}

.contact-form .btn-primary {
  background-color: #8B5E3C;
  border-color: #8B5E3C;
}

.contact-form .btn-primary:hover {
  background-color: #a66a45;
  border-color: #a66a45;
}

.social-icons a {
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #F2CBA0;
}

.footer {
  background-color: #3b2b27;
  color: #f2e0d4;
  font-size: 0.95rem;
}
.footer-heading {
  color: #fcebd0;
  font-weight: 600;
}
.footer-text {
  margin-bottom: .5rem;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: .4rem;
}
.footer-links a {
  color: #f2e0d4;
  text-decoration: none;
  transition: color .3s;
}
.footer-links a:hover {
  color: #f2cba0;
}
.footer-social i {
  font-size: 1.2rem;
  color: #f2e0d4;
  margin-right: .8rem;
  transition: color .3s;
}
.footer-social i:hover {
  color: #f2cba0;
}
.newsletter-form .form-control {
  border-radius: .4rem 0 0 .4rem;
  border: 1px solid #d9bba5;
}
.newsletter-form .btn-primary {
  border-radius: 0 .4rem .4rem 0;
  background-color: #8B5E3C;
  border-color: #8B5E3C;
  color: #fff;
}
.newsletter-form .btn-primary:hover {
  background-color: #a66a45;
  border-color: #a66a45;
}

/* Glass-style modal content */
.glass-modal {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #f2e0d4;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  padding: 1.5rem;
}

/* Modal text */
.glass-modal label,
.glass-modal input,
.glass-modal h5,
.glass-modal p {
  color: #f2e0d4;
}

/* Input fields inside modal */
.glass-modal .form-control {
  background-color: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  border-radius: 0.5rem;
}

.glass-modal .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Close button */
.glass-modal .btn-close {
  filter: brightness(0) invert(1);
}

.btn-outline-light {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;

}