* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4e8dc;
  height: 100vh;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 80rem;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  position: relative;
}

.navbar {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo img {
  width: 60px;
  height: auto;
}

.navbar-menu__wrapper {
  display: flex;
  align-items: center;
  gap: 80px;
  font-weight: 600;
  font-size: 18px;
}

.navbar-menu__small-device {
  display: none;
}

.navbar__menu {
  display: flex;
  gap: 60px;
  align-items: center;
}

.navbar__menu a {
  text-transform: uppercase;
  color: #606060;
}

.navbar__menu a.active {
  color: black;
}

.navbar__auth {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sign-in {
  background-color: black;
  border-radius: 20px;
  padding: 5px 18px;
  color: white;
  font-weight: 600;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  min-height: calc(100% - 80px);
}

.hero__content {
  max-width: 600px;
}

.snippets {
  color: #9c9c9c;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}

.title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
}

.summer {
  color: #106e33;
}

.description {
  color: #5b5b5b;
  text-align: justify;
  font-size: 18px;
  margin-bottom: 20px;
}

.order-now {
  background-color: #106e33;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.order-now:hover {
  background-color: #0a4e24;
}

.social-media {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-media a img {
  width: 25px;
  height: auto;
}

.hero__image img {
  max-width: 500px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.background {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.background img {
  width: 100%;
  height: auto;
  filter: blur(2px);
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .navbar-menu__wrapper {
    gap: 40px;
  }

  .navbar__menu {
    gap: 30px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero__content {
    max-width: 100%;
  }

  .title {
    font-size: 48px;
  }

  .order-now {
    padding: 10px 25px;
  }
}

@media screen and (max-width: 768px) {
  .navbar-menu__wrapper {
    display: none;
  }

  .navbar-menu__small-device {
    display: block;
  }

  .hero__image img {
    max-width: 300px;
  }
}

@media screen and (max-width: 480px) {
  .title {
    font-size: 36px;
  }

  .hero__image img {
    max-width: 250px;
  }

  .social-media {
    gap: 10px;
  }

  .social-media a img {
    width: 20px;
  }
}

.navbar-menu__small-device {
  display: block;
  cursor: pointer;
}

.navbar-menu__small-device img {
  width: 30px;
  height: auto;
  object-fit: cover;
}

@media screen and (min-width: 769px) {
  .navbar-menu__small-device {
    display: none;
  }
}

.navbar-menu__small-device {
  display: block;
  cursor: pointer;
  position: relative; /* Add this to make the dropdown align with the small device menu */
}

.navbar-menu__small-device img {
  width: 30px;
  height: auto;
  object-fit: cover;
}

/* Hide dropdown menu by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 40px; /* Adjust to appear directly below the icon */
  right: 0;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  width: 150px;
  z-index: 100; /* Ensure it stays on top */
}

/* Style for individual dropdown links */
.dropdown-menu a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #606060;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: #f9f9f9;
}

/* Show dropdown when clicked */
.show-menu {
  display: block;
}

@media screen and (max-width: 768px) {
  .navbar-menu__wrapper {
    display: none;
  }

  .navbar-menu__small-device {
    display: block;
  }

  /* Ensure the navbar maintains its layout */
  .navbar {
    justify-content: space-between;
  }

  /* Position the dropdown absolutely */
  .navbar-menu__small-device {
    position: relative;
  }

  .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    width: 150px;
    z-index: 100;
  }

  /* Show menu when toggled */
  .dropdown-menu.show-menu {
    display: block;
  }
}

/* Hide the small device menu on larger screens */
@media screen and (min-width: 769px) {
  .navbar-menu__small-device {
    display: none;
  }

  .navbar-menu__wrapper {
    display: flex;
  }
}
