/* General Styles */
body {
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  background: #c5efc5;
  color: hsl(0, 8%, 95%);
}

header {
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 50px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #28a745;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
}

.nav-list li {
  margin: 0;
}

.nav-list li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.menu-toggle {
  display: none;
}

.logo {
  border-radius: 50%;
  overflow: hidden;
  filter: brightness(1.3);
  box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.8);
}

.search-form {
  display: flex;
  gap: 5px;
  margin-right: 25px;
}

.search-form input {
  padding: 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.search-form button {
  padding: 5px 10px;
  background-color: white;
  color: #28a745;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.search-form button:hover {
  background-color: #f0f0f0;
}

.hero {
  text-align: center;
  background-color: #e7f3e7;
  color: #034633;
}

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

.hero p i {
  font-size: 1.2em;
  margin: 0px;
  color: #df1204;
}

/* Main Content */
main {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

#description {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 100px 50px 20px 20px;
}

.intro h2 {
  margin-bottom: -70px;
  font-size: 2rem;
  color: #00796b;
}

.intro p {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 100px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1.9rem;
  color: #333;
}

#mission-vision {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 30px 20px 0;
  background-color: #f1f8e9; /* Light green background */
  border-radius: 10px;
}

#mission-vision p {
  color: #333;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1.4rem;
}

.mission,
.vision {
  max-width: 650px;
  max-height: 700px;
  margin-bottom: 50px; /* Space between the mission and vision */
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mission {
  margin-right: 10px;
}

.color {
  color: #00796b; /* Green color for headers */
  text-align: center;
}

.description h1 {
  text-align: center;
}

.slide img {
  border-radius: 15px;
  margin-top: 50px;
}

.promotions {
  margin-top: 70px;
  text-align: center;
}

.promotions h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #df1204;
}

.promo-item {
  display: inline-block;
  width: 50%;
  margin: 10px;
  background-color: rgb(2, 113, 78);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.promotions a {
  text-decoration: none;
  color: white;
}

#hook {
  width: 100%;
  height: 250px;
  background-color: #28a745; /* Green theme to match cleaning products */
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  margin-top: 70px;
  color: white;
}

.hook {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hook h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #ffffff;
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 5px;
  text-decoration: none;
}

.hook ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.hook ul li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #f8f9fa;
}

.hook ul li a {
  text-decoration: none;
  color: #f8f9fa;
}

.hook ul li a:hover {
  color: #c3e6cb;
  cursor: pointer;
}

.hook ul li i {
  color: rgb(238, 235, 235);
  margin-right: 10px;
  font-size: 18px;
}

footer {
  background-color: #28a745;
  color: white;
  text-align: center;
  padding: 0px;
  margin-top: 10px;
  font-family: Arial, sans-serif;
  position: relative;
}
footer p {
  margin: 0;
  font-size: 0.9em;
}
footer a {
  color: #d4f1f4;
  text-decoration: none;
}
footer a:hover {
  color: #f1faee;
}

.social-icons {
  margin-top: 10px;
}
.social-icons a {
  color: #d4f1f4;
  font-size: 1.1em;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #f1faee;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 1200px) {
  .slideshow-container img {
    width: 100%;
    height: auto;
  }

  #description {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  body {
    margin: 0px;
    padding: 0px;
  }

  .menu-toggle {
    display: block; /* Show burger menu */
    cursor: pointer;
    font-size: 1.5rem;
    color: white;
    padding-right: 50px;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    background-color: #28a745;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 20px;
    z-index: 999;
    transition: left 0.3s ease;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-list li {
    text-align: center;
    padding: 15px 0;
  }

  .hook h3 {
    border: none;
    font-size: smaller;
  }

  .search-form {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  /* Layout changes for very small screens */
  #description,
  #mission-vision {
    flex-direction: column;
  }

  .mission,
  .vision {
    width: 100%;
    margin: 20px 0;
  }

  .slideshow-container img {
    width: 100%;
    height: auto;
  }
}
