/* =========================
   Global Reset
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #d1495b;
  --orange: #f79256;
  --yellow: #f9c74f;
  --teal: #43bccd;
  --navy: #1f2d3d;
  --cream: #fff8ef;
  --white: #ffffff;
  --text: #2b2b2b;
  --muted: #666;
  --shadow: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 20px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1150px, 90%);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-tag {
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.section-heading h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.section-heading p {
  color: var(--muted);
}

h1, h2, h3 {
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: var(--navy);
}

p {
  margin-bottom: 16px;
}

/* =========================
   Header
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 248, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.inner-header {
  background: rgba(255, 255, 255, 0.95);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
}

.logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--red);
}

.btn-nav {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white !important;
  padding: 10px 18px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(31,45,61,0.45), rgba(31,45,61,0.45)),
    url('images/hero.jpg') center/cover no-repeat;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  color: var(--yellow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3.4rem;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 650px;
  color: #f3f3f3;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255,255,255,0.18);
  border: 2px solid rgba(255,255,255,0.4);
  color: white;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.28);
}

.hero-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h3 {
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.hero-card li {
  margin-bottom: 14px;
  font-size: 1rem;
}

/* =========================
   Layout Helpers
========================= */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.image-card img {
  box-shadow: var(--shadow);
}

/* =========================
   Cards
========================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
}

.icon-circle {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-size: 1.5rem;
  margin-bottom: 18px;
}

/* =========================
   Timeline
========================= */
.timeline {
  display: grid;
  gap: 24px;
  max-width: 850px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 22px;
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.timeline-item span {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--teal), #7ad7e2);
  color: white;
}

/* =========================
   Tips / CTA
========================= */
.tips-box,
.cta-panel,
.promo-box,
.qr-box,
.area-box {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tips-list li {
  margin-bottom: 14px;
}

.cta-panel {
  background: linear-gradient(135deg, #fff1dc, #ffe0c2);
}

.cta-panel h3 {
  font-size: 1.7rem;
  margin-bottom: 14px;
}

/* =========================
   Promo
========================= */
.promo-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.qr-box {
  text-align: center;
}

.qr-box img {
  max-width: 250px;
  margin: 0 auto 16px;
}

/* =========================
   Footer
========================= */
.site-footer {
  background: var(--navy);
  color: white;
  padding: 40px 0;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* =========================
   Inner Hero
========================= */
.inner-hero {
  background: linear-gradient(135deg, var(--red), var(--orange), var(--yellow));
  color: white;
  padding: 110px 0 80px;
  text-align: center;
}

.inner-hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* =========================
   Food Page
========================= */
.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.food-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.food-card:hover {
  transform: translateY(-8px);
}

.food-content {
  padding: 24px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.area-box h3 {
  margin-bottom: 12px;
  color: var(--navy);
}

.promo-banner {
  background: linear-gradient(135deg, var(--teal), #6dd5e1);
  color: white;
  padding: 35px;
  border-radius: var(--radius);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  box-shadow: var(--shadow);
}

/* =========================
   Popup
========================= */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup.show {
  display: flex;
}

.popup-content {
  background: white;
  padding: 35px;
  border-radius: var(--radius);
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
}

.close-popup {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* =========================
   Responsive
========================= */
@media (max-width: 992px) {
  .hero-content,
  .two-col,
  .promo-grid,
  .food-grid,
  .area-grid,
  .card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    font-size: 2.7rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 78px;
    right: 5%;
    background: white;
    flex-direction: column;
    width: 220px;
    padding: 20px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content,
  .two-col,
  .promo-grid,
  .food-grid,
  .area-grid,
  .card-grid,
  .promo-banner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 70px;
  }

  .hero h1,
  .inner-hero h1 {
    font-size: 2.2rem;
  }

  .section {
    padding: 65px 0;
  }

  .section-heading h2,
  h2 {
    font-size: 1.9rem;
  }
}@charset "utf-8";
/* CSS Document */

