/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  background-color: #dfd7ab;
  height: 100vh;
  width: 100%;
  text-align: left;


}

/* home blog card design */
.main-1 {
  text-align: center;
  padding: 20px;
}

p {
  padding: 0;
  line-height: normal;
}

.main-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  margin: 20px;
}

.post-cart {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 10px;
  width: calc(33% - 40px);
}





/* Navigation Bar Styles */
.navbar {
  width: 100%;
  background-color: #ffea02;
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar .logo {
  font-size: 2em;
  color: white;
  cursor: pointer;
}

.navbar .nav-links {
  list-style-type: none;
  display: flex;
}

.navbar .nav-links li {
  margin-right: 20px;
}

.navbar .nav-links a {
  color: #ff9900;
  text-decoration: none;
  font-size: 1.2em;
}

.h-colors {
  color: #d78d00;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  text-align: left;
  line-height: 1;
}





#wrapper {
  max-width: 1200px;
  padding: 20px;
}

.section {
  margin-bottom: 30px;
}

.section p,
h2,
h3 {
  text-align: left;
}

.faq {
  padding: 15px;
  border-radius: 8px;
}

.container {
  width: 80%;
  margin: 0 auto;
}



header .btn {
  display: inline-block;
  background-color: #ff9900;
  color: white;
  padding: 10px 20px;
  margin-top: 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

header .btn:hover {
  background-color: #cc7a00;
}

/* text wrapper */
.hero {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-top: 20px;
}

.wrapper_text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.img_container {
  margin-left: 50px;
}

.ghee_img {
  padding-top: 14px;
  border-radius: 9px;
}

/* button design  */
.button {
  margin-top: 2rem;
  padding: 3px;
  text-decoration: none;
  border-radius: 5px;
  border: 1px solid rgb(252, 206, 6);
  background: transparent;
  color: #000;
  text-transform: capitalize;

}

.button:hover {
  background-color: #d78d00;
  color: white;
  border: none;
  transition: all 0.3s ease-in-out;
}

/* Footer */
.footer {
  background-color: #007bff;
  color: white;
  text-align: center;
  padding: 10px 0 0 0;
  margin-top: 40px;
  font-weight: bold;
  background-color: #ffea02;
  position: relative;
  bottom: 0;

}

.footer_home{
   background-color: #ffea02;
   color: #ffff;
  position: absolute;
  height: 50px;
  text-align: center;
  width: 100%;
  bottom: 0;
  padding: 20px 0;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

@media screen and (max-width: 480px) {

  .navbar {
    width: 10;
  }

  .product-card {
    width: 100%;
    margin: 10px 0;
  }

  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f5e37b;
  }

  p {
    padding: 0;
    line-height: normal;
    font-size: 17px;
  }

  .container.logo {
    font-size: 2px;
    font-weight: 300;
    line-height: 0cap;
  }

  .img_container {
    margin: auto;
    border-radius: 3px;
  }

  .ghee_img {
    padding-top: 14px;
    height: 200px;
    width: 100%;
  }

  .navbar .nav-links {
    flex-direction: row;
    align-items: center;
  }

  .navbar .nav-links li {
    margin-bottom: 10px;
  }

  .hero {
    flex-direction: column;
    align-items: center;

  }

  .button {
    padding: 3px 3px;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid rgb(252, 206, 6);
    background: transparent;
    color: #000;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
  }


  .main-content {
    flex-direction: column;
    align-items: center;
  }

  .post-cart {
    width: 100%;
    margin: 10px 0;
    padding: 13px 10px;
  }

  .wrapper_text {
    width: 100%;
    margin: 0 auto;
  }

  .footer {
    position: relative;
    width: 100%;
    padding: 10px;

  }
.container {
    width: 100%;
  }
  .social-links li {
    margin-top: 3px;
  }

  

}