﻿:root {
  --primary: #f5a623;
  --primary-soft: #ffd36d;
  --dark: #111111;
  --dark-2: #181818;
  --dark-3: #222222;
  --white: #ffffff;
  --muted: #b9b9b9;
  --border: rgba(255, 255, 255, 0.1);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", "Hind Siliguri", sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

section {
  padding: 92px 0;
}

.section-kicker {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.section-title {
  font-family: "Hind Siliguri", "Poppins", sans-serif;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 18px;
}

.section-text {
  color: var(--muted);
  line-height: 1.8;
}

.text-orange {
  color: var(--primary);
}

.bg-soft-dark {
  background: var(--dark-2);
}

.btn-brand,
.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-brand {
  color: #111111;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  border: 0;
  box-shadow: 0 14px 30px rgba(245, 166, 35, 0.25);
}

.btn-outline-brand {
  color: var(--white);
  border: 1px solid rgba(245, 166, 35, 0.65);
}

.btn-brand:hover,
.btn-outline-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(245, 166, 35, 0.28);
}

.btn-outline-brand:hover {
  color: #111111;
  background: var(--primary);
}

.navbar {
  background: rgba(17, 17, 17, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.navbar.scrolled {
  background: rgba(17, 17, 17, 0.96);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Hind Siliguri", "Poppins", sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  line-height: 1;
  color: #ffffff !important;
  text-shadow: 0 2px 14px rgba(245, 166, 35, 0.45);
}

.navbar .navbar-brand span {
  color: var(--primary) !important;
  font-weight: 900;
  opacity: 1 !important;
  -webkit-text-fill-color: var(--primary) !important;
}

.navbar .navbar-brand span::first-letter {
  color: var(--primary);
}

.brand-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.navbar .brand-logo {
  width: 92px !important;
  height: 92px !important;
}

.nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  margin: 0 4px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.15rem rgba(245, 166, 35, 0.35);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.hero {
  position: relative;
  min-height: 91vh;
  display: flex;
  align-items: center;
  padding: 130px 0 78px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.78) 48%, rgba(17, 17, 17, 0.42) 100%),
    url("../images/hero/ei-mama-hero-food.jpg") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0), #111111);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(245, 166, 35, 0.38);
  border-radius: 999px;
  padding: 9px 15px;
  color: var(--primary-soft);
  background: rgba(245, 166, 35, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: "Hind Siliguri", "Poppins", sans-serif;
  font-size: clamp(2.45rem, 5vw, 5.4rem);
  font-weight: 900;
  line-height: 1.08;
  max-width: 760px;
  margin-bottom: 22px;
}

.hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  max-width: 590px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: 22px;
  color: var(--muted);
  font-weight: 600;
}

.hero-stat i {
  color: var(--primary);
}

.page-hero {
  position: relative;
  padding: 142px 0 84px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(17, 17, 17, 0.72)),
    url("../images/hero/ei-mama-hero-food.jpg") center / cover no-repeat;
}

.page-hero h1 {
  font-family: "Hind Siliguri", "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}

.breadcrumb-lite {
  color: var(--muted);
}

.breadcrumb-lite span {
  color: var(--primary);
}

.feature-panel,
.review-card,
.contact-panel,
.special-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.feature-panel {
  padding: 34px;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #111111;
  background: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.food-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #171717;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.food-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 166, 35, 0.55);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
}

.food-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #242424;
}

.food-card-body {
  padding: 22px;
}

.food-card h3 {
  font-family: "Hind Siliguri", "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 9px;
}

.food-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.price {
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 800;
}

.special-panel {
  padding: 40px;
  background:
    linear-gradient(135deg, rgba(245, 166, 35, 0.18), rgba(255, 255, 255, 0.04)),
    #171717;
}

.special-image {
  border-radius: 8px;
  border: 1px solid rgba(245, 166, 35, 0.22);
  box-shadow: var(--shadow);
}

.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  margin-bottom: 13px;
}

.check-list i {
  color: var(--primary);
  margin-top: 4px;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.gallery-item::after {
  content: "\f00e";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #111111;
  font-size: 1.45rem;
  background: rgba(245, 166, 35, 0.78);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
}

.shop-story {
  border: 1px solid rgba(245, 166, 35, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: var(--shadow);
}

.shop-story-image {
  position: relative;
  display: block;
  height: 100%;
  min-height: 430px;
  overflow: hidden;
}

.shop-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.shop-story-image:hover img {
  transform: scale(1.035);
}

.shop-story-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 10px 16px;
  color: #111111;
  background: var(--primary);
  font-weight: 800;
}

.shop-moment-card {
  height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #171717;
}

.shop-moment-card i {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.shop-moment-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 9px;
}

.shop-moment-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.review-card {
  height: 100%;
  padding: 28px;
}

.stars {
  color: var(--primary);
  margin-bottom: 16px;
}

.review-card p {
  color: var(--muted);
  line-height: 1.75;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #111111;
  font-weight: 800;
}

.menu-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.filter-btn {
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--white);
  background: #171717;
  padding: 10px 16px;
  font-weight: 700;
}

.filter-btn.active,
.filter-btn:hover {
  color: #111111;
  border-color: var(--primary);
  background: var(--primary);
}

.contact-panel {
  padding: 34px;
}

.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.contact-info i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  border-radius: 8px;
  color: #111111;
  background: var(--primary);
}

.form-control,
.form-select {
  color: var(--white);
  background: #171717;
  border-color: var(--border);
  min-height: 50px;
}

.form-control:focus,
.form-select:focus {
  color: var(--white);
  background: #171717;
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.18);
}

.form-control::placeholder {
  color: #777777;
}

.map-placeholder {
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #171717;
}

.map-placeholder iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.85) invert(0.9);
}

.cta-band {
  padding: 58px 0;
  background:
    linear-gradient(135deg, rgba(245, 166, 35, 0.9), rgba(255, 211, 109, 0.92)),
    #f5a623;
  color: #111111;
}

.cta-band h2 {
  font-family: "Hind Siliguri", "Poppins", sans-serif;
  font-weight: 900;
}

.site-footer {
  padding: 62px 0 24px;
  border-top: 1px solid var(--border);
  background: #0c0c0c;
}

.footer-title {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.site-footer p {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 11px;
  margin-top: 18px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #111111;
  background: var(--primary);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: #8f8f8f;
  font-size: 0.92rem;
}

.whatsapp-float,
.scroll-top {
  position: fixed;
  right: 20px;
  z-index: 1000;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.whatsapp-float {
  bottom: 82px;
  color: #ffffff;
  background: #25d366;
  font-size: 1.45rem;
}

.scroll-top {
  bottom: 22px;
  color: #111111;
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.88);
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: min(920px, 94vw);
  max-height: 82vh;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
