/* =====================
   CSS VARIABLES & RESET
   ===================== */
:root {
  --bg: hsl(38, 50%, 96%);
  --fg: hsl(20, 42%, 12%);
  --primary: hsl(138, 37%, 21%);
  --primary-fg: hsl(38, 50%, 96%);
  --secondary: hsl(29, 53%, 36%);
  --secondary-fg: hsl(38, 50%, 96%);
  --accent: hsl(16, 56%, 48%);
  --muted: hsl(36, 31%, 87%);
  --muted-fg: hsl(20, 15%, 31%);
  --card: hsl(38, 45%, 98%);
  --border: hsl(36, 31%, 80%);
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-bengali: 'Hind Siliguri', sans-serif;
  --radius: 0.75rem;
  --shadow: 0 2px 12px rgba(44,26,18,0.08);
  --shadow-lg: 0 8px 32px rgba(44,26,18,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-serif); line-height: 1.2; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.bengali { font-family: var(--font-bengali); color: var(--secondary); font-weight: 500; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--secondary);
}
.section-label.light { color: rgba(255,255,255,0.7); }

/* ======== BUTTONS ======== */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.6rem 1.4rem; border-radius: 999px;
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s ease;
}
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; height: 3.5rem; }
.btn-primary { background: var(--primary); color: var(--primary-fg); }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-secondary { background: var(--secondary); color: var(--secondary-fg); box-shadow: 0 4px 16px rgba(139,90,43,0.25); }
.btn-secondary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-outline { background: var(--bg); border-color: var(--border); color: var(--fg); }
.btn-outline:hover { background: var(--muted); }
.btn-outline-green { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn-outline-green:hover { background: rgba(44,90,54,0.08); }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: #f5f5f5; }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.4); color: var(--fg); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

/* ======== NAVBAR ======== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(250,245,237,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 5rem; gap: 1rem;
}
.brand { display: flex; flex-direction: column; }
.brand-en { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.brand-bn { font-family: var(--font-bengali); font-size: 0.85rem; color: var(--secondary); font-weight: 600; margin-top: -2px; }
.nav-links { display: flex; gap: 2rem; font-size: 0.9rem; font-weight: 500; }
.nav-links a { color: var(--fg); transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.hide-sm { display: inline; }
.show-sm { display: none; }

/* ======== HERO ======== */
.hero {
  padding: 8rem 0 5rem;
  position: relative;
  background: radial-gradient(ellipse at 70% 50%, rgba(44,90,54,0.04) 0%, transparent 70%);
}
.hero-inner {
  display: flex; align-items: center; gap: 4rem;
  flex-wrap: wrap;
}
.hero-text { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 1.5rem; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border); padding: 0.4rem 1rem;
  border-radius: 999px; width: fit-content;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted-fg);
}
.stars { color: var(--accent); font-size: 0.9rem; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; color: var(--fg); }
.hero h1 em { color: var(--primary); font-style: italic; }
.hero p { font-size: 1.1rem; color: var(--muted-fg); max-width: 480px; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.hero-image { flex: 1; min-width: 280px; position: relative; }
.hero-img-wrap {
  position: relative; border-radius: 1.5rem; overflow: hidden;
  border: 4px solid white; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.3), transparent); }
.floating-badge {
  position: absolute; bottom: -1.5rem; left: -2rem;
  background: var(--card); padding: 1rem 1.2rem;
  border-radius: 1rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.8rem;
  animation: floatBadge 3s ease-in-out infinite;
}
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.float-icon { font-size: 1.8rem; background: rgba(44,90,54,0.1); width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.float-title { font-family: var(--font-serif); font-weight: 700; font-size: 1rem; }
.float-sub { font-size: 0.8rem; color: var(--muted-fg); }

/* ======== HIGHLIGHTS ======== */
.highlights {
  padding: 3.5rem 0;
  background: rgba(44,90,54,0.04);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 2.5rem; }
.highlight-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.75rem; }
.hi-icon { font-size: 1.5rem; width: 3rem; height: 3rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.hi-icon.green { background: rgba(44,90,54,0.1); }
.hi-icon.red { background: rgba(200,60,60,0.1); }
.hi-icon.orange { background: rgba(200,100,40,0.1); }
.highlight-item h3 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; }
.highlight-item p { font-size: 0.875rem; color: var(--muted-fg); }

