
:root {
  --primary: #8b1d18;
  --gold: #d4af37;
  --dark: #1c1c1c;
  --light: #f8f5f2;
}



body {
  font-family: 'Poppins', sans-serif;
  background: var(--light);
  color: #333;
}
/* ===== FIX HORIZONTAL SCROLL ===== */
body {
  overflow-x: hidden;
}


/* Fix anchor scroll position for fixed navbar */
section {
  scroll-margin-top: 110px; /* adjust based on navbar height */
}


/*  */
/* ================= NAVBAR BASE ================= */
    .kannappa-navbar {
      background: rgba(255, 255, 255, 0.99);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 0;
      height: 96px;                          /* ✅ Taller */
      border-bottom: 1px solid rgba(197, 157, 95, 0.20);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
      z-index: 1000;
      /* ✅ NO scroll height transition — height stays fixed */
    }

    /* Gold accent line at bottom center */
    .kannappa-navbar::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 64px;
      height: 2px;
      background: linear-gradient(90deg, transparent, #c59d5f, transparent);
      opacity: 0.6;
    }

    /* ================= CONTAINER ================= */
    .kannappa-navbar .container {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* ================= LOGO ================= */
    .navbar-brand {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      line-height: 0;
      z-index: 2;
    }

    .kannappa-logo {
      height: 76px;                          /* ✅ Larger, clearer logo */
      width: auto;
      object-fit: contain;
      display: block;
      /* ✅ No shrink on scroll */
    }

    .kannappa-logo:hover {
      opacity: 0.88;
    }

    /* ================= DESKTOP NAV LINKS ================= */
    .nav-left,
    .nav-right {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .kannappa-navbar .nav-link {
      font-family: 'Poppins', sans-serif;
      font-size: 13.5px;                     /* ✅ Bigger font */
      font-weight: 500;
      color: #3a3028;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      padding: 10px 14px;
      position: relative;
      transition: color 0.25s ease;
      text-decoration: none;
      white-space: nowrap;
      background: none;
      border: none;
    }

    /* Center-expanding underline */
    .kannappa-navbar .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 14px;
      right: 14px;
      height: 1.5px;
      background: #c59d5f;
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .kannappa-navbar .nav-link:hover,
    .kannappa-navbar .nav-link:focus {
      color: #c59d5f;
    }

    .kannappa-navbar .nav-link:hover::after,
    .kannappa-navbar .nav-link:focus::after {
      transform: scaleX(1);
    }

    /* ================= DROPDOWN — DESKTOP ================= */
    .nav-item.dropdown {
      position: relative;
    }

    .kannappa-navbar .dropdown-toggle {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
    }

    /* Override Bootstrap default arrow */
    .kannappa-navbar .dropdown-toggle::after {
      display: inline-block;
      content: '';
      width: 6px;
      height: 6px;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      border-top: none;
      border-left: none;
      border-radius: 0;
      background: none;
      transform: rotate(45deg);
      transition: transform 0.25s ease;
      margin-left: 0;
      flex-shrink: 0;
      vertical-align: unset;
      position: relative;
      top: -1px;
    }

    .nav-item.dropdown:hover > .nav-link.dropdown-toggle::after {
      transform: rotate(225deg);
      top: 2px;
    }

    /* Dropdown panel */
    .dropdown-menu {
      border: 1px solid rgba(197, 157, 95, 0.22);
      border-radius: 4px;
      padding: 6px 0;
      margin-top: 0;
      min-width: 230px;
      background: #fff;
      box-shadow:
        0 20px 48px rgba(0, 0, 0, 0.10),
        0 4px 12px rgba(197, 157, 95, 0.08),
        inset 0 1px 0 rgba(197, 157, 95, 0.15);
    }

    /* Arrow tip */
    .dropdown-menu::before {
      content: '';
      position: absolute;
      top: -6px;
      left: 28px;
      width: 10px;
      height: 10px;
      background: #fff;
      border-left: 1px solid rgba(197, 157, 95, 0.2);
      border-top: 1px solid rgba(197, 157, 95, 0.2);
      transform: rotate(45deg);
    }

    /* Dropdown items */
    .dropdown-item {
      font-family: 'Poppins', sans-serif;
      font-size: 12.5px;
      font-weight: 400;
      letter-spacing: 0.5px;
      color: #3a3028;
      padding: 11px 20px 11px 28px;
      transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
      position: relative;
    }

    .dropdown-item::before {
      content: '';
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%) scale(0);
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #c59d5f;
      transition: transform 0.2s ease;
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
      background: #fdf8f0;
      color: #b8892e;
      padding-left: 34px;
    }

    .dropdown-item:hover::before,
    .dropdown-item:focus::before {
      transform: translateY(-50%) scale(1);
    }

    /* ================= HOVER DROPDOWN (DESKTOP ONLY) ================= */
    @media (min-width: 992px) {
      .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
        pointer-events: none;
      }

      .nav-item.dropdown:hover .dropdown-menu,
      .nav-item.dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
      }
    }

    /* ================= MOBILE TOGGLE ================= */
    .navbar-toggler {
      border: none;
      padding: 6px;
      border-radius: 4px;
      transition: background 0.2s ease;
      z-index: 3;
    }

    .navbar-toggler:hover {
      background: rgba(197, 157, 95, 0.08);
    }

    .navbar-toggler:focus {
      box-shadow: none;
      outline: none;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23c59d5f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      width: 24px;
      height: 24px;
    }

    /* ================= MOBILE MENU ================= */
    .mobile-menu {
      background: #fff;
      border-top: 1px solid rgba(197, 157, 95, 0.15);
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
      width: 100%;
    }

    .mobile-menu .navbar-nav {
      padding: 0;
      margin: 0;
      width: 100%;
    }

    .mobile-menu .nav-item {
      width: 100%;
    }

    .mobile-menu .nav-item > .nav-link {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;                       /* ✅ Bigger mobile font */
      font-weight: 500;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: #3a3028;
      padding: 17px 24px;                    /* ✅ More tap area */
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      width: 100%;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .mobile-menu .nav-item > .nav-link:hover {
      color: #c59d5f;
      background: rgba(197, 157, 95, 0.04);
    }

    /* Submenu */
    #banquetSubMenu {
      background: #fdf8f0;
      border-top: 1px solid rgba(197, 157, 95, 0.12);
      border-bottom: 1px solid rgba(197, 157, 95, 0.12);
      width: 100%;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    #banquetSubMenu li {
      width: 100%;
      border-bottom: 1px solid rgba(197, 157, 95, 0.08);
    }

    #banquetSubMenu li:last-child {
      border-bottom: none;
    }

    #banquetSubMenu .nav-link {
      font-family: 'Poppins', sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.6px;
      color: #6b5c42;
      padding: 14px 24px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: color 0.2s ease, background 0.2s ease;
      text-transform: uppercase;
    }

    #banquetSubMenu .nav-link::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #c59d5f;
      opacity: 0.7;
      flex-shrink: 0;
    }

    #banquetSubMenu .nav-link::after {
      display: none;
    }

    #banquetSubMenu .nav-link:hover {
      color: #c59d5f;
      background: rgba(197, 157, 95, 0.06);
    }

    /* ================= MOBILE LAYOUT ================= */
    @media (max-width: 991px) {
      .kannappa-navbar {
        height: 80px;                        /* ✅ Good height on tablet */
      }

      .kannappa-logo {
        height: 62px;                        /* ✅ Clear, not cramped */
      }

      .navbar-brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }

      /* Full-width dropdown below navbar */
      .kannappa-navbar > .collapse,
      .kannappa-navbar > .collapsing {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 999;
      }
    }

    @media (max-width: 480px) {
      .kannappa-navbar {
        height: 72px;                        /* ✅ Compact but clear */
      }

      .kannappa-logo {
        height: 54px;                        /* ✅ Logo still readable */
      }

      .kannappa-navbar > .collapse,
      .kannappa-navbar > .collapsing {
        top: 72px;
      }

      .mobile-menu .nav-item > .nav-link {
        font-size: 13px;
        padding: 15px 20px;
      }
    }

    @media (max-width: 360px) {
      .kannappa-navbar {
        height: 66px;
      }

      .kannappa-logo {
        height: 48px;
      }

      .kannappa-navbar > .collapse,
      .kannappa-navbar > .collapsing {
        top: 66px;
      }
    }

    /* ================= COLLAPSE CHEVRON ================= */
    .mobile-menu .nav-item > a[data-bs-toggle="collapse"] {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .collapse-icon {
      display: inline-block;
      width: 7px;
      height: 7px;
      border-right: 2px solid #3a3028;
      border-bottom: 2px solid #3a3028;
      border-top: none;
      border-left: none;
      transform: rotate(45deg);
      transition: transform 0.25s ease, border-color 0.25s ease;
      flex-shrink: 0;
      position: relative;
      top: -2px;
    }

    a[aria-expanded="true"] .collapse-icon {
      transform: rotate(225deg);
      top: 2px;
      border-color: #c59d5f;
    }

    .mobile-menu .nav-item > a[data-bs-toggle="collapse"]:hover .collapse-icon {
      border-color: #c59d5f;
    }
/* ================= HERO ================= */

.hero{
  position:relative;
  height:100vh;
  min-height:650px;
  overflow:hidden;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

/* Slider Container */

.hero-slider{
  position:absolute;
  width:100%;
  height:100%;
  top:0;
  left:0;
  z-index:1;
}

/* Each Slide */

.slide{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  animation:fade 20s infinite;
  opacity:0;
}

/* Slides */

.slide1{
  background-image:url('../images/briyani.png');
  animation-delay:0s;
}

.slide2{
  background-image:url('../images/chettinad-chicken.webp');
  animation-delay:5s;
}

.slide3{
  background-image:url('../images/Chettinad-Spice.jpg');
  animation-delay:10s;
}

.slide4{
  background-image:url('../images/briyani.png');
  animation-delay:15s;
}

/* Fade Animation */

@keyframes fade{

  0%{opacity:0;}
  5%{opacity:1;}
  25%{opacity:1;}
  30%{opacity:0;}
  100%{opacity:0;}

}

/* Overlay */

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
  z-index:2;
}

/* Content */

.hero-content{
  position:relative;
  z-index:3;
  padding:0 20px;
}

/* Heading */

.hero h1{
  font-family:'Playfair Display',serif;
  font-size:3.5rem;
  line-height:1.2;
  margin-bottom:15px;
}

/* Paragraph */

.hero p{
  font-size:18px;
  max-width:600px;
  margin:auto;
  line-height:1.7;
}

/* Button */

.hero .btn{
  background:var(--gold);
  color:#000;
  border:none;
  padding:12px 28px;
  font-size:16px;
  border-radius:6px;
  transition:all 0.3s ease;
}

.hero .btn:hover{
  background:#d4a24c;
  color:#000;
}

/* ================= TABLET ================= */

@media (max-width:992px){

  .hero{
    height:80vh;
    min-height:600px;
    padding-top:80px;
  }

  .hero h1{
    font-size:2.6rem;
  }

  .hero p{
    font-size:16px;
    max-width:500px;
  }

}

/* ================= MOBILE ================= */

@media (max-width:576px){

  .hero{
    height:auto;
    min-height:70vh;
    padding:120px 20px 80px;
  }

  .hero h1{
    font-size:2rem;
    line-height:1.3;
  }

  .hero p{
    font-size:15px;
    max-width:100%;
  }

  .hero .btn{
    font-size:15px;
    padding:10px 22px;
  }

  /* Better image focus for mobile */

  .slide{
    background-position:center;
  }

}
/* Section */

.kannappa-legacy-section{
  padding:90px 0;
  background:linear-gradient(180deg,#ffffff 0%,#fff6f1 100%);
}

/* Badge */

.kannappa-badge{
  display:inline-block;
  background:#fde7dd;
  color:#c15a2c;
  font-weight:600;
  padding:6px 20px;
  border-radius:30px;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:15px;
}

/* Title */

.kannappa-title{
  font-size:42px;
  font-weight:700;
  color:#2b1c14;
  margin-bottom:15px;
}

/* Divider */

.kannappa-divider{
  width:70px;
  height:3px;
  background:#c15a2c;
  margin:0 auto 20px;
  border-radius:3px;
}

/* Intro */

.kannappa-intro{
  font-size:16px;
  line-height:1.8;
  color:#5a4a42;
  margin-bottom:50px;
}

/* Content text */

.kannappa-content p{
  font-size:16px;
  line-height:1.8;
  color:#5a4a42;
  margin-bottom:18px;
}

.kannappa-content strong{
  color:#b23b2b;
}

/* Image */

/* Image */

.kannappa-image{
  width:100%;
}

.kannappa-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  object-fit:cover;
}
/* Responsive */

@media(max-width:992px){

  .kannappa-title{
    font-size:34px;
  }

  .kannappa-intro{
    font-size:16px;
  }

}

@media(max-width:576px){

  .kannappa-legacy-section{
    padding:60px 0;
  }

  .kannappa-title{
    font-size:26px;
  }

  /* Image responsive */

  .kannappa-image{
    margin-top:25px;
  }

  .kannappa-image img{
    border-radius:10px;
  }

}

/* section */
.kannappa-menu-explore {
    padding: 30px 0;
    background: #fffaf6;
  }
  
  /* Menu Card */
  .kannappa-menu-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    cursor: pointer;
    height: 100%;
  }
  
  /* Menu Image */
  .menu-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 14px;
  }
  
  /* Title */
  .kannappa-menu-card h6 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #2a1a12;
  }
  
  /* Hover Effect */
  .kannappa-menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(182, 58, 29, 0.25);
  }
  
  .kannappa-menu-card:hover h6 {
    color: #b63a1d;
  }

  /* Remove underline from links */

