/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #d4a017;
  --gold-light: #e8c547;
  --white: #ffffff;
  --black: #222222;
  --gray: #f7f7f7;
  --text-muted: #777;
}

html,
body {
  scroll-behavior: smooth;
  background: #111111;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Lato", sans-serif;
  color: var(--black);
  background: var(--white);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

/* Prevent gray strip between nav and hero */
.page > .hero:first-child {
  margin-top: 0;
}

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

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: #111111;
  z-index: 1000;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-logo {
  height: 76px;
  width: auto;
  display: block;
}

.nav-brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-en {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.nav-brand-zh {
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-links a.active {
  color: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #ffffff;
}

/* ===== PAGE WRAPPER ===== */
.page {
  padding-top: 0;
  background: var(--white);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  margin: 0 0 -4px 0;
  padding: 0;
  display: block;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 05%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.22) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.hero-tagline {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}

.hero-sub {
  font-size: 16px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 17px 42px;
  transition:
    background 0.2s,
    transform 0.2s;
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
section {
  padding: 90px 0;
  margin: 0;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 28px;
}

.welcome-divider {
  width: 52px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 28px;
}

/* ===== WELCOME ===== */
.welcome {
  background: var(--white);
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.welcome-text p {
  color: #444;
  line-height: 1.85;
  margin-bottom: 16px;
  font-size: 17px;
}

.welcome-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 32px;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 30px;
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

.contact-mini {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-mini a {
  font-size: 16px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.contact-mini a:hover {
  color: var(--gold);
}

/* Welcome visual collage */
.welcome-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 180px;
  gap: 10px;
}

.welcome-visual .img-door {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.welcome-visual .img-food-a {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.welcome-visual .img-food-b {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== HOURS ===== */
.hours {
  background: var(--black);
  color: var(--white);
}

.hours .section-title {
  color: var(--white);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
}

.hours-block h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 16px;
}

.hours-row .day {
  color: rgba(255, 255, 255, 0.65);
}
.hours-row .time {
  font-weight: 600;
}
.hours-row.closed .time {
  color: var(--gold);
}

.hours-note {
  margin-top: 40px;
  padding: 22px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(212, 160, 23, 0.08);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* ===== ADDRESS STRIP ===== */
.address-strip {
  background: var(--gold);
  padding: 38px 0;
}

.address-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  text-align: center;
}

.address-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.address-item span {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.address-sep {
  width: 1px;
  height: 36px;
  background: rgba(0, 0, 0, 0.18);
}

/* ===== AFHAAL PAGE ===== */
.afhaal-intro {
  background: var(--gray);
  padding: 72px 0 52px;
  text-align: center;
}

.afhaal-intro p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 10px;
}

.afhaal-note {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.afhaal-note:hover {
  background: var(--gold-light);
}

.afhaal-menus {
  padding: 64px 0 90px;
  background: var(--white);
}

.afhaal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.menu-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.menu-card img {
  width: 100%;
  display: block;
}

.menu-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 40px;
  color: var(--white);
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
  background: none;
  border: none;
}
.lightbox-close:hover {
  opacity: 1;
}

/* ===== PHOTOS PAGE ===== */
.photos-header {
  background: var(--gray);
  padding: 64px 0 44px;
  text-align: center;
}

.photo-grid {
  padding: 52px 0 90px;
  background: var(--white);
}

.photo-grid .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.photo-item {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-item:hover img {
  transform: scale(1.06);
}

/* ===== CONTACT PAGE ===== */
.contact-header {
  background: var(--gray);
  padding: 64px 0 44px;
  text-align: center;
}

.contact-body {
  padding: 70px 0 90px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 32px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.contact-row-text strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.contact-row-text span,
.contact-row-text a {
  font-size: 17px;
  color: var(--black);
  line-height: 1.6;
}

.contact-row-text a:hover {
  color: var(--gold);
}

.map-wrapper {
  width: 100%;
  height: 440px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
  padding: 30px 20px;
  font-size: 15px;
}

footer a {
  color: var(--gold);
}

/* ===== MOBILE ===== */
@media (max-width: 960px) {
  .nav-inner {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    background: #111111;
    flex-direction: column;
    align-items: center;
    gap: 0;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.open {
    display: flex;
  }
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  .nav-links a {
    display: block;
    padding: 18px;
    font-size: 15px;
  }
  .nav-links a::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .container {
    padding: 0 24px;
  }

  .welcome-grid,
  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .welcome-visual {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 140px;
  }

  .afhaal-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .address-inner {
    gap: 20px;
  }
  .address-sep {
    display: none;
  }

  section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .nav-brand-en {
    font-size: 17px;
  }
  .nav-brand-zh {
    font-size: 13px;
  }
  .nav-logo {
    height: 48px;
  }

  .welcome-visual {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 160px 140px;
  }
  .welcome-visual .img-door {
    grid-column: 1;
    grid-row: 1;
  }
  .welcome-visual .img-food-a {
    grid-column: 1;
    grid-row: 2;
  }
  .welcome-visual .img-food-b {
    grid-column: 1;
    grid-row: 3;
  }
}

/* ===== NEWS ===== */
.news-section {
  background: var(--white);
  padding: 80px 0;
  margin-top: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 16px;
}

.news-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.news-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
  line-height: 1.3;
}

.news-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

.news-empty {
  color: var(--text-muted);
  font-size: 16px;
}
