/* ===================================================================
   Lazeez Mediterranean Grill — Rolleston
   Recreated from the original Canva site as clean HTML/CSS/JS
   =================================================================== */

:root {
  --blue:        #1d4f8f;   /* navbar + footer royal blue */
  --blue-dark:   #173f73;
  --yellow:      #f4b41a;   /* hero / order buttons */
  --yellow-glow: #ffd24d;
  --orange:      #f5a516;   /* delicious food section */
  --red:         #c41e2f;   /* red order button */
  --teal:        #84c3cf;   /* about section */
  --slate:       #436b5d;   /* what we offer section */
  --lightblue:   #ace0f1;   /* reviews section */
  --dark:        #111;
  --white:       #fff;
  --topbar-h:    38px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--topbar-h) + 70px); }

body {
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  font-size: 1rem;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,.25); }

.btn-yellow         { background: var(--yellow); color: #1a1a1a; }
.btn-yellow-outline { background: var(--yellow); color: #1a1a1a; }
.btn-red            { background: var(--red); color: #fff; border: 3px solid #fff; }
.btn-dark           { background: #111; color: #fff; border-radius: 40px; }
.btn-lightblue      { background: #9fd4ea; color: #2c4a55; border-radius: 40px; }

/* ===================================================================
   TOP STATUS STRIP
   =================================================================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--topbar-h);
  z-index: 1001;
  background: linear-gradient(90deg, #f4b41a 0%, #f6c63b 50%, #f4b41a 100%);
  color: #1a1308;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  box-shadow: 0 1px 6px rgba(0,0,0,.2);
}
.topbar p {
  margin: 0;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .3px;
  white-space: nowrap;
  text-align: center;
}
.topbar-short { display: none; }

/* ===================================================================
   NAVBAR
   =================================================================== */
.navbar {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  background: var(--blue);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
}
.nav-brand img { height: 42px; width: auto; }

.nav-links {
  display: flex;
  gap: 34px;
}
.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--yellow-glow); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #160d05 url('../images/hero-courtyard.jpg') center/cover no-repeat;
}
/* Strong dark overlay so the courtyard stays dim & moody behind the text */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 82% 55% at 50% 40%, rgba(0,0,0,.42) 0%, transparent 72%),
    linear-gradient(180deg,
      rgba(16,7,0,.74) 0%,
      rgba(20,9,0,.64) 42%,
      rgba(26,11,0,.52) 70%,
      rgba(40,16,0,.32) 100%);
}
/* Ember video screen-blends, but masked to the lower area so the top stays dark */
.hero-embers {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: .7;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 32%, rgba(0,0,0,.55) 58%, #000 100%);
          mask-image: linear-gradient(180deg, transparent 32%, rgba(0,0,0,.55) 58%, #000 100%);
}
/* Gentle warm ember glow at the very bottom (kept subtle) */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 36%;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  background:
    radial-gradient(120% 78% at 50% 130%, rgba(255,115,8,.42) 0%, rgba(255,80,0,.15) 38%, transparent 62%);
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 120px 20px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-logo { width: 230px; margin-bottom: 6px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); }

.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4.2rem, 13.5vw, 10rem);
  line-height: .92;
  letter-spacing: 3px;
  color: #f4bf1d;                 /* rich golden yellow */
  text-shadow:
    0 0 9px rgba(255,180,40,.40),
    0 0 26px rgba(255,140,15,.22),
    0 3px 8px rgba(0,0,0,.65);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.hero-subtitle {
  font-family: 'Archivo Black', 'Anton', sans-serif;
  font-size: clamp(1.25rem, 4.2vw, 2.7rem);
  letter-spacing: 2px;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,170,40,.45), 0 2px 5px rgba(0,0,0,.6);
  margin-top: 8px;
}
.hero-buttons {
  display: flex;
  gap: 22px;
  margin: 34px 0 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-buttons .btn { font-size: 1.15rem; padding: 18px 42px; }

.hero-location {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--yellow-glow);
  font-weight: 700;
}
.hero-location .hl-small { letter-spacing: 2px; font-size: .95rem; }
.hero-location .hl-big   { font-size: 1.7rem; letter-spacing: 2px; }
.hero-location .hl-deliver { color: #ffcf4a; font-size: 1.4rem; margin-top: 2px; }

/* ===================================================================
   ORDER / DELICIOUS FOOD
   =================================================================== */
.order-section {
  background: var(--orange);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 70px clamp(24px, 6vw, 90px);
}
.grunge-heading {
  font-family: 'Rye', 'Anton', serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.order-text p {
  font-size: 1.15rem;
  color: #3a2a05;
  max-width: 560px;
  margin-bottom: 30px;
}
.order-image img {
  margin: 0 auto;
  max-height: 460px;
  width: auto;
  filter: drop-shadow(0 18px 24px rgba(0,0,0,.2));
}

/* ===================================================================
   ABOUT
   =================================================================== */
.about-section {
  background: var(--teal);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding: 70px clamp(24px, 6vw, 90px);
}
.about-image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}
.about-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.about-text p {
  color: #f4fbfc;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

/* ===================================================================
   WHAT WE OFFER
   =================================================================== */
.offer-section {
  background: var(--slate);
  text-align: center;
  padding: 70px clamp(20px, 5vw, 80px) 90px;
  color: #fff;
}
.offer-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 1px;
}
.offer-subtitle {
  font-size: 1.2rem;
  margin: 8px 0 50px;
  opacity: .95;
}
.offer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  max-width: 1100px;
  margin: 0 auto 50px;
}
.offer-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(0,0,0,.18);
  transition: transform .25s ease;
}
.offer-card:hover { transform: translateY(-8px); }
.offer-card-img {
  background: #fff;
  border-radius: 14px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.offer-card-img img { width: 100%; height: 100%; object-fit: contain; }
.offer-card h3 {
  color: #111;
  margin-top: 18px;
  font-size: 1.4rem;
  letter-spacing: .5px;
}

/* ===================================================================
   REVIEWS
   =================================================================== */
.reviews-section {
  background: var(--lightblue);
  text-align: center;
  padding: 60px clamp(20px, 5vw, 80px) 80px;
}
.reviews-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--slate);
  margin-bottom: 50px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1150px;
  margin: 0 auto;
}
.review-card { padding: 0 10px; }
.review-card h3 {
  color: var(--blue);
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.review-card p {
  color: #2c4a66;
  font-size: 1.02rem;
  margin-bottom: 22px;
}
.stars { color: var(--blue); font-size: 1.5rem; letter-spacing: 3px; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer {
  background: var(--blue);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.footer-info {
  padding: 50px clamp(28px, 5vw, 70px);
}
.footer-logo { width: 230px; margin-bottom: 10px; }
.footer-brand {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 1px;
}
.footer-brand span {
  display: block;
  font-size: 1.05rem;
  letter-spacing: 3px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  margin-top: 4px;
}
.footer-block { margin-top: 26px; }
.footer-block h4 {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #cfe0f5;
}
.footer-block p { font-size: 1.05rem; }
.footer-block a:hover { color: var(--yellow-glow); }

/* Live opening-hours list (from SIPO API) */
.hours-list { list-style: none; margin: 0; padding: 0; max-width: 320px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 3px 0;
  font-size: 1.02rem;
}
.hours-list li .day { color: #cfe0f5; }
.hours-list li .time { text-align: right; white-space: nowrap; }
.hours-list li.today { color: var(--yellow-glow); font-weight: 700; }
.hours-list li.today .day { color: var(--yellow-glow); }
.hours-list li .closed-day { opacity: .65; }

/* Dine-in note in the contact section (echoes the top strip) */
.dine-in-note {
  display: inline-block;
  margin-top: 14px;
  background: linear-gradient(90deg, #f4b41a 0%, #f6c63b 50%, #f4b41a 100%);
  color: #1a1308;
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.3;
  padding: 8px 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,.2);
}
.footer-order-btn { margin-top: 30px; }

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.2);
  padding: 20px;
  text-align: center;
  font-size: .9rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-bottom .credits strong { color: var(--yellow-glow); }
.footer-bottom .credits a { transition: opacity .2s ease; }
.footer-bottom .credits a:hover strong { text-decoration: underline; opacity: .85; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 48px; height: 48px;
  background: var(--yellow);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0,0,0,.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .3s;
  z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 980px) {
  .offer-cards, .reviews-grid { grid-template-columns: 1fr; max-width: 460px; }
  .order-section, .about-section { grid-template-columns: 1fr; }
  .about-image { order: -1; }
  .order-image { order: -1; }
  .footer { grid-template-columns: 1fr; }
  .footer-image img { min-height: 260px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--blue-dark);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links a {
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-links a::after { display: none; }
  .hero-buttons { gap: 14px; }
  .hero-buttons .btn { padding: 15px 30px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .grunge-heading {
    font-family: 'Anton', sans-serif;
    font-size: clamp(2rem, 8.5vw, 2.8rem);
    letter-spacing: .5px;
    overflow-wrap: break-word;
  }
  .order-text p { font-size: 1.05rem; }
  .hero-logo { width: 175px; }
  .footer-brand { font-size: 2.3rem; }
  .footer-logo { width: 190px; }
}

/* Status strip: switch to the short message on phones */
@media (max-width: 640px) {
  .topbar-full  { display: none; }
  .topbar-short { display: block; }
  .topbar p     { font-size: .76rem; letter-spacing: 0; }
}
