/* ============================================================
   Dil Se Falooda — styles.css
   Mobile-first. Palette: falooda rose, deep raspberry, pistachio,
   cream/ivory, warm gold, dark berry.
   ============================================================ */

:root {
  --rose: #e8638c;
  --rose-soft: #ffd9e4;
  --raspberry: #a91b4d;
  --berry-dark: #4a1230;
  --berry-deep: #360d24;
  --pistachio: #7fa86f;
  --pistachio-soft: #e4efdd;
  --gold: #c9963f;
  --gold-soft: #f3e3c6;
  --cream: #fdf3ec;
  --ivory: #fffbf6;
  --ink: #3b1320;
  --ink-soft: #6e4555;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", -apple-system, sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(74, 18, 48, 0.10);
  --shadow-lift: 0 18px 44px rgba(74, 18, 48, 0.16);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

[hidden] { display: none !important; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--raspberry);
}

h1 { font-size: clamp(2.3rem, 7vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 5vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.35rem); }

p { font-size: clamp(1rem, 2.5vw, 1.07rem); }

a { color: var(--raspberry); text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Shared layout ---------- */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 6.5rem) clamp(1.25rem, 5vw, 2.5rem);
}

.section-inner.narrow { max-width: 820px; }

.center { text-align: center; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.eyebrow.light { color: var(--gold-soft); }

.section-sub {
  color: var(--ink-soft);
  max-width: 560px;
  margin: 1rem auto 0;
}

.ornament {
  text-align: center;
  color: var(--gold);
  font-size: 1.6rem;
  margin: 1.4rem 0;
}

.center-cta { text-align: center; margin-top: clamp(2.2rem, 5vw, 3rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--raspberry));
  color: #fff;
  box-shadow: 0 8px 22px rgba(169, 27, 77, 0.32);
}

.btn-primary:hover { box-shadow: 0 12px 28px rgba(169, 27, 77, 0.42); }

.btn-ghost {
  border-color: var(--raspberry);
  color: var(--raspberry);
  background: transparent;
}

.btn-ghost:hover { background: rgba(169, 27, 77, 0.06); }

.btn-gold {
  background: var(--gold);
  color: var(--berry-deep);
  box-shadow: 0 8px 22px rgba(201, 150, 63, 0.35);
}

.btn-lg { padding: 1.05rem 2.3rem; font-size: 1.06rem; }

.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 246, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(169, 27, 77, 0.1);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.8rem clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark { color: var(--rose); font-size: 1.3rem; }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.logo-text em { color: var(--raspberry); font-weight: 500; }

.site-nav {
  display: none;
}

.site-nav a:not(.btn) {
  color: var(--ink);
  font-weight: 400;
  font-size: 0.98rem;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.site-nav a:not(.btn):hover { color: var(--raspberry); border-color: var(--rose); }

.header-cta { display: none; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2.5px;
  width: 100%;
  background: var(--raspberry);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav panel */
.site-nav.open {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--ivory);
  padding: 1.6rem clamp(1.25rem, 5vw, 2.5rem) 2rem;
  border-bottom: 1px solid rgba(169, 27, 77, 0.12);
  box-shadow: var(--shadow);
}

.site-nav.open .nav-cta { align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse 90% 70% at 85% 10%, rgba(232, 99, 140, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 60% at 10% 90%, rgba(201, 150, 63, 0.14), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5.5rem) clamp(1.25rem, 5vw, 2.5rem) clamp(3.5rem, 9vw, 6rem);
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy { text-align: center; }

.hero-sub {
  margin: 1.4rem auto 0;
  max-width: 520px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 3vw, 1.18rem);
}

.hero-actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.hero-note {
  margin-top: 1.8rem;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.falooda-glass {
  width: min(280px, 70vw);
  filter: drop-shadow(0 24px 40px rgba(169, 27, 77, 0.18));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Story ---------- */
.story { background: var(--ivory); }

.story-text p + p { margin-top: 1.2rem; }

.story-text p:last-child {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--raspberry);
  text-align: center;
  margin-top: 1.8rem;
}

/* ---------- Menu ---------- */
.menu {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 99, 140, 0.08), transparent 70%),
    var(--cream);
}

.menu-grid {
  margin-top: clamp(2.2rem, 6vw, 3.2rem);
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}

