
*{
  margin: 0;
  padding: 0%;
  box-sizing: border-box;
}

html,
body{
  background-color: #ffffff;
  color: black;
  font-family: Lato, sans-serif;
  font-weight: 300;
  font-size: 25px;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.row{
  max-width: 1140px;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  position: absolute;
  top: 15px;
  right: 35px;
  z-index: 1001;
}


nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 70px; 
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-evenly;
  align-items: center; 
  transition: top 0.3s;
}
nav.hide {
  top: -100px; 
}

.logo {
  height: 120px; 
  margin-top: 5px;
  margin-right: 6rem;
}

.nav-item {
  float: right;
  display: flex;
  list-style: none;
  margin-left: 100px; 
}

.nav-item.show {
  display: block;
}


.nav-item li{
  display: inline-block;
  margin-left: 100px;
  margin-top: 50px;
}

.nav-item li a:link,
.nav-item li a:visited{
  color: #fff;
  text-decoration: none;
  text-transform: capitalize;
  font-size: 90%;
  border-bottom: 2px solid transparent;
  padding: 8px 0;
  transition: border-bottom 0.5s;
}

.nav-item li a:hover,
.nav-item li a:active{
  border-bottom:2px solid #e67e22;
}


nav.scrolled {
  background: #101a1d;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);

}

header{
  background-image:linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("image/main.png");
  height: 100vh;
  background-size: cover;
  background-position: center;
  padding-top: 150px;
}
h1{
  word-spacing: 3px;
  letter-spacing: 1px;
  text-transform: capitalize;

}

.hero-text-box {
  position: relative;
  text-align: center;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1000px;
}

.hero-text-box h1 {
  font-size: 3rem;
  color: white;
  line-height: 1.3;
  margin-bottom: 20px;
}

.btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}


.btn:link,
.btn:visited {
  display: inline-block;
  padding: 10px 30px;
  text-decoration: none;
  font-weight: 400;
  border-radius: 200px;
  text-transform: capitalize;
  transition: background-color 0.5s, color 0.5s, border 0.5s;
}

.btn1:link,
.btn1:visited {
  color: #fff;
  border: 1px solid #e67e22;
  margin-right: 30px;
}

.btn2:visited,
.btn2:link {
  border: 1px solid #e67e22;
  color:#fff;
}

.btn:hover,
.btn:active{
  background-color:#cf6d17;
}

.btn2:hover,
.btn2:active{
  border: 1px solid #cf6d17;
  color: #fff;
}

.btn1:hover,
.btn1:active{
  border: 1px solid #cf6d17;
}

.section-features {
  background-color: #E0FFFF;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.section-features h2 {
  font-weight: 500;
  text-transform: capitalize;
  font-size: 220%;
  word-spacing: 5px;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 25px;
  color: black;
  padding-top: 30px;
}

.section-features h2::after {
  display: block;
  height: 2px;
  content: " ";
  width: 870px;
  margin: 0 auto;
  margin-top: 10px;
  background-color: #e67e22;
}

.section-features .content {
  font-size: 1.1rem;
  color: #555;
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.6;

}


.long {
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.long:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


.long ion-icon {
  font-size: 3rem;
  color: #ff6b6b;
  margin-bottom: 1rem;
}


.long h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #222;
}


.long p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

.roow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 0 auto;
  max-width: 1200px;
  padding: 1rem 2rem;
} 

@media (max-width: 768px) {
  .roow {
    grid-template-columns: 1fr;
    place-items: center;
  }
}

.letter h2{
  margin-top: 30px;
  font-size: 50px;
  text-align: center;
}

.letter h2::after {
  display: block;
  height: 2px;
  content: " ";
  width: 370px;
  margin: 0 auto;
  margin-top: 10px;
  background-color: #e67e22;
}

.meal-show{
  list-style: none;
  width: 100%;
  margin-top: 20px;
  background-color: #e67e22;
}

