#sima {
  margin-bottom: 30px;
}

.hero1 {
  padding: 80px 20px;
  text-align: center;
}

.oio {
  width: 68%;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  justify-content: center;
  border-radius: 30px;
  margin: auto;
}

.hero {
  background-color: cornsilk;
  padding: 80px 20px;
  text-align: center;
}

.menu-wrapper {
  padding: 30px;
  background-color: #fff;
  text-align: center;
}

.menu-wrapper h1 {
  font-size: 42px;
  margin-bottom: 10px;
  color: #222;
}

.menu-wrapper p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 10px;
  color: #222;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 30px;
  color: #555;
}

.hero-btn {
  padding: 15px 30px;
  background-color: coral;
  color: white;
  font-size: 18px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.hero-btn:hover {
  background-color: #e18508;
}

#topic {
  font-size: 250%;
}

#button {
  padding: 15px 30px;
  text-align: center;
  background-color: coral;
  color: white;
  font-size: 18px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.2s;
  font-weight: bolder;
}

#button:hover {
  background-color: #ffffff;
  transform: scale(1.05);
  color: white;
}

#button:active {
  transform: scale(0.98);
}

#view {
  background-color: #84b0e8;
  color: white;
  border: none;
  padding: 15px 20px;
  font-size: 18px;
  border-radius: 5px;
  max-width: 30%;
  margin: 30px;
}

.meal-scroll-container {
  justify-content: center;
}

a {
  text-decoration: none;
  color: black;
}

.foodbox-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 30px;
}

.iii {
  font-weight: 50;
  color: dimgray;
}

.ij {
  width: 100%;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.foodbox {
  background-color: #ffffff;
  max-width: 35%;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.oiio {
  padding: 30px;
}

.linkk {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  text-decoration: underline 3px darkorange;
  transition: color 0.3s ease;
}

.linkk:hover {
  color: #e18508;
}

#mmm {
  max-width: 75%;
  margin: auto;
}

#exp {
  font-weight: 50;
  font-size: 20px;
}

#g {
  text-align: center;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 300;
  background: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
}

#logo {
  width: 150px;
}

.menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #e18508;
}

/* Image Slider */
.slider {
  overflow: hidden;
  width: 100%;
  height: 400px;
  margin-top: 20px;
  position: relative;
}

.slide-track {
  display: flex;
  width: calc(100vw * 6);
  animation: scroll 40s linear infinite;
}

.slide {
  width: 100vw;
  object-fit: cover;
}

/* Today's Lunch Section */
#tit {
  text-align: center;
  padding: 60px 20px;
}

#title {
  font-size: 48px;
  margin-bottom: 10px;
}

#h3 {
  font-weight: 300;
  color: #777;
}

#today {
  width: 60%;
  max-width: 700px;
  border-radius: 15px;
  margin-top: 30px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

/* Lunch Item Link */
#contain {
  text-align: center;
  margin: 40px 0;
}

#foodname {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  text-decoration: underline 3px darkorange;
  transition: color 0.3s ease;
}

#foodname:hover {
  color: #e18508;
}

/* Meal Plan Scroll Section */
#plan {
  padding: 60px 5%;
  background-color: #fff;
}

#future {
  font-size: 42px;
  margin-bottom: 40px;
  color: #333;
  margin-left: 50px;
}

.meal-scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 20px;
}

.meal-item {
  flex: 0 0 auto;
  text-align: center;
}

.meal-item img {
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.meal-item img:hover {
  transform: scale(1.05);
}

.meal-label {
  margin-top: 10px;
  font-weight: bold;
  color: #444;
}

.footer {
  background-color: #333;
  color: #eee;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  margin-top: auto;
}

.footer p {
  margin: 8px 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-300vw);
  }
}

/* ===== Responsive Styles ===== */

/* For tablets and smaller laptops */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .menu-wrapper h1 {
    font-size: 36px;
  }

  .foodbox {
    max-width: 45%;
  }

  #today {
    width: 80%;
  }
}

/* For phones */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
  }

  .hero,
  .hero1 {
    padding: 40px 10px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-btn,
  #button,
  #view {
    padding: 12px 20px;
    font-size: 16px;
  }

  .foodbox-container {
    flex-direction: column;
    padding: 15px;
  }

  .foodbox {
    max-width: 90%;
    margin: auto;
  }

  #mmm,
  #today {
    max-width: 90%;
  }

  .slide {
    height: 250px;
  }

  #future {
    font-size: 28px;
    margin-left: 0;
    text-align: center;
  }

  .meal-item img {
    height: 150px;
  }

  .linkk,
  #foodname {
    font-size: 20px;
  }
}
