
:root {
  --bg: #12100d;
  --surface: #1d1a16;
  --surface-2: #27221d;
  --gold: #c89b4d;
  --gold-soft: #e0c28c;
  --text: #f6f0e8;
  --muted: #d3c5b1;
  --line: rgba(255,255,255,0.08);
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: #2d241a;
  background: #fffaf4;
}
a { color: var(--gold); }
a:hover { color: #9b7435; text-decoration: none; }
.topbar {
  background: var(--bg);
  color: var(--muted);
  font-size: 14px;
  padding: 10px 0;
}
.topbar a { color: var(--muted); }
.site-header {
  background: rgba(18, 16, 13, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.navbar-brand img { height: 50px; width: auto; }
.navbar-dark .navbar-nav .nav-link { color: rgba(255,255,255,.86); font-weight: 600; }
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .active > .nav-link { color: var(--gold-soft); }
.btn-gold {
  background: var(--gold);
  color: #1a140d;
  border: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 24px;
}
.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
}
.hero {
  position: relative;
  color: white;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,10,8,.86), rgba(12,10,8,.45));
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { font-size: 56px; line-height: 1.05; font-weight: 800; margin-bottom: 22px; }
.hero p { font-size: 20px; max-width: 720px; color: #f2e5d1; }
.section { padding: 90px 0; }
.section-dark { background: var(--bg); color: var(--text); }
.section-soft { background: #f7efe2; }
.eyebrow { color: var(--gold); font-weight: 800; letter-spacing: .18em; text-transform: uppercase; font-size: 13px; margin-bottom: 14px; display: inline-block; }
.section-title { font-size: 40px; font-weight: 800; margin-bottom: 18px; }
.section-subtitle { color: #6f624f; font-size: 18px; max-width: 740px; }
.section-dark .section-subtitle { color: #d7c7af; }
.card-clean {
  background: white;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
}
.card-clean img { width: 100%; height: 260px; object-fit: cover; }
.card-body-custom { padding: 24px; }
.card-body-custom h3 { font-size: 24px; margin-bottom: 10px; font-weight: 700; }
.card-body-custom p { color: #6d6254; margin: 0; }
.feature-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  height: 100%;
}
.feature-box h4 { color: var(--text); font-weight: 700; }
.feature-box p { color: #d8cab6; margin-bottom: 0; }
.gallery-grid img {
  width: 100%; height: 240px; object-fit: cover;
  border-radius: 20px; box-shadow: 0 10px 28px rgba(0,0,0,.10);
}
.info-card {
  background: white;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,.06);
  padding: 28px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
}
.menu-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  height: 100%;
}
.menu-card h3 { font-size: 28px; font-weight: 800; margin-bottom: 18px; }
.menu-item { border-top: 1px dashed rgba(0,0,0,.15); padding: 16px 0; }
.menu-item:first-child { border-top: none; padding-top: 0; }
.menu-item h5 { font-weight: 700; margin: 0 0 6px; }
.menu-item p { margin: 0; color: #6f624f; }
.cta-box {
  background: linear-gradient(135deg, #1b1711, #2a2218);
  border-radius: 28px;
  padding: 42px;
  color: var(--text);
}
.cta-box p { color: #dfd2be; }
.footer {
  background: #15120f;
  color: #d4c4ae;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer a { color: var(--gold-soft); }
.small-note { font-size: 14px; color: #8e816f; }
.page-hero {
  background: linear-gradient(rgba(12,10,8,.82), rgba(12,10,8,.82)), url('assets/img/beryani/photo2.jpg') center/cover;
  color: white;
  padding: 110px 0 80px;
}
.page-hero h1 { font-size: 48px; font-weight: 800; }
@media (max-width: 991px) {
  .hero { min-height: 68vh; }
  .hero h1 { font-size: 42px; }
  .section { padding: 70px 0; }
  .section-title { font-size: 34px; }
}
@media (max-width: 576px) {
  .hero h1 { font-size: 34px; }
  .hero p { font-size: 17px; }
  .page-hero h1 { font-size: 34px; }
}