.menu-link{
  text-decoration:none;
  color:inherit;
  display:block;
  }
  
  /* View Menu Button */
  
  .view-menu-btn{
  background:#8b1d18;
  color:white;
  padding:14px 34px;
  border-radius:40px;
  font-weight:600;
  font-size:16px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  transition:all .3s ease;
  }
  
  .view-menu-btn:hover{
  background:#b63a1d;
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(182,58,29,0.25);
  color:white;
  }
  
/* Badge */
.kannappa-why-badge {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #ffb703;
  background: rgba(255, 183, 3, 0.15);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* Title */
.kannappa-why-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
}

.kannappa-why-title::after {
  content: "";
  width: 70px;
  height: 3px;
  background: #ffb703;
  display: block;
  margin-top: 14px;
}

/* List */
.kannappa-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kannappa-why-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  margin-bottom: 16px;
  color: #e0e0e0;
}

/* Icons */
.why-icon {
  width: 38px;
  height: 38px;
  background: rgba(255, 183, 3, 0.15);
  color: #ffb703;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}

/* Image */
.kannappa-why-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.kannappa-why-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.kannappa-why-image:hover img {
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .kannappa-why-title {
    font-size: 32px;
  }

  .kannappa-why-image img {
    height: 300px;
  }
}


/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
}

