@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fdf5e6;
  color: #333;
}

/* Navbar */
nav.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color: #4e342e;
  color: #fff;
}

nav.navbar span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffa726;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  margin: 0 15px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffa726;
}

#ordernow {
  background-color: #ffa726;
  border: none;
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 1rem;
  color: #4e342e;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

#ordernow:hover {
  background-color: #ff7043;
  color: #fff;
}

/* Hero Image */
#firstimg {
  width: 100%;
  height: auto;
  display: block;
}

/* Hero Section */
#beige {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: #fff8ee;
}

#beige img {
  max-width: 350px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  margin: 20px;
}

#beige h1 {
  font-size: 2.8rem;
  color: #e65100;
  margin: 0 0 20px;
}

#beige p {
  max-width: 500px;
  font-size: 1.05rem;
  line-height: 1.7;
}

#button {
  background-color: #e65100;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#button a {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
}

#button:hover {
  background-color: #ff7043;
  transform: scale(1.05);
}

/* Headline Section */
#vtitlecolor {
  background-color: #fdf5e6;
  padding: 50px 20px;
  text-align: center;
}

#vtitlecolor h1 {
  font-size: 2.5rem;
  color: #4e342e;
  margin: 0;
}

#vtitlecolor h2 {
  font-size: 2rem;
  color: #e65100;
  margin-top: 15px;
}

/* Video Section */
#videocont {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fff8ee;
}

.promo-video {
  max-width: 400px;
  margin: 15px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Combo Sections */
#combo, #combo2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #ffe0b2;
  padding: 30px 10px;
}

#combo img, #combo2 img {
  max-width: 350px;
  border-radius: 15px;
  margin: 15px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Footer */
#footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #4e342e;
  color: #fff;
  padding: 50px 30px;
  border-top: 4px solid #ffa726;
  border-radius: 15px 15px 0 0;
}

#footer div {
  flex: 1 1 250px;
  margin: 20px;
}

#footer h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #ffa726;
}

#footer p {
  font-size: 1rem;
  line-height: 1.7;
}

#footer i {
  margin: 0 12px;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

#footer i:hover {
  color: #ffa726;
  transform: scale(1.2);
}

#uparrow {
  position: fixed;
  bottom: 25px;
  right: 25px;
  padding: 12px 14px;
  border: none;
  border-radius: 50%;
  background-color: #ffa726;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  z-index: 999;
}

#uparrow i {
  color: #4e342e;
  font-size: 1.3rem;
}

#uparrow:hover {
  background-color: #ff7043;
  transform: scale(1.1);
  transition: 0.3s ease;
}





/* Mobile Responsive */
@media screen and (max-width: 768px) {
  nav.navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }

  .nav-links a {
    margin: 5px 10px;
  }

  #beige {
    flex-direction: column;
    text-align: center;
  }

  #vtitlecolor h1 {
    font-size: 2rem;
  }

  #vtitlecolor h2 {
    font-size: 1.5rem;
  }

  #combo img, #combo2 img {
    max-width: 100%;
  }

  #footer {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 500px) {
  nav.navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    margin-top: 10px;
  }

  .nav-links a {
    margin: 8px 12px;
    font-size: 1rem;
  }

  #ordernow {
    padding: 10px 20px;
    font-size: 0.95rem;
  }

  .menu-header h1 {
    font-size: 2rem;
  }

  .menu-icons {
    flex-wrap: wrap;
    gap: 12px;
    padding: 20px;
  }

  .menu-icons img {
    width: 70px;
    height: 60px;
  }

  .menu-card {
    width: 90%;
    padding: 18px;
  }

  .menu-section h2 {
    font-size: 2rem;
  }

  #footer {
    flex-direction: column;
    text-align: center;
  }

  #footer div {
    margin: 20px 0;
  }

  #uparrow {
    bottom: 20px;
    right: 20px;
    padding: 10px 12px;
  }

  #uparrow i {
    font-size: 1.2rem;
  }
}