/* ======== ABOUT ======== */
.about { padding: 6rem 0; }
.about-inner { display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.about-img { flex: 1; min-width: 280px; }
.about-img-wrap { border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.about-img-wrap:hover img { transform: scale(1.05); }
.about-text { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 1.25rem; }
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.about-text p { font-size: 1.05rem; color: var(--muted-fg); }
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem; }
.check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.check-item h4 { font-family: var(--font-sans); font-weight: 700; font-size: 0.95rem; }
.check-item p { font-size: 0.82rem; color: var(--muted-fg); margin-top: 0.2rem; }

/* ======== MENU ======== */
.menu { padding: 6rem 0; background: rgba(36,31,20,0.03); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 4rem; display: flex; flex-direction: column; gap: 0.75rem; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
.section-header p { font-size: 1.05rem; color: var(--muted-fg); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.menu-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow 0.3s, transform 0.3s; }
.menu-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-top { height: 0.35rem; width: 100%; }
.green-bar { background: var(--primary); }
.orange-bar { background: var(--accent); }
.brown-bar { background: var(--secondary); }
.card-body { padding: 2rem; }
.card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.25rem; }
.card-icon { font-size: 2.2rem; }
.card-bn { font-family: var(--font-bengali); color: var(--secondary); font-size: 1rem; font-weight: 500; }
.card-body h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 1rem; }
.menu-list { display: flex; flex-direction: column; gap: 0; }
.menu-list li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.menu-list li:last-child, .menu-list li.no-border { border-bottom: none; }
.menu-list li span:last-child { font-family: monospace; font-size: 0.85rem; color: var(--muted-fg); white-space: nowrap; }

/* Special Card */
.special-card {
  margin-top: 2rem; border-radius: var(--radius);
  background: var(--primary); color: var(--primary-fg);
  padding: 2.5rem 3rem; position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(44,90,54,0.3);
}
.special-glow1 { position: absolute; top: -4rem; right: -4rem; width: 16rem; height: 16rem; background: rgba(200,100,40,0.15); border-radius: 50%; filter: blur(40px); pointer-events: none; }
.special-glow2 { position: absolute; bottom: -4rem; left: -4rem; width: 16rem; height: 16rem; background: rgba(139,90,43,0.2); border-radius: 50%; filter: blur(40px); pointer-events: none; }
.special-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.special-left { display: flex; gap: 1.5rem; align-items: flex-start; }
.special-icon { font-size: 2rem; width: 3.5rem; height: 3.5rem; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.special-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.7; }
.special-left h3 { font-size: 1.6rem; font-weight: 700; margin: 0.3rem 0; }
.special-left p { opacity: 0.8; max-width: 380px; }
.special-right { text-align: right; flex-shrink: 0; }
.special-price { font-family: monospace; font-size: 2.5rem; font-weight: 700; }
.special-right p { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; opacity: 0.7; margin-top: 0.25rem; }

