/* ════════════════════════════════════════
   SHRI SANGEETHAS – GLOBAL STYLES
   Shared across all pages
   ════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: #2c2c2c;
  background: #fff;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── VARIABLES ── */
:root {
  --gold:        #c8922a;
  --gold-dark:   #a67520;
  --gold-light:  #f5e6c8;
  --cream:       #fdf8f3;
  --dark:        #1a1a1a;
  --dark-2:      #2c2c2c;
  --text:        #555;
  --red:         #D4451F;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.14);
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* ── UTILITIES ── */
.section        { padding: 90px 60px; }
.section-head   { text-align: center; margin-bottom: 54px; }
.section-label  {
  display: block;
  font-size: 10.5px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  font-weight: 600; margin-bottom: 12px;
}
.section-title  {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; color: var(--dark); line-height: 1.15;
}
.section-sub    {
  margin-top: 14px; font-size: 14.5px; color: #888;
  max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.75;
}
.text-gradient {
  background: linear-gradient(135deg, var(--dark) 20%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 14px 36px; font-size: 11.5px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border: 2px solid var(--gold);
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline-dark {
  display: inline-block; border: 2px solid var(--dark);
  color: var(--dark); padding: 13px 42px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--dark); color: #fff; }

/* ── GLOW + DOTTED SECTION ── */
@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.06); }
}
@keyframes dot-drift {
  0%   { background-position: 0 0; }
  100% { background-position: 52px 52px; }
}
.glow-section {
  position: relative;
  background-color: #fffef2;
  background-image: radial-gradient(circle, rgba(200,146,42,0.14) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  animation: dot-drift 20s linear infinite;
}
.glow-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 5%,  rgba(255,228,80,0.24) 0%, transparent 70%),
    radial-gradient(ellipse 40% 35% at 15% 85%, rgba(255,210,60,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 85%, rgba(255,210,60,0.15) 0%, transparent 60%);
  pointer-events: none;
  animation: glow-pulse 6s ease-in-out infinite;
  z-index: 0;
}
.glow-section > * { position: relative; z-index: 1; }
.glow-section .section-title { text-shadow: 0 0 40px rgba(220,160,30,0.2); }

/* ── SCROLL REVEAL ── */
html.js .reveal, html.js .reveal-up, html.js .reveal-left, html.js .reveal-right {
  opacity: 0; transition: opacity 0.75s ease, transform 0.75s ease;
}
html.js .reveal       { transform: translateY(40px); }
html.js .reveal-up    { transform: translateY(50px); }
html.js .reveal-left  { transform: translateX(-44px); }
html.js .reveal-right { transform: translateX(44px); }
html.js .reveal.visible, html.js .reveal-up.visible,
html.js .reveal-left.visible, html.js .reveal-right.visible {
  opacity: 1; transform: translate(0);
}
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.26s; } .d4 { transition-delay: 0.34s; }
.d5 { transition-delay: 0.42s; } .d6 { transition-delay: 0.50s; }
.d7 { transition-delay: 0.58s; } .d8 { transition-delay: 0.66s; }

/* ════════ HEADER ════════ */
header {
  position: sticky; top: 0; z-index: 900;
  background: #fff;
  box-shadow: 0 1px 0 #e8e8e8, 0 4px 20px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, padding 0.3s;
}
header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.12); }
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 60px; height: 72px;
  max-width: 1440px; margin: 0 auto;
}

/* Logo */
.logo { display: flex; align-items: center; }
.site-logo { height: 54px; width: auto; display: block; transition: height 0.3s; }
header.scrolled .site-logo { height: 46px; }

/* Nav */
nav { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 13px; font-weight: 500;
  padding: 8px 14px; color: var(--dark);
  transition: color 0.2s; white-space: nowrap; letter-spacing: 0.2px;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--gold); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > .nav-link::after { display: none; }
