* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  background-color: rgb(255, 246, 238);
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  color: rgb(0, 0, 0);
  padding: 15px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin-right: 20px;
}

.nav-links li:last-child {
  margin-right: 0;
}

.nav-links a {
  font-size: 20px;
  color: rgb(0, 0, 0);
  text-decoration: none;
}

.nav-links a:hover {
  background-color: #ff6f61;
  color: white;
  padding: 10px;
  border-radius: 10px;
}

.hero {
  background-image: url("path/to/your/image.jpg"); /* Add your background image path here */
  background-size: cover;
  background-position: center;
  color: #000000;
  text-align: center;
  padding: 100px 0; /* Adjust the padding as needed */
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.hero .btn {
  padding: 10px 20px;
  font-size: 1.2em;
  background-color: #ff6f61;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease; /* Smooth transition effect */
}

.hero .btn:hover {
  background-color: #e45749; /* Change color on hover */
}

/* Responsive styles for smaller screens */
@media screen and (max-width: 768px) {
  .hero {
    padding: 80px 0; /* Adjust padding for smaller screens */
  }

  .hero h1 {
    font-size: 2.5em;
  }

  .hero p {
    font-size: 1em;
  }

  .hero .btn {
    font-size: 1em;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    padding: 60px 0; /* Adjust padding for even smaller screens */
  }

  .hero h1 {
    font-size: 2em;
  }

  .hero p {
    font-size: 0.9em;
  }

  .hero .btn {
    font-size: 0.9em;
  }
}

.btn {
  display: inline-block;
  background-color: #ff6f61;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #e45749;
}

.featured-products {
  padding: 0px 0;
}

.container1 h3 {
  font-size: 30px;
  text-align: center;
  width: 100%;
}

.container1 {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
  }
  
  .product {
    width: 32.2%; /* Adjust width to occupy 30% of the container */
    text-align: center;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 8px;
  }
  
  .product img {
    max-width: 30%; /* Make image responsive */
    height: auto;
    margin-bottom: 15px;
  }
  
  .product h3 {
    font-size: 24px;
  }
  
  .product p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .product span {
    font-size: 20px;
    font-weight: bold;
    color: #ff6f61;
    margin-bottom: 15px;
    display: block;
  }
  
  .product button {
    background-color: #ff6f61;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .product button:hover {
    background-color: #e45749;
  }
  
  /* Media query for screens smaller than 768px (typical mobile sizes) */
  @media screen and (max-width: 767px) {
    .product {
      width: 100%; /* Occupy full width on smaller screens */
    }
  }
  

.about-us {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

.about-us h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

.about-us p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #0056b3;
}

.more-info {
  font-size: 16px;
  margin-top: 20px;
}

.footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.footer p {
  margin-bottom: 15px;
}

.social-links {
  list-style: none;
  padding: 0;
}

.social-links li {
  display: inline-block;
  margin-right: 10px;
}

.social-links li:last-child {
  margin-right: 0;
}

.social-links a {
  color: white;
  font-size: 20px;
}

.nav-links button {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  border: 3px solid #ff6f61;
  padding: 0px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.nav-links button:hover {
  background-color: #ff6f61;
  color: white;
}

@media only screen and (max-width: 768px) {
  .nav-links button {
    padding: 8px 16px;
    font-size: 14px;
  }
}
