/* style.css
   Emerald / Gold Ultra-Luxury Theme (Dark default)
   Cleaned and moved from original inline <style>.
   - Default theme: dark emerald
   - .light-theme on html[data-theme="light"] switches to sapphire/light palette
*/

/* === Color variables (emerald/gold theme) === */
:root{
  --emerald-900: #012b24;
  --emerald-800: #023e30;
  --emerald-700: #045c4a;
  --emerald-600: #127a60;
  --panel: #07372f;
  --gold-100: #f7e6b5;
  --gold-200: #d4af37;
  --muted: #a6c9bb;
  --radius-lg: 18px;
  --radius-md: 12px;

  --text-light: #eaf6f1;
  --glass: rgba(255,255,255,0.04);

  /* Button glow */
  --glow-color: rgba(212,175,55,0.85);
  --glow-size: 18px;
}

/* ----------------------------------------------------
   LIGHT MODE — DEEP SAPPHIRE + SILVER + SOFT WHITE
   ---------------------------------------------------- */
html[data-theme="light"] {
  /* Main background (top gradient section) */
  --emerald-900: #dfe8f5;   /* soft sapphire mist */
  
  /* Card panels, sections, form boxes */
  --panel: #ffffff;   /* pure soft white */

  /* Gold accents remain consistent across themes */
  --gold-100: #f7e6b5;
  --gold-200: #e8c772;

  /* Text colors for readability */
  --text-light: #0d1b2a;   /* deep sapphire */
  --muted: #52677a;        /* soft slate blue */

  /* Glow color for buttons in light mode */
  --glow-color: rgba(16, 88, 200, 0.55); /* sapphire glow */

  /* Additional refinements */
  --navbar-bg: rgba(245, 248, 255, 0.85);     /* light frosted navy */
  --hero-overlay: rgba(255, 255, 255, 0.35);  /* soft white glass */
  --section-bg: #f6f9ff;                       /* pale blue base */
}

/* Base reset and typography */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Inter",system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
  background: linear-gradient(180deg,var(--emerald-900), #031917);
  color:var(--text-light);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
  scroll-behavior:smooth;
}

/* Accent blurred shapes */
.accent {
  position:fixed;
  pointer-events:none;
  z-index:5;
  filter: blur(12px);
  opacity:0.10;
  transform: translateZ(0);
  mix-blend-mode:soft-light;
}
.accent--1 { width:220px;height:220px;background:radial-gradient(circle,#d4af37 0%, #f7e6b5 25%, transparent 60%); top:6%; left:-70px; animation:floatY 9s ease-in-out infinite; }
.accent--2 { width:160px;height:160px;background:radial-gradient(circle,#d4af37 0%, #f7e6b5 25%, transparent 60%); bottom:6%; right:-40px; animation:floatY 11s ease-in-out infinite; }
@keyframes floatY { 0%{transform:translateY(0)}50%{transform:translateY(18px)}100%{transform:translateY(0)} }

/* NAVBAR */
.nav {
  width:100%;
  position:sticky;
  top:0;
  z-index:80;
  backdrop-filter: blur(6px) saturate(120%);
  background: linear-gradient(180deg, rgba(3,25,20,0.75), rgba(3,25,20,0.6));
  border-bottom: 1px solid rgba(212,175,55,0.06);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}
.container{ max-width:1140px; margin:0 auto; padding:0 20px; }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; height:72px; }
.brand { display:flex; align-items:center; gap:14px; }
.brand img{ width:56px; height:56px; border-radius:10px; box-shadow:0 6px 18px rgba(4,77,60,0.12); }
.brand h4{ margin:0; font-family:"Playfair Display",serif; color:var(--gold-100); font-size:1.15rem; letter-spacing:0.6px; }
.nav-links{ display:flex; gap:18px; align-items:center; }
.nav-links a{ color:var(--gold-100); font-weight:600; font-size:0.95rem; padding:8px 10px; border-radius:8px; transition:background .18s, color .18s; }
.nav-links a:hover{ background: rgba(212,175,55,0.06); color:var(--gold-200); }
.nav-cta { display:flex; gap:10px; align-items:center; }
.cta-primary{ background:linear-gradient(90deg,var(--gold-200),var(--gold-100)); color:var(--emerald-900); padding:10px 16px; border-radius:12px; font-weight:700; box-shadow:0 8px 24px rgba(0,0,0,0.35); }
.cta-secondary{ border:1px solid rgba(255,255,255,0.02); padding:8px 12px; border-radius:10px; font-weight:600; color:var(--gold-100); background:transparent }

/* Theme toggle button */
.theme-toggle{
  background:transparent;
  border:1px solid rgba(255,255,255,0.06);
  color:var(--gold-100);
  padding:8px 10px;
  border-radius:8px;
  cursor:pointer;
  font-size:16px;
  transition: box-shadow .18s, transform .08s;
}
.theme-toggle:hover { box-shadow: 0 0 18px var(--glow-color); transform: translateY(-1px); }
.theme-toggle:active { transform: translateY(0); box-shadow: 0 0 10px var(--glow-color); }

/* HERO */
.hero {
  padding:70px 0 40px;
  position:relative;
}
.hero-grid{ display:grid; grid-template-columns: 1fr 420px; gap:32px; align-items:center; max-width:1140px; margin:0 auto; padding:0 20px; }
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:calc(var(--radius-lg) + 6px);
  padding:36px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.02);
  border:1px solid rgba(255,255,255,0.02);
}
.hero h1{
  margin:0 0 12px;
  font-family:"Playfair Display",serif;
  color:var(--gold-100);
  font-size:40px;
  line-height:1.02;
  letter-spacing:0.6px;
  text-shadow: 0 2px 0 rgba(0,0,0,0.45);
}
.hero p.lead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:1.05rem;
}
.hero-ctas{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin-top:12px; }
.btn{
  display:inline-block;
  border-radius:40px;
  padding:12px 20px;
  font-weight:700;
  font-size:1rem;
  letter-spacing:0.2px;
  transition:transform .12s, box-shadow .18s, background .18s;
  position:relative;
  overflow:hidden;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  text-decoration:none;
  color:inherit;
}