.meal-show li{
  display: block;
  float: left;
  width:32%;
  padding: 10px;
  margin-left: 12px;
  border-radius: 4%;
  background-color:khaki;
  margin-bottom: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meal-show li:hover{
  transform: translateY(-5px);
  background-color: whitesmoke;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.meal-pic {
  width: 100%;
  margin: 0;

}

.meal-pic img{
  width: 100%;
  height:300px; 
  border-radius: 4%;
  margin-top: 10px; 
}


.plan-box {
  max-width: 100%;
}
.roww{
  margin-top: 20px;
}

.app-screen {
  width: 100%;
  max-width: 350px;
  height: auto;
}

.works-step {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.works-step div {
  background-color: #fff;
  border: 2px solid #e67e22;
  color: #e67e22;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 1.2rem;
}

.steps-box p {
  font-size: 1rem;
  color: #444;
}

.roww h2 {
  font-size: 2rem;
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

.rowww {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  background-color: #fefefe;
}

.span_1_of_2 {
  flex: 1 1 25%;
  margin-right: 0;
  display: flex;
  padding-bottom: 2rem;
  justify-content: flex-end; 
}

.span_2_of_2 {
  flex:1 1 45%;
  margin-left: 0; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; 
  padding-left: 10px;
}

.btn-app-wrapper {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.btn-app {
  width: 130px;
  height: 45px; 
}

.btn-app img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.copy h2{
  margin-top: 30px;
  font-size: 50px;
  text-align: center;
}

.roww h2::after {
  display: block;
  height: 2px;
  content: " ";
  width: 750px;
  margin: 0 auto;
  margin-top: 10px;
  background-color: #e67e22;
}


.roaw {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.roaw .col {
  flex: 1;
  min-width: 0; 
}


.plan-box {
  flex: 1 1 300px;
  max-width: 350px;
  background-color: #fcfcfc;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
}

.plan-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.plan-box ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.plan-box ul li {
  padding: 10px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: black;
  margin: 10px 0;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 300;
}

.plan-price-meal {
  font-size: 0.85rem;
  color: #777;
}

.btn-full {
  margin-top: 20px;
  display: inline-block;
  padding: 10px 25px;
  text-decoration: none;
  color: black;
  border: 1px solid #e67e22;
  border-radius: 30px;
  transition: background-color 0.3s;
}

.btn-full:hover {
  background-color: #e67e22;
  color: white;
}

.copy h2::after {
  display: block;
  height: 2px;
  content: " ";
  width: 580px;
  margin: 0 auto;
  margin-top: 10px;
  background-color: #e67e22;
}


.forum {
  clear: both; 
  background-color: #fefefe;
  font-family: 'Lato', sans-serif;
  color: #333;
}

.forum h2 {
  font-size: 2.5rem;
  text-align: center;
  margin: 0 auto 40px;
  color: #333;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.forum h2::after {
  display: block;
  content: "";
  width: 900px; 
  height: 3px;
  background-color: #e67e22;
  margin: 10px auto 0;
  border-radius: 2px;
}

.contact-form {
  width: 60%;
  margin: 0 auto;
}

.field {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: center;
}

.span-1-of-3 {
  flex: 0 0 30%;
  max-width: 30%;
  font-size: 1rem;
  color: #333;
}

.span-2-of-3 {
  flex: 0 0 70%;
  max-width: 70%;
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #222;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
}

input[type="checkbox"] {
  transform: scale(1.2);
  margin-left: 5px;
}

textarea {
  height: 100px;
  
}

input[type="button"] {
  padding: 10px 30px;
  border: 1px solid #e67e22;
  color:black;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

input[type="button"]:hover {
  background-color: #cf6d17;
}

@media screen and (max-width: 768px) {
  .contact-form {
    width: 90%;
  }

  .span-1-of-3,
  .span-2-of-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  
  input[type="button"] {
    width: 100%;
    text-align: center;
  }
}


.footer-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
}

.col-footer {
  flex: 1;
}

.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li,
.social-links li {
  display: inline-block;
  margin-right: 20px;
}

.footer-nav li a,
.social-links li a {
  text-decoration: none;
  color: whitesmoke;
  font-size: 90%;
  transition: color 0.3s;
}

.footer-nav li a:hover {
  color: orangered;
}

.social-links li a ion-icon {
  font-size: 160%;
}

.last {
  text-align: center;
  margin-top: 30px;
  color: whitesmoke;
  font-size: 90%;
}

.fb:hover{
  color: #3b5998;
}

.x:hover{
  color: #00aced;
}

.google:hover{
  color: #dd4b39;
}

.insta:hover{
  color: #517fa4;
}

.social-links{
  float: right;
}

footer{
  background-color: #333;
  padding: 20px;
}



