/* =========================
   GLOBAL RESET & SAFETY
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #FFF9F0;
  color: #1D1D1D;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   HEADER
========================= */
.header {
  background: #FFB703;
  padding: 20px 0;
}

.logo {
  font-weight: 700;
  font-size: 22px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
  font-weight: 500;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: linear-gradient(125deg, #FFF9F0 45%, #821D26 -15%);
  padding: 90px 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  flex-wrap: wrap;
}

.tag {
  color: #F77F00;
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-text h1 {
  font-size: 52px;
  line-height: 1.2;
}

.hero-text h1 span {
  color: #F77F00;
}

.hero-text p {
  color: #6B6B6B;
  margin: 20px 0;
  max-width: 450px;
}

.btn {
  background: #E85D04;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 500;
  cursor: pointer;
}

/* HERO IMAGES */
.hero-image {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-img {
  width: 360px;
  border-radius: 50%;
  z-index: 2;
}

/* FLOATING IMAGES (DESKTOP ONLY) */
.float {
  position: absolute;
  width: 170px;
  max-width: 25vw;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  z-index: 3;
}

.f1 { top: -40px; right: 60px; }
.f2 { top: 29%;; right: -20px; }
.f3 { bottom: -20%; left: 60%; }

/* =========================
   ABOUT SECTION
========================= */
.about {
  padding: 90px 0;
  background: #fffaf2;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

.about-images {
  position: relative;
  width: 380px;
  min-height: 260px;
  flex-shrink: 0;
}

.yellow-box {
  height: 220px;
  background: #821D26;
  border-radius: 40px 0 0 40px;
}

.bottle {
  position: absolute;
  width: 90px;
  left: 25px;
  top: 10px;
}

.food-circle {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: 0;
  top: 40px;
  overflow: hidden;
}

.about-text {
  max-width: 520px;
}

.about-text h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.about-text h2 span {
  color: #ff9f1c;
}

.about-text p {
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* =========================
   POPULAR FOOD
========================= */
.section-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}


/* =========================
   WHY CHOOSE SECTION
========================= */
.why {
 
  background: #821D26;
  color:white;
}

.why-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 10px;
}

.why-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.why-text {
  max-width: 500px;
}

.user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review {
  color: #6b6b6b;
  line-height: 1.7;
}

.icons {
  display: flex;
  gap: 15px;
}

.why-images {
  position: relative;
  width: 360px;
  min-height: 260px;
  flex-shrink: 0;
}

.plate {
  position: absolute;
  width: 320px;
  border-radius: 12%;
}

.bottle {
  position: absolute;
  width: 85px;
  right: 30px;
  top: 60px;
}

/* =========================
   RESPONSIVE & ZOOM SAFE
========================= */
@media (max-width: 1024px) {

  .hero-content,
  .about-content,
  .why-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-image,
  .about-images,
  .why-images {
    width: 100%;
    min-height: auto;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  /* Disable absolute overlaps */
  .float,
  .yellow-box,
  .food-circle,
  .bottle,
  .plate {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {

  .hero-text h1 {
    font-size: 36px;
  }

  .food-grid {
    grid-template-columns: 1fr;
  }
}
.menu-header {
  text-align: center;
  padding: 30px 20px 10px;
  background: #fff;
}

.menu-header h2 {
  font-size: 2.2rem;
  color: #000;
}

.menu-header p {
  font-size: 1.1rem;
  color: #4d2b00;
  font-weight: 600;
}
/* Description text */
.why-desc{
  font-size:16px;
  color:white;
  margin-bottom:25px;
}

/* Benefits list */
.why-points{
  list-style:none;
  padding:0;
  margin-bottom:25px;
}

.why-points li{
  position:relative;
  padding-left:28px;
  margin-bottom:7px;
  color:white;
}

/* Checkmark before each point */
.why-points li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#f4b400;  /* Accent color */
  font-weight:bold;
}

/* Optional icons below points */
.why-icons span{
  font-size:22px;
  margin-right:12px;
}

/* Responsive adjustments */
@media(max-width:768px){
  .why-points li{
    padding-left:0;
  }

  .why-points li::before{
    position:static;
    margin-right:8px;
  }
}