/* Primary & gold buttons */
.btn--primary{
  background: var(--emerald-700);
  color: #fff;
  box-shadow: 0 12px 30px rgba(4,77,60,0.3);
}
.btn--primary::after{
  content:"";
  position:absolute; left:-40%; top:0; width:40%; height:100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.06), rgba(255,255,255,0.12));
  transform: skewX(-18deg);
  transition: left .6s ease;
}
.btn--primary:hover::after{ left:120%; }
.btn--gold{
  background: linear-gradient(90deg,var(--gold-200),var(--gold-100));
  color:var(--emerald-900);
  box-shadow: 0 10px 30px rgba(212,175,55,0.12);
}

/* Button glow effect (hover + active) */
.btn-glow:hover, .btn-glow:focus {
  box-shadow: 0 8px 28px rgba(212,175,55,0.18), 0 0 24px var(--glow-color);
  transform: translateY(-4px);
  outline: none;
}
.btn-glow:active {
  transform: translateY(-1px) scale(0.995);
  box-shadow: 0 6px 16px rgba(212,175,55,0.12), 0 0 12px var(--glow-color);
}

/* hero visual */
.hero-visual{
  width:100%; border-radius:14px; overflow:hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.45); border:1px solid rgba(255,255,255,0.02);
  transform: translateZ(0);
}
.hero-visual img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .9s ease; }
.hero-visual:hover img{ transform: scale(1.03) translateY(-6px); }

/* DIVIDER */
.divider{
  height:10px; max-width:880px; margin:26px auto;
  background: linear-gradient(90deg, rgba(212,175,55,0.0), var(--gold-200), rgba(212,175,55,0.0));
  border-radius:40px;
  filter: drop-shadow(0 6px 18px rgba(212,175,55,0.06));
}

/* SECTIONS */
.section{ max-width:1140px; margin:34px auto; padding:0 20px; }
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:var(--radius-lg);
  padding:22px;
  border:1px solid rgba(255,255,255,0.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.35);
  opacity:0; transform:translateY(22px); transition:all .7s cubic-bezier(.2,.9,.3,1);
}
.panel.revealed{ opacity:1; transform:none; }

.section-title{ text-align:center; margin-bottom:10px; }
.section-title h2{ margin:0; font-family:"Playfair Display",serif; color:var(--gold-100); font-size:28px; }
.section-sub{ text-align:center; color:var(--muted); font-size:1rem; margin-bottom:12px; }

/* MENU CARDS */
.cards{ display:grid; grid-template-columns: repeat(2, 1fr); gap:18px; align-items:stretch; }
.card{
  display:flex; gap:12px; align-items:center;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding:14px; border-radius:12px;
  border:1px solid rgba(255,255,255,0.02);
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  transition: transform .28s ease, box-shadow .28s ease;
}
.card:hover{ transform: translateY(-8px); box-shadow: 0 22px 54px rgba(0,0,0,0.45); }
.card-figure{ width:120px; min-width:120px; height:96px; border-radius:8px; overflow:hidden; }
.card-figure img{ width:100%; height:100%; object-fit:cover; display:block; border-radius:6px; }
.card-body h3{ margin:0 0 6px; font-family:"Playfair Display",serif; font-size:1.05rem; color:var(--gold-100); }
.card-body p{ margin:0; color:var(--muted); font-size:0.95rem; }
.card-price{ margin-left:auto; font-weight:700; color:var(--gold-200); font-family:"Inter",sans-serif; font-size:1rem; }