/* ======== REVIEWS ======== */
.reviews { padding: 6rem 0; background: rgba(44,90,54,0.04); }
.reviews-header { text-align: center; margin-bottom: 3rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.stars-big { color: var(--accent); font-size: 1.5rem; letter-spacing: 2px; }
.rating-text { font-weight: 700; font-size: 1rem; }
.reviews-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 700; margin-top: 0.5rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; max-width: 1000px; margin: 0 auto; }
.review-card { background: var(--card); border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow); position: relative; transition: box-shadow 0.3s; }
.review-card:hover { box-shadow: var(--shadow-lg); }
.quote-mark { font-family: var(--font-serif); font-size: 4rem; line-height: 1; color: rgba(44,90,54,0.15); display: block; margin-bottom: 0.5rem; }
.review-card p { font-size: 0.95rem; color: var(--muted-fg); font-style: italic; margin-bottom: 1.5rem; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.green-av { background: rgba(44,90,54,0.1); color: var(--primary); }
.brown-av { background: rgba(139,90,43,0.1); color: var(--secondary); }
.orange-av { background: rgba(200,100,40,0.1); color: var(--accent); }
.reviewer h4 { font-family: var(--font-sans); font-weight: 700; font-size: 0.9rem; }
.reviewer p { font-size: 0.78rem; color: var(--muted-fg); margin: 0; font-style: normal; }

/* ======== VISIT ======== */
.visit { padding: 6rem 0; background: var(--primary); color: var(--primary-fg); position: relative; overflow: hidden; }
.visit-bg-circle { position: absolute; top: 0; right: 0; width: 600px; height: 600px; background: rgba(255,255,255,0.05); border-radius: 50%; transform: translate(30%, -50%); pointer-events: none; }
.visit-inner { display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; position: relative; z-index: 1; }
.visit-info { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 1rem; }
.visit-info h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin: 0.5rem 0 1.5rem; }
.info-list { display: flex; flex-direction: column; gap: 2rem; margin-bottom: 1rem; }
.info-item { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon { font-size: 1.3rem; width: 3rem; height: 3rem; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-item h4 { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.25rem; }
.info-item p { opacity: 0.8; font-size: 0.95rem; }
.info-item small { opacity: 0.6; font-size: 0.8rem; display: block; margin-top: 0.25rem; }
.info-item a { opacity: 0.8; font-size: 1.1rem; transition: opacity 0.2s; }
.info-item a:hover { opacity: 1; text-decoration: underline; }
.visit-map { flex: 1; min-width: 280px; }
.map-placeholder {
  background: var(--card); border-radius: 1.5rem; padding: 1rem;
  min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 2px dashed var(--border); gap: 0.75rem; text-align: center;
}
.map-placeholder h3 { font-size: 1.4rem; color: var(--fg); }
.map-placeholder p { color: var(--muted-fg); font-size: 0.95rem; }
.map-pin-wrap { position: relative; width: 5rem; height: 5rem; display: flex; align-items: center; justify-content: center; }
.pin-pulse { position: absolute; inset: 0; background: rgba(44,90,54,0.2); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.3); opacity: 0.2; } }
.map-pin-icon { font-size: 2.5rem; position: relative; z-index: 1; }

/* ======== FOOTER ======== */
.footer { background: var(--bg); padding: 3.5rem 0; border-top: 1px solid var(--border); text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.2rem; }
.footer-brand .brand-en { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.footer-brand .brand-bn { font-family: var(--font-bengali); font-size: 1.1rem; color: var(--secondary); font-weight: 500; }
.footer-desc { color: var(--muted-fg); font-size: 0.875rem; max-width: 440px; margin-top: 0.5rem; }
.footer-copy { font-size: 0.75rem; color: var(--muted-fg); opacity: 0.6; margin-top: 1.5rem; }

/* ======== ANIMATIONS ======== */
.fade-up { opacity: 0; transform: translateY(28px); animation: fadeUp 0.7s ease forwards; }
.delay-2 { animation-delay: 0.25s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

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

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hide-sm { display: none; }
  .show-sm { display: inline; }
  .hero { padding: 7rem 0 4rem; }
  .hero-inner { flex-direction: column; gap: 2.5rem; }
  .floating-badge { left: 0; }
  .about-inner { flex-direction: column; }
  .checklist { grid-template-columns: 1fr; }
  .special-card { padding: 1.75rem; }
  .special-inner { flex-direction: column; gap: 1rem; }
  .special-right { text-align: left; }
  .visit-inner { flex-direction: column; }
  .menu-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
