* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    "Inter",
    "Helvetica Neue",
    sans-serif;
  background-color: #fef9e8; /* warm white fallback */
  color: #1f1c17;
  line-height: 1.4;
  scroll-behavior: smooth;
}

/* background layer: foodie-style image + yellow semi-transparent overlay */
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-image: url("https://images.pexels.com/photos/1640777/pexels-photo-1640777.jpeg?auto=compress&cs=tinysrgb&w=1600"); /* delicious food community spread */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(255, 223, 80, 0.45) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  backdrop-filter: brightness(1.02);
}

/* main container */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

/* header & nav */
.site-header {
  padding: 28px 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 215, 120, 0.5);
  backdrop-filter: blur(2px);
}

.logo-area h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #f5a623, #ffe139);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.05);
}
.logo-area p {
  font-size: 0.8rem;
  font-weight: 500;
  color: #4e3e2e;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #2c241a;
  transition: 0.2s;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover {
  border-bottom-color: #f5a623;
  color: #c97e00;
}

/* general sections */
section {
  padding: 80px 0;
  scroll-margin-top: 90px;
}

/* banner */
.banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.banner-text {
  flex: 1.2;
}
.banner-text .badge {
  display: inline-block;
  background: rgba(255, 210, 90, 0.4);
  backdrop-filter: blur(4px);
  padding: 6px 18px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #523a1f;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 180, 50, 0.6);
}
.banner-text h2 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  background: linear-gradient(to right, #e6da2e, #ffe139);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}
.banner-text .tagline {
  font-size: 1.4rem;
  font-weight: 500;
  color: #1f1c17;
  margin-bottom: 20px;
  border-left: 4px solid #f5a623;
  padding-left: 20px;
}
.banner-text .description {
  font-size: 1.1rem;
  color: #2c241a;
  max-width: 550px;
  margin-bottom: 30px;
}
.banner-graphic {
  flex: 0.8;
  display: flex;
  justify-content: center;
}
.mockup-group {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.mock-card {
  background: rgba(255, 248, 235, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 42px;
  padding: 12px 8px 8px 8px;
  box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 210, 110, 0.5);
}
.mock-card img {
  width: 180px;
  height: auto;
  border-radius: 32px;
  display: block;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 780px) {
  .mock-card img {
    width: 140px;
  }
  .banner-text h2 {
    font-size: 2.5rem;
  }
}

/* intro & features split in creative segments */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.feature-block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 248, 235, 0.4);
  backdrop-filter: blur(6px);
  border-radius: 48px;
  padding: 32px 36px;
  transition: all 0.25s;
  border: 1px solid rgba(245, 166, 35, 0.25);
}
.feature-block.reverse {
  flex-direction: row-reverse;
}
.feature-text {
  flex: 1;
}
.feature-text h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff128;
}
.feature-text p {
  font-size: 1.05rem;
  color: #2d2a24;
  margin-bottom: 12px;
  line-height: 1.5;
}
.feature-text .highlight {
  font-weight: 600;
  color: #fff128;
}
.feature-img {
  flex: 0.8;
  display: flex;
  justify-content: center;
}
.feature-img img {
  width: 260px;
  border-radius: 38px;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 210, 90, 0.6);
}

/* screenshot section (optional but creative) */
.screenshot-showcase {
  text-align: center;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, #fff019, #ffe81b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.section-sub {
  text-align: center;
  color: #fff128;
  margin-bottom: 48px;
  font-size: 1.1rem;
}
.screenshot-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.screen-item {
  background: rgba(250, 245, 235, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 44px;
  padding: 12px;
  transition: transform 0.2s ease;
  width: 200px;
}
.screen-item:hover {
  transform: translateY(-8px);
}
.screen-item img {
  width: 100%;
  border-radius: 32px;
  display: block;
  box-shadow: 0 15px 20px -8px rgba(0, 0, 0, 0.2);
}
.screen-caption {
  margin-top: 12px;
  font-weight: 500;
  color: #fff128;
}

/* footer */
.site-footer {
  border-top: 1px solid rgba(245, 166, 35, 0.4);
  padding: 48px 0 40px;
  margin-top: 40px;
  backdrop-filter: blur(2px);
  text-align: center;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-email {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -0.2px;
}
.footer-email a {
  color: #fddd24;
  text-decoration: none;
  border-bottom: 1px dashed #dba346;
}
.copyright {
  color: #fddd24;
  font-size: 0.85rem;
}

/* responsive */
@media (max-width: 880px) {
  .container {
    padding: 0 24px;
  }
  .feature-block,
  .feature-block.reverse {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  .feature-text h3 {
    font-size: 1.8rem;
  }
  .banner-text h2 {
    font-size: 2.4rem;
  }
  .nav-links {
    gap: 1.2rem;
    margin-top: 12px;
  }
  .site-header {
    flex-direction: column;
    gap: 12px;
  }
  section {
    padding: 60px 0;
  }
  .screen-item {
    width: 160px;
  }
}

@media (max-width: 540px) {
  .banner-text .tagline {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .feature-img img,
  .mock-card img {
    width: 200px;
  }
  .mock-card img {
    width: 130px;
  }
}

/* subtle extra */
.floating-icon {
  font-size: 1rem;
}
a {
  transition: color 0.2s;
}
