html {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

    body {
      font-family: 'Inter', sans-serif;
      scroll-behavior: smooth;
      margin: 0;
      padding: 0;
    }

    h1,
    h2,
    h3,
    .serif {
      font-family: 'Playfair Display', serif;
    }

    ::selection {
      background: #78350f;
      color: white;
    }
    
    .menu-img {
      transition: transform .4s ease;
    }

    .menu-card:hover .menu-img {
      transform: scale(1.1);
    }
/*
    #scrollTopBtn {
      position: fixed;
      bottom: 20px;           
  right: 20px;            
  width: 40px;             
  height: 40px;           
  display: none;
  background: #78350f;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  z-index: 50;
    }


#scrollTopBtn:hover {
  background: #5a260a;
}*/

 /* Toast hidden by default */
  .toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #f59e0b; /* amber */
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(100px);
    pointer-events: none;
    transition: all 0.5s ease-in-out;
    z-index: 50;
  }
.toast.show {
  opacity: 1;
  transform: translateY(0);
}
  /* Show toast and auto-hide */
  #success:target {
    animation: toastShow 2s forwards;
  }

  @keyframes toastShow {
    0% { opacity: 0; transform: translateY(100px); }
    10% { opacity: 1; transform: translateY(0); }
    80% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(100px); }
  }
/* Add this inside your <style> */
.menu-btn-active {
  background-color: #5a260a; /* darker shade for highlight */
  border: 2px solid #78350f;
}

/* base button style */
.menu-filter-btn {
  background-color: #78350f;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  transition: all 0.2s;
}

/* active button style */
.menu-filter-btn.menu-btn-active {
  background-color: #120101; /* highlight color */
  font-weight: bold;
}

#navbar {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.nav-link {
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  transition: all 0.2s;
}

.nav-link-active {
  background-color: #78350f;
  color: white !important;
  font-weight: 700;
  border-radius: 0.25rem;
  padding: 0.5rem 1rem;
  
}
.mytitle{
   color: #3e1407;
}
section {
  scroll-margin-top: 90px;
}
@media (max-width: 768px) {
  #navbar nav {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.menu-filter-btn {
  font-size: 0.8rem;
}
@media (max-width: 640px) {
  .filter-wrapper {
    overflow-x: auto;
    white-space: nowrap;
  }

  .filter-wrapper button {
    display: inline-block;
  }
}
#scrollTopBtn {
  /*bottom: 20px;
  right: 20px;
  padding: 8px 12px;*/
  display:none;
}
#contact p {
  color: #d4d4d4;
}
@media (min-width: 768px) and (max-width: 900px) {

  section {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }

  .menu-card h3 {
    font-size: 1.1rem;
  }

  .menu-card p {
    font-size: 0.85rem;
  }

}
.filter-btn {
  padding: 10px 14px;
  background: #78350f;
  border-radius: 8px;
  text-align: left;
  transition: 0.3s;
}

.filter-btn:hover {
  background: #5a260a;
}
.seo-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fffaf5, #ffffff);
  text-align: center;
}

.seo-container {
  max-width: 900px;
  margin: auto;
}

.seo-badge {
  display: inline-block;
  background: #78350f;
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.seo-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  color: #3b2f2f;
}

.seo-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.seo-highlight {
  font-weight: 500;
  color: #333;
}

.seo-tags {
  margin-top: 25px;
}

.seo-tags span {
  display: inline-block;
  background: #f3e8dc;
  color: #78350f;
  padding: 8px 14px;
  margin: 6px;
  border-radius: 30px;
  font-size: 13px;
}
/* ---------------------- Text Menu Button Wrapper ---------------------- */
/* Wrapper - centered */
.text-menu-toggle-wrapper {
  display: flex;
  justify-content: center;   /* center horizontally */
  margin: 40px 0;            /* spacing above & below */
}

/* Normal button */
.text-menu-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;         /* normal size */
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid #d4af37;
  background: black;
  color: #d4af37;
  white-space: nowrap;       /* force single line */
  transition: 0.3s ease;
}

.text-menu-btn:hover {
  background: #d4af37;
  color: black;
}

/* Keep icon visible on large screens (optional) */
.text-menu-btn svg {
  width: 18px;
  height: 18px;
}
/* ---------------------- Small screens / mobile / portrait ---------------------- */
@media (max-width: 767px) {
  .text-menu-toggle-wrapper {
    position: fixed;
    bottom: 106px;    /* push button higher above filter button */
    right: 24px;      /* slightly outside screen on right */
    z-index: 100;
    display: flex;
    justify-content: flex-end;
  }

  .text-menu-btn {
    padding: 0.5rem;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
    background: black;
    color: #d4af37;
    border: 1px solid #d4af37;
  }

  .text-menu-btn span {
    display: none;   /* hide text on small screens */
  }

  .text-menu-btn svg {
    display: block;
    width: 20px;
    height: 20px;
  }
}

/* ---------------------- Text Menu Container (keep existing styling) ---------------------- */
.text-menu-container {
  display: grid;
  gap: 40px;
  margin-top: 40px;
  padding: 40px 20px;
  border-top: 1px solid #d4af37;
  background: #0d0d0d;
  grid-template-columns: 1fr; /* default single column */
}

/* Medium screens → 2 columns */
@media (min-width: 768px) {
  .text-menu-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large screens → 3 columns */
@media (min-width: 1200px) {
  .text-menu-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Categories */
.text-category {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.text-category h3 {
  font-family: 'Playfair Display', serif;
  color: #d4af37;
  font-size: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding-bottom: 10px;
}

/* Menu items */
.text-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  color: #f5f5f5;
  border-bottom: 1px dashed rgba(212,175,55,0.2);
  font-size: 15px;
}

.text-item span:last-child {
  color: #d4af37;
  font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .text-menu-container {
    grid-template-columns: 1fr; /* single column */
    margin-top: 60px;
    padding: 20px;
  }

  .text-category h3 {
    font-size: 18px;
  }

  .text-item {
    font-size: 14px;
  }
}
/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomEffect 12s ease-in-out infinite alternate;
}

/* Gradient Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  z-index: 5;
}

/* Text Content */
.content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  max-width: 600px;
  z-index: 10;
  animation: fadeUp 1.5s ease;
}

.content h1 {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-btn {
  background: #78350f;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #5a260a;
}

/* Arrows */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 20;
}

.nav-arrow.left { left: 30px; }
.nav-arrow.right { right: 30px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  opacity: 0.5;
  border: none;
  cursor: pointer;
}

.dots button.active {
  opacity: 1;
}

/* Animations */
@keyframes zoomEffect {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media(max-width:768px){
  .content {
    left: 5%;
    right: 5%;
    bottom: 15%;
  }

  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }
}