/* MENU CARDS */
.menu-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: .3s;
}
.menu-card:hover {
  transform: translateY(-10px);
}
.menu-card img {
  height: 220px;
  object-fit: cover;
}
.menu-card h5 {
  font-family: 'Playfair Display', serif;
}

.ambience-img {
  position: relative;
  width: 100%;
  height: 260px;          /* SAME HEIGHT */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.ambience-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* CROPS, NOT STRETCH */
  transition: transform 0.5s ease;
}

.ambience-img:hover img {
  transform: scale(1.08);
}

/* Mobile */
@media (max-width: 768px) {
  .ambience-img {
    height: 220px;
  }
}


/* OUTLETS */
.outlet-box {
  background:#fff;
  padding:25px;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
  cursor:pointer;
  transition:0.3s ease;
}

.outlet-box:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 35px rgba(0,0,0,.15);
}
/* CTA */
.cta {
  background: linear-gradient(rgba(0,0,0,.7),rgba(0,0,0,.7)),
              url('https://images.unsplash.com/photo-1526318472351-c75fcf070305') center/cover;
  color:#fff;
  padding:80px 0;
}

/* Read More Button */
.cta-btn{
  display:inline-block;
  padding:12px 30px;
  background:#d14006;
  color:#fff;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:.3s ease;
}