.menu-card {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 150, 63, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}

.menu-visual {
  height: 120px;
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-visual span { font-size: 2.4rem; color: rgba(255, 255, 255, 0.92); }

.mv-rose     { background: linear-gradient(135deg, var(--rose-soft), var(--rose) 60%, var(--raspberry)); }
.mv-kulfi    { background: linear-gradient(135deg, var(--gold-soft), var(--gold) 65%, #a8762a); }
.mv-mango    { background: linear-gradient(135deg, #ffe3a8, #f6b73c 60%, #e08f1f); }
.mv-pista    { background: linear-gradient(135deg, var(--pistachio-soft), var(--pistachio) 65%, #5d8350); }
.mv-shots    { background: linear-gradient(135deg, #ffeef4, var(--rose-soft) 50%, var(--rose)); }
.mv-seasonal { background: linear-gradient(135deg, var(--rose-soft), var(--raspberry) 55%, var(--berry-dark)); }

.menu-card h3 { margin-bottom: 0.5rem; }

.menu-card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---------- Catering ---------- */
.catering {
  background:
    radial-gradient(ellipse 70% 60% at 90% 100%, rgba(232, 99, 140, 0.16), transparent 65%),
    linear-gradient(160deg, var(--berry-dark), var(--berry-deep));
  color: #f7e6ec;
}

.catering h2 { color: #fff; }
.catering h2 em { color: var(--rose); }

.catering-grid {
  display: grid;
  gap: 2.5rem;
}

.catering-copy > p {
  margin-top: 1.1rem;
  color: #ecd2dc;
}

.catering-list {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.9rem;
}

.catering-list li {
  padding-left: 1.5rem;
  position: relative;
  color: #ecd2dc;
}

.catering-list li::before {
  content: "❀";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 0.85rem;
  top: 0.2rem;
}

.catering-list strong { color: #fff; font-weight: 500; }

.catering-included {
  background: rgba(255, 251, 246, 0.07);
  border: 1px solid rgba(201, 150, 63, 0.4);
  border-radius: var(--radius);
  padding: 1.8rem;
  align-self: start;
}

.catering-included h3 {
  color: var(--gold-soft);
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}

.catering-included ul {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}

.catering-included li {
  padding-left: 1.5rem;
  position: relative;
  color: #f0dde5;
  font-size: 0.97rem;
}

.catering-included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Why ---------- */
.why { background: var(--ivory); }

.why-list {
  list-style: none;
  margin-top: clamp(2.2rem, 6vw, 3.2rem);
  display: grid;
  gap: 2.2rem;
}

.why-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.2rem;
  align-items: start;
  padding-bottom: 2.2rem;
  border-bottom: 1px dashed rgba(201, 150, 63, 0.4);
}

.why-list li:last-child { border-bottom: none; padding-bottom: 0; }

.why-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.2rem;
}

.why-list h3 { margin-bottom: 0.4rem; }
.why-list p { color: var(--ink-soft); }

/* ---------- Gallery ---------- */
.gallery { background: var(--cream); }

.insta-grid {
  margin-top: clamp(2.2rem, 6vw, 3.2rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.insta-tile {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.insta-tile:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lift);
}

.tile-icon { font-size: 2rem; color: rgba(255, 255, 255, 0.95); }

.tile-caption {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.03em;
}

.t-rose  { background: linear-gradient(150deg, var(--rose), var(--raspberry)); }
.t-berry { background: linear-gradient(150deg, var(--raspberry), var(--berry-dark)); }
.t-gold  { background: linear-gradient(150deg, var(--gold), #9a6f25); }
.t-pista { background: linear-gradient(150deg, var(--pistachio), #4f7344); }
.t-cream { background: linear-gradient(150deg, #f0b9cb, var(--rose)); }
.t-deep  { background: linear-gradient(150deg, var(--berry-dark), var(--berry-deep)); }

/* ---------- Testimonials ---------- */
.testimonials {
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(201, 150, 63, 0.14), transparent 60%),
    linear-gradient(200deg, var(--berry-dark), var(--berry-deep));
}

.light-h { color: #fff; }
.light-h em { color: var(--rose); }

.testimonial-grid {
  margin-top: clamp(2.2rem, 6vw, 3.2rem);
  display: grid;
  gap: 1.4rem;
}

.testimonial {
  background: rgba(255, 251, 246, 0.06);
  border: 1px solid rgba(232, 99, 140, 0.25);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: #f7e6ec;
  line-height: 1.6;
}

.testimonial footer {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gold-soft);
}

.testimonial footer span { color: #c79aab; font-weight: 300; }

/* ---------- FAQ ---------- */
.faq { background: var(--ivory); }

.faq-list {
  margin-top: clamp(2rem, 5vw, 2.8rem);
  display: grid;
  gap: 0.9rem;
}

.faq-list details {
  background: var(--cream);
  border: 1px solid rgba(201, 150, 63, 0.22);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.3rem;
  transition: box-shadow 0.25s ease;
}

.faq-list details[open] { box-shadow: var(--shadow); }

.faq-list summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--rose);
  transition: transform 0.25s ease;
}

.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-list details p {
  margin-top: 0.8rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* ---------- Booking ---------- */
.booking {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(232, 99, 140, 0.12), transparent 65%),
    var(--cream);
}

.booking-form {
  margin-top: clamp(2.2rem, 6vw, 3rem);
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 150, 63, 0.25);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 5vw, 2.6rem);
  display: grid;
  gap: 1.2rem;
}

.form-row { display: grid; gap: 1.2rem; }

.form-field { display: flex; flex-direction: column; gap: 0.4rem; }

.form-field label {
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid rgba(169, 27, 77, 0.18);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(232, 99, 140, 0.18);
}

.form-field.invalid input,
.form-field.invalid select,
.form-field.invalid textarea {
  border-color: var(--raspberry);
  background: #fdeef3;
}

.error-msg {
  font-size: 0.84rem;
  color: var(--raspberry);
  min-height: 0;
}

.form-alert {
  background: #fdeef3;
  border: 1.5px solid rgba(169, 27, 77, 0.35);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  color: var(--ink);
}

.form-alert a { font-weight: 500; text-decoration: underline; }

.form-success {
  margin-top: 2.5rem;
  text-align: center;
  background: var(--ivory);
  border: 1px solid rgba(127, 168, 111, 0.45);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(2rem, 6vw, 3rem);
}

.success-mark {
  font-size: 2.4rem;
  color: var(--rose);
  margin-bottom: 0.8rem;
}

.form-success p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--berry-dark), var(--berry-deep));
  color: #ecd2dc;
}

.site-footer .section-inner { padding-top: 4rem; padding-bottom: 2rem; }

.footer-grid {
  display: grid;
  gap: 2.2rem;
}

.footer-logo {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.7rem;
}

.footer-logo em { color: var(--rose); }

.footer-brand p:last-child { font-size: 0.95rem; color: #c79aab; max-width: 340px; }

.footer-col h4, .footer-cta h4 {
  font-family: var(--font-display);
  color: var(--gold-soft);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.footer-col ul { list-style: none; display: grid; gap: 0.55rem; }

.footer-col li, .footer-col a { font-size: 0.95rem; color: #ecd2dc; }

.footer-col a:hover { color: var(--rose); }

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(232, 99, 140, 0.2);
  text-align: center;
}

.footer-bottom p { font-size: 0.85rem; color: #b07f93; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .falooda-glass { animation: none; }
}

/* ============================================================
   Tablet and up
   ============================================================ */
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .testimonial-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-cta { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .menu-toggle { display: none; }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 1.8rem;
  }

  .site-nav .nav-cta { display: none; }
  .header-cta { display: inline-block; padding: 0.65rem 1.4rem; font-size: 0.95rem; }

  .hero-inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    text-align: left;
  }

  .hero-copy { text-align: left; }
  .hero-sub { margin-left: 0; }
  .hero-actions { justify-content: flex-start; }

  .falooda-glass { width: min(340px, 32vw); }

  .menu-grid { grid-template-columns: repeat(3, 1fr); }

  .catering-grid { grid-template-columns: 1.2fr 0.8fr; gap: 3.5rem; align-items: start; }

  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 0.9fr; }
  .footer-cta { grid-column: auto; }

  .tile-icon { font-size: 2.6rem; }
  .tile-caption { font-size: 0.9rem; }
}