/* FEATURED WIDE */
.featured{ display:flex; gap:18px; align-items:center; padding:18px; border-radius:12px; background: linear-gradient(90deg, rgba(4,77,60,0.02), rgba(212,175,55,0.02)); border:1px solid rgba(255,255,255,0.02); box-shadow: 0 16px 34px rgba(0,0,0,0.25); }

/* FORM */
.form-grid{ display:flex; justify-content: center; grid-template-columns: 1fr 320px; gap:22px; align-items:start; }
.form-panel{ padding:18px; border-radius:10px; background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border:1px solid rgba(255,255,255,0.02); }
form label{ display:block; font-size:0.9rem; margin-bottom:6px; color:var(--gold-100); font-weight:600; }
input[type="text"], input[type="tel"], textarea{
  width:100%; padding:12px 14px; border-radius:8px; border:1px solid rgba(255,255,255,0.04); font-size:0.98rem; background: rgba(255,255,255,0.02); color:var(--text-light); margin-bottom:12px;
}
textarea{ min-height:110px; resize:vertical; }

.form-foot{ display:flex; gap:12px; align-items:center; justify-content:flex-start; margin-top:6px; }
.note{ color:var(--muted); font-size:0.9rem; }

/* HOW grid small helper */
.how-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-top:16px; }
.how-step{ background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border-radius:10px; padding:14px; border:1px solid rgba(255,255,255,0.02); color:var(--muted); }
.how-step strong{ display:block; margin-bottom:8px; color:var(--gold-100); }

/* CTA floating WhatsApp */
.cta-fixed{ position:fixed; right:18px; bottom:18px; z-index:120; }
.whatsapp-btn{
  background:linear-gradient(90deg,#25D366,#1EBE5C); color:#fff; padding:12px 18px; border-radius:999px; box-shadow:0 18px 40px rgba(37,211,102,0.12); font-weight:700; display:flex; gap:10px; align-items:center;
  transform:translateY(0); transition:transform .22s;
}
.whatsapp-btn:hover{ transform:translateY(-6px); }

/* FOOTER */
footer{ margin-top:40px; padding:26px 20px; background:linear-gradient(135deg,var(--emerald-700),var(--emerald-600)); color:var(--gold-100); text-align:center; border-top:1px solid rgba(255,255,255,0.03); }

/* RESP */
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; }
  .form-grid{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr; }
  .container{ padding:0 14px; }
  .nav-links{ display:none; }
}
/* === FSSAI badge (bottom-right, appears after scroll) === */
.fssai-badge {
  position: fixed;
  right: 18px;
  bottom: 100px;               /* sits above WhatsApp CTA (which is at bottom:18px) */
  z-index: 125;                /* above many elements */
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(212,175,55,0.10), rgba(212,175,55,0.06));
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s ease, transform .32s cubic-bezier(.2,.9,.2,1), box-shadow .24s;
  will-change: transform, opacity;
}

/* visible state when user scrolls */
.fssai-badge.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
  box-shadow: 0 18px 48px rgba(0,0,0,0.45), 0 0 26px rgba(212,175,55,0.16);
}

/* small badge image */
.fssai-badge img {
  width: 28px;
  height: 28px;
  display:block;
  object-fit:contain;
  filter: saturate(0.95) contrast(1.02);
  border-radius:4px;
}

/* ID text */
.fssai-badge span {
  color: var(--gold-100);
  font-weight:700;
  font-size:0.78rem;
  letter-spacing:0.3px;
}

/* Hide the badge on very small screens (optional) */
@media (max-width:420px) {
  .fssai-badge { display: none; }
}
footer {
    background: #0b3a36;
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.25);
}

.footer-container p {
    color: #e6dca9;
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-cert {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cert-icon {
    height: 22px;
    width: auto;
    filter: brightness(1.2);
}

.cert-text {
    color: #f4e8b2;
    font-size: 15px;
    font-weight: 600;
    margin-right: 10px;
}
/* FOOTER */
footer {
    background: linear-gradient(to bottom, #07312d, #062724);
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.25);
    margin-top: 50px;
}

.footer-line {
    height: 1px;
    margin-bottom: 18px;
    background: linear-gradient(to right, transparent, rgba(255, 215, 0, 0.5), transparent);
}

.footer-main {
    color: #e8dca3;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-cert-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}


.footer-cert-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f4e8b2;
    font-size: 15px;
    font-weight: 600;
}

.cert-icon {
    height: 115px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.35));
}


@media (max-width: 600px) {
    .footer-cert-group {
        flex-direction: column;
        gap: 12px;
    }

    .footer-cert-item {
        font-size: 14px;
    }

    .cert-icon {
        height: 24px;
    }
}