.cta-btn:hover{
  background:#ffffff;
  color:#000;
  transform:translateY(-3px);
}
/* FOOTER */
/* FOOTER */
.kannappa-footer {
  background: #1b1b1b;
  color: #eaeaea;
  padding: 70px 0 30px;
  font-size: 14px;
}

.footer-brand {
  font-size: 26px;
  font-weight: 700;
  color: #ffb703;
}

.footer-tagline {
  color: #cfcfcf;
  margin-top: 10px;
}

.footer-note {
  margin-top: 12px;
  font-style: italic;
  color: #bdbdbd;
}

.footer-title {
  font-size: 18px;
  color: #ffb703;
  margin-bottom: 15px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-list span {
  color: #bdbdbd;
  font-size: 13px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 30px;
}

.footer-bottom-note{
  color:#bdbdbd;
  font-size:13px;
  letter-spacing:0.5px;
}

/* Social Icons */
.footer-socials a{
  display:inline-block;
  margin-right:12px;
  font-size:20px;
  transition:0.3s ease;
}

.footer-socials a i.bi-facebook{
  color:#1877F2;
}

.footer-socials a i.bi-instagram{
  color:#E4405F;
}

.footer-socials a:hover{
  transform:translateY(-3px);
  opacity:0.85;
}

.footer-email{
  color:#cfcfcf;
  font-size:14px;
}

.footer-email a{
  color:#cfcfcf;
  text-decoration:none;
  margin-left:6px;
}

.footer-email a:hover{
  color:#ffb703;
}
/*  */

/* ===== SECTION ===== */
.dish-scroll-section {
  background: #000;
  padding: 60px 0;
  overflow: hidden;
}

/* ===== WRAPPER ===== */
.scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* ===== TRACK ===== */
.scroll-track {
  display: flex;
  min-width: 100%;
  animation: scrollLeft 25s linear infinite;
}

/* ===== DISH CARD ===== */
.dish-card {
  width: 280px;
  margin-right: 30px;
  text-align: center;
  flex-shrink: 0;
}

.dish-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.dish-card h4 {
  margin-top: 15px;
  color: #d4af37;
  font-size: 18px;
  letter-spacing: 1px;
}

/* Hover Effect */
.dish-card:hover img {
  transform: scale(1.08);
}

/* ===== ANIMATION ===== */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .dish-card {
    width: 220px;
  }

  .dish-card img {
    height: 160px;
  }
}

