/* ═══════════════════════════════════════
   BANGLA EKHANE — style.css
   ═══════════════════════════════════════ */

/* ── Variables ── */
:root {
  --bg:       #F5EDD8;
  --primary:  #8B2500;
  --accent:   #C8910A;
  --text:     #1C1C1C;
  --surface:  #FFF8EE;
  --white:    #ffffff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', sans-serif;
  --max-w:    1100px;
  --radius:   8px;
  --shadow:   0 4px 24px rgba(0,0,0,0.10);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: 1.1rem; }

/* ── Section wrapper ── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
}
.section-title {
  text-align: center;
  margin-bottom: 12px;
  color: var(--primary);
}
.section-subtitle {
  text-align: center;
  color: var(--accent);
  font-family: var(--font-heading);
  font-style: italic;
  margin-bottom: 48px;
  font-size: 1.05rem;
}

/* ── Alpona divider ── */
.alpona-divider {
  width: 100%;
  height: 40px;
  background-color: var(--bg);
  background-image: url('../assets/images/alpona-ribbon.png');
  background-repeat: repeat-x;
  background-position: center;
  background-size: auto 100%;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  border: none;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-accent  { background: var(--accent);  color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* ── Veg / Non-veg badge ── */
.badge {
  display: inline-block;
  width: 16px; height: 16px;
  border-radius: 3px;
  border: 2px solid currentColor;
  position: relative;
  flex-shrink: 0;
  margin-top: 2px;
}
.badge::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: currentColor;
}
.badge-veg    { color: #1a7a1a; }
.badge-nonveg { color: #c0392b; }

/* ══════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════ */
#navbar {
  position: sticky; top: 0;
  background: var(--surface);
  z-index: 100;
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,0.12); }
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.nav-brand img {
  border-radius: 50%; object-fit: cover;
  width: 44px; height: 44px;
  border: 2px solid var(--accent);
}
.nav-brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  line-height: 1.15;
  display: flex; flex-direction: column;
}
.nav-brand-name small {
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: 1px;
}
.nav-links {
  display: flex; align-items: center; gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta { padding: 8px 20px !important; font-size: 0.82rem !important; }
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: transform 0.2s;
}

/* ══════════════════════════════════════
   HERO
   ══════════════════════════════════════ */
