:root {
  --maroon: #4a0d0d;
  --maroon-dark: #33080a;
  --orange: #f5941f;
  --orange-light: #ffb443;
  --gold: #ffcf5c;
  --cream: #fff8ec;
  --text: #2b1a0e;
  --white: #ffffff;
  --wa-green: #25d366;
  --wa-green-dark: #1ebe5a;
  --shadow: 0 10px 30px rgba(74, 13, 13, 0.15);
  --radius: 16px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Baloo Thambi 2', 'Poppins', sans-serif; margin: 0 0 0.5em; line-height: 1.2; }

p { line-height: 1.7; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--orange);
  margin-bottom: 8px;
}
.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--maroon); }
.section-title.center { text-align: center; }

.section-sub { color: #6b5344; max-width: 620px; }
.section-sub.center { margin: 0 auto 40px; text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .icon { width: 20px; height: 20px; flex-shrink: 0; }

.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { background: var(--wa-green-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--maroon);
  color: var(--maroon);
}
.btn-outline:hover { background: var(--maroon); color: #fff; }

.btn-lg { padding: 15px 30px; font-size: 1rem; }

.btn-sm { padding: 8px 16px; font-size: 0.85rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.brand-logo.small { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-tamil { font-family: 'Baloo Thambi 2', sans-serif; font-weight: 700; color: var(--maroon); font-size: 1.05rem; }
.brand-en { font-size: 0.72rem; color: #8a6c53; letter-spacing: 0.3px; }

.site-nav { display: flex; gap: 28px; }
.site-nav a { font-weight: 500; color: var(--text); position: relative; }
.site-nav a:hover { color: var(--orange); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--maroon);
  cursor: pointer;
}

/* Hero */
.hero {
  background: radial-gradient(circle at 15% 20%, var(--orange-light), var(--orange) 55%, #e07a00 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><circle cx="50" cy="50" r="1.5" fill="white" opacity="0.15"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
}
.hero-text h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: var(--maroon-dark);
}
.hero-text h1 span { color: #fff; text-shadow: 0 2px 0 var(--maroon); }
.hero-sub { color: var(--maroon-dark); max-width: 520px; font-weight: 500; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0; }
.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-badges li {
  background: rgba(255,255,255,0.85);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--maroon-dark);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.hero-image img {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(74, 13, 13, 0.35);
  border: 6px solid #fff;
}

/* Menu */
.menu { padding: 90px 0; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
}
.menu-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}
.menu-item:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(74,13,13,0.22); }
.menu-item .icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(145deg, var(--gold), var(--orange));
  box-shadow: 0 6px 16px rgba(245, 148, 31, 0.4), inset 0 0 0 4px #fff;
  margin-bottom: 6px;
}
.menu-item h3 { font-size: 1.1rem; color: var(--maroon); margin-bottom: 2px; }
.menu-item p { font-size: 0.85rem; color: #8a6c53; margin: 0; flex-grow: 1; }
.menu-item .btn { align-self: flex-start; margin-top: 6px; }

/* Details */
.details { background: var(--maroon); padding: 70px 0; }
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.detail-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  color: #fce9d8;
}
.detail-icon { font-size: 2.2rem; margin-bottom: 10px; }
.detail-card h3 { color: var(--gold); font-size: 1.05rem; }
.detail-card p { font-size: 0.88rem; color: #f0d9c4; margin: 0; }

/* About */
.about { padding: 90px 0; }
.about-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
}
.about-logo {
  width: 100%;
  border-radius: 50%;
  box-shadow: var(--shadow);
  border: 6px solid #fff;
}
.about p { color: #5c4433; }

/* Contact */
.contact { background: linear-gradient(180deg, #fff, var(--cream)); padding: 90px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.contact-list { list-style: none; padding: 0; margin: 24px 0; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.contact-icon { font-size: 1.3rem; }
.contact-list a:hover { color: var(--orange); }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact-map iframe { width: 100%; height: 340px; border: 0; }

/* Footer */
.site-footer { background: var(--maroon-dark); color: #f0d9c4; padding: 36px 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-footer .brand-tamil { color: var(--gold); }
.site-footer .brand-en { color: #d8b89c; }
.site-footer p { margin: 0; font-size: 0.85rem; }
.footer-links { display: flex; gap: 18px; font-size: 0.85rem; }
.footer-links a:hover { color: var(--orange-light); }

/* Floating WhatsApp button */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  z-index: 200;
  animation: pulse 2.4s infinite;
}
.wa-float .icon { width: 30px; height: 30px; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-logo { width: 160px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
}
@media (max-width: 860px) {
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .hero-badges { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; text-align: center; }
}