/*  */
.video-section {
  background: #000;
  padding: 80px 0;
}


.video-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== VIDEO CARD ===== */
.video-card {
  width: 320px;
  height: 200px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s ease;
  background: #000;
}

/* Actual video preview */
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark overlay for luxury look */
.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  transition: 0.3s ease;
}

/* Hover effect */
.video-card:hover {
  transform: translateY(-6px);
}

.video-card:hover::after {
  background: rgba(0, 0, 0, 0.25);
}

/* ===== PLAY BUTTON ===== */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #d4af37;
  color: #000;
  font-size: 28px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.3s ease;
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ===== MODAL ===== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.97);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal video {
  width: 85%;
  max-width: 1000px;
  border-radius: 12px;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .video-card {
    width: 90%;
    height: 200px;
  }

  .video-modal video {
    width: 95%;
  }
}

  /*  */

  .feature-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: 0.3s ease;
  }
  
  .feature-img:hover {
    transform: scale(1.1);
  }
  
  /* map */

  /* MAP SECTION */

.kannappa-map-section {
  padding: 40px 0 60px;
  background: #fafafa;
}

.map-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: #2c2c2c;
}

.map-subtitle {
  font-family: 'Poppins', sans-serif;
  color: #777;
  margin-top: 10px;
}

.map-container {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.map-container{
  width:100%;
  height:450px;
  overflow:hidden;
  position:relative;
}

.map-container iframe{
  width:100%;
  height:520px;   /* increase height */
  border:0;
  margin-top:-70px;  /* hides the top title bar */
}

/* =========================
   SECTION BASE
========================= */

.k-section{
  padding: 30px 0;
  position:relative;
  }
  
  /* Container width control */
  
  .k-section .container{
  max-width:1150px;
  }
  
  /* =========================
     TITLES
  ========================= */
  
  .k-title{
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
  }
  

  
  
  /* =========================
     SUBTITLE
  ========================= */
  
  .k-subtitle{
  font-size:19px;
  font-weight:600;
  margin-bottom:14px;
  color:#2b1a12;
  }
  
  /* =========================
     TEXT
  ========================= */
  
  .k-desc{
  max-width:720px;
  margin:auto;
  margin-bottom:28px;
  color:#5c4a42;
  line-height:1.7;
  }
  
  /* =========================
     LIST
  ========================= */
  
  .k-list{
  line-height:1.8;
  font-size:15px;
  padding-left:18px;
  color:#5c4a42;
  }
  
  .k-list li{
  margin-bottom:6px;
  }
  
  /* =========================
     DISH CARDS
  ========================= */
  
  .k-dish-card{
  background:#fff;
  padding:24px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  height:100%;
  transition:all .3s ease;
  border:1px solid rgba(0,0,0,0.04);
  }
  
  .k-dish-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 35px rgba(0,0,0,0.12);
  }
  
  .k-dish-card h4{
  font-size:18px;
  margin-bottom:10px;
  color:#2b1a12;
  }
  
  /* =========================
     FEATURE CARDS
  ========================= */
  
  .k-feature-card{
  background:#fff;
  padding:26px;
  border-radius:14px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  height:100%;
  text-align:center;
  transition:all .3s ease;
  border:1px solid rgba(0,0,0,0.04);
  }
  
  .k-feature-card:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 35px rgba(0,0,0,0.12);
  }
  
  .k-feature-card h4{
  font-size:18px;
  margin-bottom:10px;
  color:#2b1a12;
  }
  
  /* =========================
     SECTION BACKGROUNDS
  ========================= */
  
  .k-growth{
  background:#fff7f1;
  }
  
 
  
  .k-why{
  background:#fff7f1;
  }
  
  /* =========================
     MOBILE OPTIMIZATION
  ========================= */
  
  @media (max-width:768px){
  
  .k-section{
  padding:50px 0;
  }
  
  .k-title{
  font-size:26px;
  }
  
  .k-subtitle{
  font-size:18px;
  }
  
  .k-desc{
  font-size:14px;
  }
  
  .k-dish-card,
  .k-feature-card{
  padding:20px;
  }
  
  .k-list{
  font-size:14px;
  }
  
  }

  /*  */

  /* ================= SPICES SECTION ================= */


  
  /* Card Box */
  
  .k-spice-box{
  background:#ffffff;
  padding:30px;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  height:100%;
  transition:.3s ease;
  }
  
  .k-spice-box:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  }
  
  /* List Item */
  
  .k-spice-item{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
  font-size:15px;
  color:#5c4a42;
  }
  
  /* Icon */
  
  .k-spice-item i{
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fde6dd;
    color:#b63a1d;
    border-radius:50%;
    font-size:14px;
    flex-shrink:0;
    }
  /* Subtitle */
  
  .k-subtitle{
  font-size:20px;
  font-weight:600;
  color:#2b1a12;
  }
  
  /* Mobile */
  
  @media (max-width:768px){
  
  .k-spice-box{
  padding:24px;
  }
  
  .k-spice-item{
  font-size:14px;
  }
  
  }     

  /*  */

  /* ===== SEAFOOD SECTION ===== */

