:root {
  --green: #3d4a1f;
  --green-dark: #2c3400;
  --brown: #5c300b;
  --brown-light: #8a5a2b;
  --cream: #fdf6e9;
  --cream-alt: #f7ecd6;
  --gold: #c9942f;
  --text: #3a2c1a;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(60, 40, 10, 0.08);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .brand-name {
  font-family: 'Kalam', cursive;
  color: var(--brown);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(61, 74, 31, 0.35);
}
.btn-primary:hover { background: var(--green-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--brown);
  color: var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--white); }
.full-width { width: 100%; text-align: center; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 233, 0.95);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-size: 1.3rem; font-weight: 700; }
.brand-tag { font-size: 0.7rem; color: var(--brown-light); letter-spacing: 0.03em; }

.site-nav { display: flex; gap: 8px; }
.site-nav a {
  font-weight: 500;
  color: var(--text);
  padding: 8px 16px;
  border-radius: 50px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green-dark);
  background-color: rgba(61, 74, 31, 0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--brown);
  display: block;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 85% 20%, rgba(201,148,47,0.18), transparent 45%),
    linear-gradient(135deg, rgba(247, 236, 214, 0.88), rgba(253, 246, 233, 0.88)),
    url('../images/naalukettu.jpg');
  background-size: auto, auto, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  padding: 90px 0 100px;
  text-align: center;
}
.hero-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background: rgba(60, 40, 10, 0.8);
  white-space: nowrap;
  padding: 12px 0;
}
.hero-marquee-track {
  display: inline-flex;
  width: max-content;
  animation: hero-marquee-scroll 22s linear infinite;
}
.hero-marquee-item {
  display: inline-flex;
  align-items: center;
  color: var(--cream);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0 36px;
  text-decoration: none;
  white-space: nowrap;
}
.hero-marquee-item:hover { text-decoration: underline; }
@keyframes hero-marquee-scroll {
  from { transform: translateX(-50%); }
  to { transform: translateX(0%); }
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin: 0 0 20px;
  line-height: 1.15;
}
.hero-sub {
  max-width: 620px;
  margin: 0 auto 34px;
  color: #5a4c38;
  font-size: 1.05rem;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== About ===== */
.about { padding: 90px 0; }
.about-inner {
  max-width: 1600px;
  display: grid;
  grid-template-columns: 380px 1fr 300px;
  align-items: center;
  gap: 48px;
}
.about-text h2 { font-size: 2.2rem; margin-bottom: 18px; }
.about-text p { margin-bottom: 16px; color: #5a4c38; }
.about-text { padding: 0; }

.about-side-image {
  height: 260px;
}
.about-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-watermark img {
  width: 100%;
  height: auto;
}

/* ===== Why Us ===== */
.why { padding: 90px 0; background: var(--cream-alt); }
.section-title { font-size: 2.2rem; margin-bottom: 8px; }
.section-title.center, .section-sub.center { text-align: center; }
.section-sub { color: #5a4c38; margin-top: 0; margin-bottom: 48px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}
.why-card:hover { transform: translateY(-6px); }
.why-icon { font-size: 2.2rem; margin-bottom: 14px; }
.why-card h3 { margin: 0 0 8px; font-size: 1.15rem; color: var(--green); font-family: 'Poppins', sans-serif; font-weight: 600; }
.why-card p { margin: 0; color: #5a4c38; font-size: 0.92rem; }

/* ===== Menu ===== */
.menu { padding: 90px 0; }
.menu .section-sub { margin-bottom: 16px; }
.menu-logistics {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  margin: 0 auto 40px;
  padding: 10px 22px;
  background: var(--cream-alt);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  text-align: center;
}
.menu-logistics-divider { color: var(--gold); }
.menu-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { background: rgba(61,74,31,0.1); }
.filter-btn.active { background: var(--green); color: var(--white); }

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
}
.menu-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}
.menu-table thead {
  background: var(--green);
  color: var(--white);
}
.menu-table th, .menu-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
}
.menu-table tbody tr { border-bottom: 1px solid #f0e6d2; }
.menu-table tbody tr:last-child { border-bottom: none; }
.menu-table tbody tr:hover { background: var(--cream-alt); }
.fave-star {
  color: #a8412a;
  font-size: 0.85em;
  vertical-align: 2px;
}
.menu-legend {
  margin: 18px 0 0;
  font-size: 1rem;
  color: #a8412a;
  font-style: italic;
}
.menu-legend .fave-star { font-size: 1em; margin-right: 2px; }

/* ===== About Us (Founders) ===== */
.team { padding: 90px 0; }
.team-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-areas:
    "heading photo"
    "text    photo";
  column-gap: 60px;
  row-gap: 18px;
  align-items: center;
}
.team-heading { grid-area: heading; font-size: 2.2rem; margin: 0; }
.team-text { grid-area: text; }
.team-text > p { color: #5a4c38; margin: 0; }
.team-photo { grid-area: photo; }

.team-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

/* ===== Contact ===== */
.contact { padding: 90px 0; background: var(--cream-alt); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h2 { font-size: 2.2rem; margin-bottom: 14px; }
.contact-info > p { color: #5a4c38; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}
.contact-details a:hover { text-decoration: underline; }
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  flex-shrink: 0;
}
.contact-icon svg { fill: var(--brown); }
.contact-disclaimer {
  font-size: 0.8rem;
  color: #a08a63;
  font-style: italic;
}

.enquiry-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.enquiry-form h3 { margin-top: 0; margin-bottom: 14px; font-size: 1.4rem; }
.enquiry-form p { color: #5a4c38; margin: 0 0 24px; }
.enquiry-form p a { color: var(--green); font-weight: 600; }
.enquiry-form p a:hover { text-decoration: underline; }
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.whatsapp-icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

.enquiry-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: #a08a63;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.enquiry-divider::before,
.enquiry-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e6d9bd;
}

.enquiry-call {
  margin: 0;
  text-align: center;
  color: #5a4c38;
}
.enquiry-call a {
  color: var(--brown);
  font-weight: 700;
}
.enquiry-call a:hover { text-decoration: underline; }

/* ===== Footer ===== */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  padding: 40px 0;
  text-align: center;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.footer-logo { width: 50px; height: 50px; object-fit: contain; border-radius: 50%; background: var(--cream); padding: 4px; }
.footer-inner p { margin: 0; font-size: 0.9rem; }
.footer-tag { font-family: 'Kalam', cursive; font-size: 1rem; opacity: 0.85; }

/* ===== Floating WhatsApp Widget ===== */
.whatsapp-widget {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-widget:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}
.whatsapp-widget svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* ===== Floating Instagram Widget ===== */
.instagram-widget {
  position: fixed;
  left: 24px;
  bottom: 100px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.instagram-widget:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}
.instagram-widget svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-text { padding: 0; }
  .about-side-image { display: none; }
  .about-watermark { max-width: 320px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .team-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "photo"
      "text";
  }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 18px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    display: none;
  }
  .site-nav.open { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 68px; }
  .hero-marquee { padding: 9px 0; }
  .hero-marquee-item { font-size: 0.8rem; padding: 0 24px; }
  .whatsapp-widget {
    width: 52px;
    height: 52px;
    left: 16px;
    bottom: 16px;
  }
  .whatsapp-widget svg {
    width: 28px;
    height: 28px;
  }
  .instagram-widget {
    width: 52px;
    height: 52px;
    left: 16px;
    bottom: 80px;
  }
  .instagram-widget svg {
    width: 26px;
    height: 26px;
  }
}
