* {
  box-sizing: border-box;
}

:root {
  --pink-100: #ffd8e8;
  --pink-200: #ffbfd9;
  --pink-300: #ff90bf;
  --pink-600: #de2f84;
  --white: #ffffff;
  --ink: #3b2a34;
}

html,
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff8fc 0%, #ffeef6 100%);
}

.bg-tile {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.12;
  background-image: url("bkImages/graphics/bg_tile_foodinmotion_on_pink512.jpg");
  background-size: 260px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid #ffd5e6;
}

.brand img {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  gap: 0.6rem;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
}

.nav a:hover {
  background: var(--pink-100);
}

.hero {
  position: relative;
  width: min(1200px, 95vw);
  margin: 1rem auto 0;
}

.hero-slider {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 62vh;
  box-shadow: 0 24px 40px rgba(193, 42, 110, 0.18);
}

.slides {
  position: relative;
  height: 62vh;
  min-height: 430px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 550ms ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.18);
}

.slide-pair {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.4rem;
  background: rgba(255, 255, 255, 0.35);
}

.hero-overlay {
  position: absolute;
  left: 8%;
  bottom: 14%;
  max-width: 560px;
  background: rgba(255, 255, 255, 0.78);
  padding: 1.2rem 1.3rem;
  border-radius: 18px;
}

.hero-overlay h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.5rem);
  color: var(--pink-600);
}

.hero-overlay p {
  margin: 0.5rem 0 1rem;
  line-height: 1.5;
}

.cta {
  display: inline-block;
  background: linear-gradient(135deg, #ff4b9f, #e82f84);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255, 255, 255, 0.82);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 5;
}

.slider-btn.prev {
  left: 1rem;
}

.slider-btn.next {
  right: 1rem;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: #f4a8cb;
  cursor: pointer;
}

.dot.active {
  background: var(--pink-600);
  transform: scale(1.1);
}

section {
  width: min(1150px, 95vw);
  margin: 1.4rem auto;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.highlights article {
  background: #fff;
  border: 1px solid #ffd6e8;
  border-radius: 16px;
  padding: 1rem;
}

.menu-section,
.about,
.visit {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #ffd6e8;
  padding: 1.2rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.menu-grid a {
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.menu-grid img {
  width: 100%;
  display: block;
  transition: transform 250ms ease;
}

.menu-grid img:hover {
  transform: scale(1.03);
}

.download-link {
  margin-top: 0.8rem;
}

.about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.about img {
  width: 120px;
  height: 120px;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.visit-grid h4 {
  margin-bottom: 0.2rem;
}

.footer {
  text-align: center;
  padding: 1.3rem 1rem 2.2rem;
  color: #8c4a67;
}

@media (max-width: 900px) {
  .highlights {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 620px) {
  .nav {
    gap: 0.2rem;
  }

  .nav a {
    font-size: 0.85rem;
    padding: 0.45rem 0.6rem;
  }

  .slides {
    height: 58vh;
    min-height: 340px;
  }

  .slide-pair {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 0.35rem;
  }

  .hero-overlay {
    left: 5%;
    right: 5%;
    bottom: 12%;
    padding: 1rem;
  }

  .hero-overlay p {
    font-size: 0.92rem;
  }

  .menu-grid,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    width: 36px;
    height: 36px;
  }
}