.k-seafood-section{
  position:relative;
  padding:30px 0;
  background:url('../images/chettinad-chicken.webp') center/cover no-repeat;
  color:#fff;
  overflow:hidden;
  }
  
  .k-seafood-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
  }
  
  .k-seafood-content{
  position:relative;
  z-index:2;
  }
  
  /* Feature Points */
  
  .k-seafood-point{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:17px;
    color:#f1f1f1;
    background:rgba(255,255,255,0.06);
    padding:12px 16px;
    border-radius:8px;
    }

    .k-seafood-point:hover{
      background:rgba(255,255,255,0.12);
      }
  
  .k-seafood-point i{
  color:#ffb703;
  font-size:18px;
  }
  
  /* Tagline */
  
  .k-seafood-tagline{
  font-size:20px;
  font-weight:600;
  color:#ffb703;
  letter-spacing:1px;
  }
  
  /* Responsive */
  
  @media(max-width:768px){
  
  .k-seafood-section{
  padding:70px 0;
  }
  
  .k-seafood-point{
  justify-content:center;
  }
  
  }

  /*  */
  .k-dishes{
    padding:30px 0;
    /* background:#ffffff; */
    }
    
    .k-dish-row{
    margin-bottom:70px;
    }
    
    /* image design */
    
    .k-dish-image{
      width: 100%;
      max-width: 320px;
    height:220px;
    margin:auto;
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    transition:.4s;
    }
    
    .k-dish-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
    }
    
    .k-dish-image:hover img{
    transform:scale(1.08);
    }
    
    /* content */
    
    .k-dish-content{
    padding:10px 30px;
    }
    
    .k-dish-content h3{
    font-size:26px;
    font-weight:700;
    margin-bottom:10px;
    color:#222;
    }
    
    .k-dish-content p{
    color:#666;
    font-size:16px;
    line-height:1.7;
    max-width:480px;
    }
    
    /* mobile */
    
    @media(max-width:992px){
    
    .k-dish-content{
    text-align:center;
    padding:20px 0;
    }
    
    .k-dish-row{
    margin-bottom:50px;
    }
    
    .k-dish-image{
    width:100%;
    height:230px;
    }
    
    }
  /* SECTION BACKGROUND */