#home { padding: 0; }
.hero-bg {
  min-height: 85vh;
  background: #4a1200;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: -20px;
  background-image: url('../assets/images/hero-bg-banner.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(2px) brightness(0.88) saturate(1.05);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,3,0,0.3) 0%, rgba(10,3,0,0.48) 100%);
  z-index: 0;
}
.page-baul {
  position: fixed;
  inset: 0;
  background-image: url('../assets/images/baul-motif.jpg');
  background-repeat: repeat;
  background-size: 25vw 25vw;
  opacity: 0.05;
  pointer-events: none;
  z-index: 10;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 40px 24px;
  max-width: 720px;
}
.hero-logo {
  width: 145px; height: 145px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(200,145,10,0.6);
  margin: 0 auto 20px;
  box-shadow: 0 0 40px rgba(200,145,10,0.3);
}
.hero-bengali {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 3px;
}
.hero-tagline {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 12px 0 40px;
  letter-spacing: 1px;
}
.launch-label {
  font-size: 0.78rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 20px;
}
.countdown {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 36px; flex-wrap: wrap;
}
.cd-block {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 14px 20px;
  min-width: 76px;
  text-align: center;
}
.cd-block span {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.cd-block label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 4px;
}
.cd-sep { font-size: 2rem; font-weight: 700; opacity: 0.4; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════
   GALLERY
   ══════════════════════════════════════ */
#gallery { background: var(--surface); padding-bottom: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.55s ease;
  filter: brightness(1);
}
.gallery-item:hover img {
  transform: scale(1.09);
  filter: brightness(1.08);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(139,37,0,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: italic;
  transform: translateY(6px);
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-overlay span { transform: translateY(0); }

/* ══════════════════════════════════════
   MENU
   ══════════════════════════════════════ */
#menu { background: var(--bg); padding: 0; }
#menu .section-inner { background: var(--bg); }
.menu-tabs {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 36px; flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 36px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.tab-btn.active,
.tab-btn:hover { background: var(--primary); color: var(--white); }
.tab-panel[hidden] { display: none; }
.fish-filters {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 2px 2px 14px;
  margin-bottom: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.fish-chip {
  flex-shrink: 0;
  padding: 6px 16px;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.fish-chip.active,
.fish-chip:hover { background: var(--accent); color: var(--white); }
.fish-hide { display: none !important; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}
.menu-group-label {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 22px 0 2px;
}
.menu-group-label:first-child { margin-top: 0; }
.menu-group-label span {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.menu-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--accent), transparent);
  opacity: 0.4;
}
.menu-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
  border-left: 3px solid var(--fish-color, transparent);
}
.menu-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.menu-card > div {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 12px;
  row-gap: 3px;
  align-items: baseline;
  grid-template-areas:
    "name  price"
    "bengali bengali";
}
.menu-card h3 { grid-area: name; font-size: 1rem; color: var(--primary); font-family: var(--font-heading); line-height: 1.3; }
.menu-card h3 small { font-weight: 400; color: #888; font-size: 0.78rem; }
.menu-price { grid-area: price; font-size: 0.92rem; font-weight: 700; color: var(--accent); white-space: nowrap; text-align: right; }
.menu-bengali { grid-area: bengali; font-family: var(--font-heading); font-size: 0.82rem; color: #888; line-height: 1.4; }

/* Fish-type accent colors */
.fish-katla   { --fish-color: #8B2500; }
.fish-rohu    { --fish-color: #b5651d; }
.fish-hilsa   { --fish-color: #C8910A; }
.fish-pabda   { --fish-color: #6b8e23; }
.fish-lote    { --fish-color: #8a6d3b; }
.fish-prawn   { --fish-color: #a63a50; }
.fish-koi     { --fish-color: #3f6b4a; }
.fish-mourola { --fish-color: #b08d57; }
.fish-bhetki  { --fish-color: #4a5a8a; }
.menu-group-label.fish-katla   span { color: #8B2500; }
.menu-group-label.fish-rohu    span { color: #b5651d; }
.menu-group-label.fish-hilsa   span { color: #C8910A; }
.menu-group-label.fish-pabda   span { color: #6b8e23; }
.menu-group-label.fish-lote    span { color: #8a6d3b; }
.menu-group-label.fish-prawn   span { color: #a63a50; }
.menu-group-label.fish-koi     span { color: #3f6b4a; }
.menu-group-label.fish-mourola span { color: #b08d57; }
.menu-group-label.fish-bhetki  span { color: #4a5a8a; }
.menu-group-label.fish-katla::after   { background: linear-gradient(to right, #8B2500, transparent); }
.menu-group-label.fish-rohu::after    { background: linear-gradient(to right, #b5651d, transparent); }
.menu-group-label.fish-hilsa::after   { background: linear-gradient(to right, #C8910A, transparent); }
.menu-group-label.fish-pabda::after   { background: linear-gradient(to right, #6b8e23, transparent); }
.menu-group-label.fish-lote::after    { background: linear-gradient(to right, #8a6d3b, transparent); }
.menu-group-label.fish-prawn::after   { background: linear-gradient(to right, #a63a50, transparent); }
.menu-group-label.fish-koi::after     { background: linear-gradient(to right, #3f6b4a, transparent); }
.menu-group-label.fish-mourola::after { background: linear-gradient(to right, #b08d57, transparent); }
.menu-group-label.fish-bhetki::after  { background: linear-gradient(to right, #4a5a8a, transparent); }
.menu-download {
  text-align: center;
  margin-top: 52px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.menu-download p { color: #666; font-size: 0.9rem; }

/* ══════════════════════════════════════
   CATERING
   ══════════════════════════════════════ */
#catering { background: var(--surface); }
.catering-inner { text-align: center; padding-top: 64px; padding-bottom: 72px; }
.catering-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 auto 18px;
  padding: 9px 20px 9px 16px;
  border-radius: 50px;
  background: linear-gradient(100deg, var(--primary), var(--accent), var(--primary));
  background-size: 220% 100%;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(139,37,0,0.3);
  animation: catering-sheen 3.5s ease-in-out infinite;
}
.catering-eyebrow .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff; flex: none;
  animation: catering-pulse 1.6s ease-in-out infinite;
}
@keyframes catering-sheen {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes catering-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  50%      { opacity: 0.6; box-shadow: 0 0 0 5px rgba(255,255,255,0); }
}
.catering-inner .section-subtitle { margin-bottom: 18px; }
.catering-copy {
  max-width: 560px;
  margin: 0 auto 26px;
  font-size: 1.02rem;
  color: #4a4a4a;
}
.catering-call-btn {
  font-size: 1.15rem !important;
  padding: 18px 44px !important;
  box-shadow: 0 8px 28px rgba(139,37,0,0.35);
}
.catering-phone {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════
   ABOUT
   ══════════════════════════════════════ */
#about { padding: 0; }
.about-cinematic {
  position: relative;
  min-height: 85vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.about-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,3,0,0.80) 0%, rgba(10,3,0,0.70) 100%);
}
.about-cinematic-inner {
  position: relative; z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 24px;
  text-align: center;
  color: var(--white);
}
.about-logo {
  width: 96px; height: 96px;
  border-radius: 50%; object-fit: cover;
  border: 2.5px solid rgba(200,145,10,0.7);
  box-shadow: 0 0 32px rgba(200,145,10,0.3);
  margin: 0 auto 20px;
  display: block;
}
.about-eyebrow {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 36px;
  line-height: 1.2;
}
.about-body p {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  text-align: left;
}
.about-body em { color: var(--accent); font-style: italic; }
.about-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 36px;
  justify-content: center;
}
.about-pills span {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(200,145,10,0.6);
  color: var(--white);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  backdrop-filter: blur(4px);
}

/* ── PROMO VIDEO ── */
#promo-video { padding: 0; }
.video-wrap {
  position: relative;
  max-width: 720px;
  margin: 32px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,0.18);
  background: #000;
}
.video-wrap video {
  display: block;
  width: 100%;
  height: auto;
}
.vid-unmute {
  position: absolute;
  bottom: 14px; right: 14px;
  background: rgba(0,0,0,0.55);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50px;
  padding: 7px 14px 7px 10px;
  display: flex; align-items: center; gap: 6px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
  transition: background 0.2s;
}
.vid-unmute:hover { background: rgba(0,0,0,0.75); }

/* ══════════════════════════════════════
   CONTACT
   ══════════════════════════════════════ */
#contact { background: var(--bg); padding: 0; }
#contact .section-inner { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-card h3 {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--accent);
  margin-bottom: 6px; font-family: var(--font-body);
}
.contact-card p { font-size: 0.95rem; line-height: 1.6; }
.contact-card a { color: var(--primary); font-weight: 700; }
.contact-note { font-size: 0.75rem !important; color: #999 !important; }
.hours-table { font-size: 0.9rem; border-collapse: collapse; }
.hours-table td { padding: 3px 20px 3px 0; vertical-align: top; }
.hours-note { font-size: 0.75rem !important; color: #999; padding-top: 8px !important; }
.contact-map iframe { border-radius: var(--radius); }

.google-review-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 40px;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.google-review-card h3 { margin-bottom: 8px; }
.google-review-card p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 16px; }
.google-review-qr {
  width: 130px;
  height: auto;
  flex-shrink: 0;
  border-radius: 12px;
}

/* ══════════════════════════════════════
   FEEDBACK
   ══════════════════════════════════════ */
#feedback { background: var(--surface); }
.feedback-wrapper { max-width: 560px; margin: 0 auto; }
.feedback-form { display: flex; flex-direction: column; gap: 20px; }
.feedback-form[hidden] { display: none; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem; font-weight: 700;
  color: var(--primary); letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); }
.star-rating { display: flex; gap: 4px; }
.star {
  font-size: 2.2rem; cursor: pointer;
  color: #c4a882; transition: color 0.15s;
  user-select: none; line-height: 1;
}
.star.active { color: var(--accent); }
.feedback-thanks {
  text-align: center; padding: 60px 0;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.feedback-thanks[hidden] { display: none; }
.thanks-icon { font-size: 3.5rem; }
.feedback-thanks h3 { font-size: 1.6rem; color: var(--primary); }
.feedback-thanks p { color: #555; font-size: 1rem; }
.feedback-google-cta {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius);
  width: 100%;
}
.feedback-google-cta p { font-size: 0.92rem; }
.feedback-again-link {
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: underline;
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
#footer { background: var(--primary); color: var(--white); }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 52px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.footer-brand { display: flex; gap: 16px; align-items: flex-start; }
.footer-brand img {
  border-radius: 50%; width: 56px; height: 56px;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(200,145,10,0.5);
}
.footer-name { font-family: var(--font-heading); font-size: 1.15rem; margin-bottom: 2px; }
.footer-bengali { color: var(--accent); font-size: 0.85rem; margin-bottom: 6px; letter-spacing: 1px; }
.footer-tagline { font-size: 0.78rem; opacity: 0.6; line-height: 1.5; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; opacity: 0.75; transition: opacity 0.2s; }
/* ══════════════════════════════════════
   FEEDBACK TOAST
   ══════════════════════════════════════ */
#feedback-toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-160px);
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 14px;
  padding: 18px 28px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  z-index: 9999;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease;
  pointer-events: none;
  min-width: 300px;
  overflow: hidden;
}
#feedback-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
#feedback-toast.hide {
  transform: translateX(-50%) translateY(-160px);
  opacity: 0;
}
.toast-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.toast-body strong { display: block; font-family: var(--font-heading); color: var(--primary); font-size: 1.05rem; }
.toast-body p { margin: 2px 0 0; font-size: 0.85rem; color: #555; }
.toast-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  background: var(--accent);
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
}
#feedback-toast.show .toast-progress {
  animation: toast-drain 3s linear forwards;
}
@keyframes toast-drain { from { transform: scaleX(1); } to { transform: scaleX(0); } }

.footer-links a:hover { opacity: 1; }
.footer-contact { font-size: 0.88rem; line-height: 1.9; opacity: 0.8; }
.footer-contact a { color: var(--accent); }
.footer-gst { font-size: 0.72rem; opacity: 0.5; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 16px 24px;
  font-size: 0.75rem;
  opacity: 0.45;
}

/* ══════════════════════════════════════
   FLOATING ORDER BUTTONS (shared width so the stack lines up)
   ══════════════════════════════════════ */
#whatsapp-float, #swiggy-float, #zomato-float, #district-float {
  min-width: 150px;
  justify-content: center;
}

/* ══════════════════════════════════════
   FLOATING WHATSAPP
   ══════════════════════════════════════ */
#whatsapp-float {
  position: fixed;
  bottom: 22px; right: 24px;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.76rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  animation: wa-bounce 3s ease-in-out infinite;
  transition: box-shadow 0.2s;
}
#whatsapp-float:hover { box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
@keyframes wa-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ══════════════════════════════════════
   FLOATING SWIGGY
   ══════════════════════════════════════ */
#swiggy-float {
  position: fixed;
  bottom: 76px; right: 24px;
  background: #FC8019;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.76rem;
  box-shadow: 0 4px 20px rgba(252,128,25,0.5);
  z-index: 999;
  animation: sw-bounce 3s ease-in-out infinite;
  animation-delay: 1.5s;
  transition: box-shadow 0.2s;
}
#swiggy-float:hover { box-shadow: 0 6px 28px rgba(252,128,25,0.7); }
#swiggy-float img { display: block; flex: none; }
@keyframes sw-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ══════════════════════════════════════
   FLOATING ZOMATO
   ══════════════════════════════════════ */
#zomato-float {
  position: fixed;
  bottom: 130px; right: 24px;
  background: #E23744;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.76rem;
  box-shadow: 0 4px 20px rgba(226,55,68,0.5);
  z-index: 999;
  animation: zo-bounce 3s ease-in-out infinite;
  animation-delay: 2.25s;
  transition: box-shadow 0.2s;
}
#zomato-float:hover { box-shadow: 0 6px 28px rgba(226,55,68,0.7); }
#zomato-float svg { flex: none; }
@keyframes zo-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ══════════════════════════════════════
   FLOATING DISTRICT
   ══════════════════════════════════════ */
#district-float {
  position: fixed;
  bottom: 184px; right: 24px;
  background: linear-gradient(135deg, #8B2FF0, #4B1FC4);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.76rem;
  box-shadow: 0 4px 20px rgba(107,40,220,0.5);
  z-index: 999;
  animation: ds-bounce 3s ease-in-out infinite;
  animation-delay: 3s;
  transition: box-shadow 0.2s;
}
#district-float:hover { box-shadow: 0 6px 28px rgba(107,40,220,0.7); }
#district-float svg { flex: none; }
@keyframes ds-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ══════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════ */
#lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-height: 88vh; max-width: 88vw;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
}
#lb-close {
  position: absolute; top: 20px; right: 28px;
  background: none; border: none; color: #fff;
  font-size: 2.5rem; cursor: pointer; line-height: 1;
  opacity: 0.8; transition: opacity 0.2s;
}
#lb-close:hover { opacity: 1; }
#lb-prev, #lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none; color: #fff;
  font-size: 2.5rem; cursor: pointer;
  padding: 12px 20px; border-radius: 4px;
  opacity: 0.8; transition: background 0.2s, opacity 0.2s;
}
#lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,0.22); opacity: 1; }
#lb-prev { left: 16px; }
#lb-next { right: 16px; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map iframe { height: 280px; }
  .google-review-card { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .page-baul { background-size: 50vw 50vw; opacity: 0.07; }
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .section-inner { padding: 56px 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .cd-block { padding: 10px 12px; min-width: 62px; }
  .cd-block span { font-size: 1.6rem; }
  .cd-sep { font-size: 1.5rem; }
  #whatsapp-float, #swiggy-float, #zomato-float, #district-float { min-width: 0; }
  #whatsapp-float span { display: none; }
  #whatsapp-float { padding: 12px; border-radius: 50%; bottom: 16px; right: 16px; }
  #swiggy-float span { display: none; }
  #swiggy-float { padding: 12px; border-radius: 50%; bottom: 64px; right: 16px; }
  #zomato-float span { display: none; }
  #zomato-float { padding: 12px; border-radius: 50%; bottom: 112px; right: 16px; }
  #district-float span { display: none; }
  #district-float { padding: 12px; border-radius: 50%; bottom: 160px; right: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  #lb-prev { left: 4px; }
  #lb-next { right: 4px; }
}