.nav-item > .nav-link > .arrow { font-size: 9px; opacity: 0.55; margin-left: 3px; transition: transform 0.2s; }
.nav-item:hover > .nav-link > .arrow { transform: rotate(180deg); }
.nav-item:hover > .nav-link { color: var(--gold); }
.nav-item:hover .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-lg); min-width: 195px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px); transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
.dropdown a {
  display: block; padding: 11px 20px;
  font-size: 13px; color: #444;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--cream); color: var(--gold); padding-left: 26px; }

/* Header icons */
.header-icons { display: flex; align-items: center; gap: 20px; }
.icon-btn {
  background: none; border: none;
  font-size: 18px; color: var(--dark);
  transition: color 0.2s; padding: 6px; position: relative;
}
.icon-btn:hover { color: var(--gold); }
.cart-badge {
  position: absolute; top: -5px; right: -6px;
  background: var(--gold); color: #fff;
  font-size: 9px; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none; background: none; border: none;
  flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); transition: var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-drawer {
  display: none;
  flex-direction: column;
  position: fixed; top: 72px; left: 0; right: 0;
  background: #fff; padding: 20px 28px 28px;
  box-shadow: var(--shadow-md);
  z-index: 800; gap: 4px;
  border-top: 2px solid var(--gold);
  animation: drawer-in 0.25s ease;
}
.mobile-drawer.open { display: flex; }
@keyframes drawer-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-drawer .nav-link { font-size: 15px; padding: 10px 0; border-bottom: 1px solid #f0f0f0; }
.mobile-drawer .nav-link::after { display: none; }
.mobile-drawer .dropdown {
  position: static; opacity: 1; pointer-events: auto;
  transform: none; box-shadow: none; border-top: none;
  background: var(--cream); padding: 4px 0 4px 16px;
  display: none;
}
.mobile-drawer .nav-item.open .dropdown { display: block; }

/* ════════ FOOTER ════════ */
.footer { font-family: 'Poppins', sans-serif; }
.footer-main { background: #E8946A; padding: 60px 60px 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.8fr;
  gap: 44px;
}
.footer-logo-img { height: 56px; width: auto; display: block; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; color: rgba(44,21,0,0.75); line-height: 1.65; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,0.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: #180A00; transition: var(--transition); text-decoration: none;
}
.footer-social-btn:hover { background: #180A00; color: #fff; transform: translateY(-3px); }
.footer-col-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; color: #180A00; margin-bottom: 18px;
}
.footer-list li { margin-bottom: 10px; }
.footer-list li a {
  font-size: 14px; color: rgba(44,21,0,0.72);
  display: inline-block; transition: var(--transition);
}
.footer-list li a::before { content: '›'; font-size: 18px; margin-right: 7px; color: #180A00; }
.footer-list li a:hover { color: #180A00; padding-left: 5px; }
.footer-hours-text { font-size: 14px; color: rgba(44,21,0,0.75); line-height: 1.7; }
.footer-contact-list li {
  display: flex; gap: 11px; align-items: flex-start;
  margin-bottom: 13px; font-size: 13.5px;
  color: rgba(44,21,0,0.72); line-height: 1.6;
}
.footer-ci { color: #180A00; flex-shrink: 0; margin-top: 2px; font-size: 14px; }
.footer-contact-list li a { color: rgba(44,21,0,0.72); transition: color 0.25s; }
.footer-contact-list li a:hover { color: #180A00; }
.footer-bottom { background: #8B1A1A; padding: 15px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.72); margin: 0; }
.footer-credit { color: #fff; font-weight: 700; text-decoration: none; transition: color 0.2s; }
.footer-credit:hover { color: #F5A623; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 24px;
  background: #25D366; border-radius: 50%;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999; text-decoration: none; transition: var(--transition);
  animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { background: #1EBE5C; transform: scale(1.12); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-main { padding: 50px 40px 40px; }
}
@media (max-width: 900px) {
  .header-inner { padding: 0 24px; }
  nav, .header-icons { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 24px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { padding: 40px 24px 32px; }
}