.k-unique{
  background:linear-gradient(180deg,#fafafa,#f3f3f3);
  padding:80px 0;
  }
  
  /* FEATURE CARD */
  
  .k-feature-card{
  background:#ffffff;
  padding:30px 25px;
  border-radius:12px;
  box-shadow:0 8px 25px rgba(0,0,0,0.05);
  transition:all .35s ease;
  height:100%;
  text-align:center;
  border:1px solid rgba(0,0,0,0.05);
  }
  
  /* HOVER EFFECT */
  
  .k-feature-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
  }
  
  /* ICON */
  
  .k-icon{
  font-size:34px;
  color:#d14006;
  margin-bottom:15px;
  }
  
  /* TITLE */
  
  .k-feature-card h4{
  font-size:20px;
  font-weight:600;
  margin-bottom:10px;
  color:#222;
  }
  
  /* TEXT */
  
  .k-feature-card p{
  font-size:15px;
  color:#666;
  line-height:1.6;
  }
  
  /* BOTTOM PARAGRAPH */
  
  .k-unique-desc{
  font-size:16px;
  color:#555;
  line-height:1.7;
  }

  

  /* menu page */

  /* HERO */

.menu-banner{
  height:320px;
  background:url('../images/menu-banner.png') center/cover;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  margin-top: 70px;
  }
  
  .menu-banner .overlay{
  position:absolute;
  background:rgba(0,0,0,0.5);
  top:0;
  left:0;
  right:0;
  bottom:0;
  }
  
  .banner-content{
  position:relative;
  z-index:2;
  }
  
  .banner-content h1{
  font-family:'Playfair Display',serif;
  font-size:48px;
  }
  
  /* MENU SECTION */
  
  .menu-section{
  padding:60px 0;
  }

  /* Fix anchor scroll offset */
.menu-category {
  scroll-margin-top: 140px; /* adjust based on your navbar height */
}
  
  /* SIDEBAR */
  
  .menu-sidebar{
  background:white;
  padding:30px;
  border-radius:10px;
  position:sticky;
  top:120px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  }
  
  .menu-sidebar h3{
  margin-bottom:20px;
  color:#8b1d18;
  }
  
  .menu-sidebar ul{
  list-style:none;
  padding:0;
  }
  
  .menu-sidebar li{
  margin:15px 0;
  }
  
  .menu-sidebar a{
  text-decoration:none;
  font-weight:500;
  color:#333;
  display:flex;
  align-items:center;
  gap:10px;
  transition:.3s;
  }
  
  .menu-sidebar a:hover{
  color:#c59d5f;
  padding-left:5px;
  }
  
  /* MENU CATEGORY */
  
  .menu-category{
  margin-bottom:70px;
  }
  
  .menu-category h2{
  font-family:'Playfair Display',serif;
  margin-bottom:25px;
  color:#8b1d18;
  }
  
  /* GRID */
  
  .menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
  }
  
  /* CARD */
  
  .menu-card{
  background:white;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  transition:.3s;
  }
  
  .menu-card:hover{
  transform:translateY(-8px);
  }
  
  .menu-card img{
  width:100%;
  height:250px;
  object-fit:cover;
  }
  
  .menu-card h4{
  padding:15px;
  margin:0;
  }
  
  .price{
  padding:0 15px 15px;
  font-weight:600;
  color:#c59d5f;
  }

 /* floating */
