@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Mulish:wght@400;500;600;700&display=swap');

:root {
  --navy: #0c1b2e;
  --navy-light: #142a45;
  --navy-lighter: #1c3554;
  --gold: #c9a24b;
  --gold-light: #e3c988;
  --cream: #f7f3ea;
  --text-light: #eef1f6;
  --text-muted: #b8c3d4;
  --radius: 18px;
  --shadow: 0 20px 50px -20px rgba(0,0,0,0.45);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Mulish', sans-serif;
  background: var(--cream);
  color: #1c2430;
  line-height: 1.55;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  margin: 0;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 14px;
}

.section-lead {
  color: #5a6472;
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

/* ---------- Header ---------- */
header.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(12, 27, 46, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201,162,75,0.18);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
}
.brand img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.brand .brand-name { font-family:'Playfair Display',serif; font-weight:700; font-size:1.15rem; color: var(--gold-light); line-height:1.1; }
.brand .brand-sub { font-size: 0.65rem; letter-spacing: 0.15em; color: var(--text-muted); }

nav.main-nav { display: flex; gap: 30px; }
nav.main-nav a {
  color: var(--text-light);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s;
}
nav.main-nav a:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 16px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  transition: all 0.2s ease;
}
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { border-color: rgba(255,255,255,0.35); color: var(--text-light); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5a; }
.btn-deliveroo { background: #00CCBC; color: #0c1b2e; }
.btn-deliveroo:hover { background: #00b3a4; }
.btn-ubereats { background: #06C167; color: #fff; }
.btn-ubereats:hover { background: #05a857; }
.btn-block { width: 100%; }

.menu-toggle { display: none; background: none; border: none; color: var(--gold-light); font-size: 1.6rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,17,29,0.75) 0%, rgba(8,17,29,0.55) 45%, rgba(8,17,29,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 40px 28px;
  margin-top: 76px;
}
.hero-badge {
  width: 108px; height: 108px;
  border-radius: 50%;
  margin: 0 auto 26px;
  border: 3px solid var(--gold);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-badge img { width: 100%; height: 100%; object-fit: cover; }
.hero-content .eyebrow { color: var(--gold-light); }
.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.hero-content .hero-sub {
  letter-spacing: 0.3em;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 22px;
}
.hero-content p.tagline {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-dots {
  position: absolute; bottom: 28px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px; z-index: 2;
}
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.4);
  padding: 0;
}
.hero-dots button.active { background: var(--gold); }

/* ---------- Delivery / order options ---------- */
.delivery-section {
  padding: 56px 0;
  background: #fff;
  text-align: center;
  border-bottom: 1px solid #eee3cd;
}
.delivery-section h2 { color: var(--navy); font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin-bottom: 8px; }
.delivery-section p.delivery-lead { color: #6a7280; max-width: 560px; margin: 0 auto 24px; }
.delivery-options { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.delivery-options .btn { padding: 14px 28px; font-size: 0.92rem; }

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--navy);
  color: #fff;
  padding: 46px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(3,1fr); text-align: center; gap: 20px; }
.stats-grid .num { font-family:'Playfair Display',serif; font-size: 2.4rem; color: var(--gold); font-weight:700; }
.stats-grid .label { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; }

/* ---------- Menu section ---------- */
.menu-section { padding: 100px 0 80px; background: var(--cream); }

.menu-toolbar {
  display: flex; justify-content: center; margin-bottom: 40px;
}
.menu-search {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.menu-search input {
  width: 100%;
  padding: 14px 20px 14px 46px;
  border-radius: 999px;
  border: 1.5px solid #ddd3bd;
  background: #fff;
  font-size: 0.95rem;
  outline: none;
}
.menu-search input:focus { border-color: var(--gold); }
.menu-search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); opacity: 0.5; }

.menu-count { text-align:center; color:#8a7f68; font-size:0.85rem; margin-bottom: 24px; letter-spacing:0.05em; text-transform:uppercase;}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  list-style: none;
  padding: 0; margin: 0;
}
@media (max-width: 980px) { .menu-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px) { .menu-grid { grid-template-columns: 1fr; } }

.dish-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px -14px rgba(20,30,50,0.25);
  border: 1px solid #eee3cd;
  display: flex; flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.dish-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; }
.dish-index {
  position: absolute; top: 14px; left: 14px;
  background: rgba(12,27,46,0.75);
  color: var(--gold);
  font-weight: 700; font-size: 0.75rem;
  padding: 6px 10px; border-radius: 8px;
  backdrop-filter: blur(4px);
}
.dish-price {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800; font-size: 0.85rem;
  padding: 6px 12px; border-radius: 999px;
}
.dish-body { padding: 18px 20px 22px; display:flex; flex-direction:column; gap: 6px; flex:1; }
.dish-name { font-size: 1.12rem; color: var(--navy); }
.dish-note { color: #7a7267; font-size: 0.85rem; }
.dish-actions { margin-top: auto; padding-top: 14px; }
.dish-actions .btn { width: 100%; padding: 10px 18px; font-size: 0.85rem; }

.no-results { text-align:center; padding: 60px 0; color:#8a7f68; grid-column: 1/-1; }

/* ---------- Reservation ---------- */
.reservation-section {
  padding: 90px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
}
.reservation-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .reservation-grid { grid-template-columns: 1fr; } }

.reservation-info .eyebrow { color: var(--gold); }
.reservation-info h2 { color: #fff; margin-bottom: 18px; }
.reservation-info p { color: var(--text-muted); margin-bottom: 26px; }
.reservation-info ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:14px; }
.reservation-info li { display:flex; gap:12px; align-items:flex-start; color: var(--text-muted); font-size:0.95rem;}
.reservation-info li b { color:#fff; }

.res-form {
  background: var(--navy-light);
  border: 1px solid rgba(201,162,75,0.25);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 80px; }
.field select option { color: #000; }

/* ---------- About ---------- */
.about-section { padding: 100px 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3.2;}
.about-media img { width:100%; height:100%; object-fit:cover; }
.about-text .eyebrow { }
.about-text h2 { color: var(--navy); margin-bottom: 18px; }
.about-text p { color: #5a6472; margin-bottom: 16px; }

/* ---------- Contact ---------- */
.contact-section { padding: 90px 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: #fff; border-radius: var(--radius);
  padding: 30px; text-align: center;
  border: 1px solid #eee3cd;
}
.contact-card .icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 16px; font-size: 1.3rem;
}
.contact-card h4 { color: var(--navy); margin-bottom: 8px; }
.contact-card p { color: #6a7280; font-size: 0.92rem; margin: 2px 0; }

/* ---------- Footer ---------- */
footer.site-footer { background: #081018; color: var(--text-muted); padding: 60px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display:flex; gap: 12px; align-items:center; margin-bottom: 14px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; }
.footer-brand span { font-family:'Playfair Display',serif; color:#fff; font-weight:700; }
footer h5 { color: #fff; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
footer ul { list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:10px; }
footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; text-align:center; font-size:0.82rem; color:#5b6577; }

/* ---------- Floating WhatsApp button ---------- */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; box-shadow: 0 10px 25px -8px rgba(37,211,102,0.6);
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 100px; right: 24px; z-index: 200;
  background: var(--navy); color: #fff; padding: 14px 20px;
  border-radius: 12px; border: 1px solid rgba(201,162,75,0.4);
  box-shadow: var(--shadow);
  transform: translateY(20px); opacity: 0; pointer-events: none;
  transition: all 0.3s ease;
  max-width: 320px; font-size: 0.9rem;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* ---------- Mobile nav ---------- */
@media (max-width: 860px) {
  nav.main-nav {
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(201,162,75,0.2);
    display: none;
  }
  nav.main-nav.open { display: flex; }
  .nav-actions .btn-outline { display:none; }
  .menu-toggle { display: block; }
}

.skip-hidden { display:none !important; }