.floating-btn { 
  position: fixed;
  bottom: 20px;
  right: 20px;   /* slightly closer to edge */
  z-index: 999;
  max-width: calc(100% - 12px);
}

.floating-btn a,
.floating-btn button {
  display: block;
  margin-top: 6px;
  padding: 6px 10px;   /* reduced width */
  border-radius: 30px; 
  font-size: 12px;     /* smaller font */
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
  transition: 0.3s ease;
  white-space: nowrap; /* prevent text breaking */
}

.floating-btn a:hover,
.floating-btn button:hover{
  transform: translateY(-2px);
}

.call { 
  background: #8b1d18; 
}

@media (max-width: 576px) {
  .floating-btn a,
  .floating-btn button {
    padding: 5px 8px;
    font-size: 11px;
    border-radius: 25px;
  }
}

/* ===== MODAL ===== */

.modal-dialog {
  max-width: 900px;
}

.modal-content {
  height: auto;        /* ✅ remove full height */
  max-height: 90vh;    /* limit if content grows */
}

/* Header */
.branch-header {
  background: #8b1d18;
  color: #fff;
  padding: 10px 15px;
}

.branch-logo {
  height: 28px;
}

/* ===== GRID ===== */
.modal-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  align-items: start;
}

/* Card */
.branch-group {
  background: #fff8e6;
  padding: 10px;
  border-radius: 8px;
  height: fit-content;   /* ✅ prevents stretching */
}

/* Title */
.branch-city {
  font-size: 13px;
  font-weight: 700;
  color: #8b1d18;
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 3px;
}

.branch-city i {
  color: #ffb703;
  font-size: 12px;
}

/* List */
.branch-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.branch-list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 12px;
  border-bottom: 1px dashed #e5e5e5;
}

/* ===== 🔥 FIX FOR NUMBER BREAK ===== */
.branch-list span,
.branch-list span a {
  white-space: nowrap;   /* IMPORTANT */
  font-size: 12px;
  font-weight: 600;
  color: #8b1d18;
  text-decoration: none;
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .modal-body {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== MOBILE ===== */
@media (max-width: 576px) {

  .modal-dialog {
    margin: 0;
  }

  .modal-content {
    height: 100vh;
    border-radius: 0;
  }

  .modal-body {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .branch-group {
    padding: 6px;
  }

  .branch-city {
    font-size: 12px;
  }

  .branch-list li {
    font-size: 11.5px;
  }

  .branch-list span a {
    font-size: 11.5px;
  }
}
  
  /*  */

  .k-list{
    list-style:none;
    padding-left:0;
    }
    
    .k-list li{
    font-size:17px;
    margin-bottom:15px;
    display:flex;
    align-items:center;
    gap:12px;
    }
    
    .k-list i{
    color:#c15a2c;
    font-size:20px;
    }

    /*  */

    .hall-block{
      margin-top:50px;
      }
      
      .hall-name{
      font-size:26px;
      font-weight:600;
      font-family:'Playfair Display',serif;
      text-align:center;
      margin-bottom:6px;
      }
      
      .hall-desc{
      text-align:center;
      max-width:750px;
      margin:auto;
      color:#666;
      font-size:15px;
      }
      
      @media (max-width:768px){
      
      .hall-name{
      font-size:22px;
      }
      
      .hall-desc{
      font-size:14px;
      padding:0 10px;
      }
      
      }

      .hall-img{
        width:100%;
        height:260px;
        object-fit:cover;
        border-radius:8px;
        transition:0.3s ease;
        }
        
        /* hover effect */
        
        .hall-img:hover{
        transform:scale(1.03);
        }
        
        /* mobile */
        
        @media (max-width:768px){
        
        .hall-img{
        height:200px;
        }
        
        }

        /* menu card */

        .download-menu-btn{

          background:#8b1d18;
          color:#fff;
          padding:12px 22px;
          border-radius:30px;
          font-weight:600;
          text-decoration:none;
          display:inline-block;
          transition:0.3s ease;
          }
          
          .download-menu-btn i{
          margin-right:6px;
          }
          
          .download-menu-btn:hover{
          background:#a7241d;
          color:#fff;
          transform:translateY(-2px);
          }