@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  line-height: 2;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}

button {
  padding: 10px 15px;
  border: none;
  transition: 0.2s ease-in-out;
}
button:hover {
  opacity: 0.8;
}

/* Navigation */
nav {
  box-shadow: 5px 5px 5px rgba(1, 1, 1, 0.2);
  position: sticky;
  top: 0;
  margin: 10px;
  background-color: white;
  padding: 10px;
  z-index: 50;
}
.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.bar_icon {
  font-size: 32px;
  cursor: pointer;
}

/* Navigation Links and Social Icons */
.nav_links ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav_links ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav_links ul li a:hover {
  color: #149f39;
}
.social_icons_nav a {
  text-decoration: none;
  color: #333;
  font-size: 20px;
  margin: 0 10px;
  transition: color 0.3s ease;
}
.social_icons_nav a:hover {
  color: #149f39;
}

/* Responsive Navbar Toggle */
@media (max-width: 768px) {
  .nav_links {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #fff;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  .nav_links.active {
    display: flex;
  }
}

/* Hero Section */
.hero {
  display: flex;
  gap: 100px;
  justify-content: center;
  align-items: center;
}
.hero_image {
  margin-top: 30px;
}
.hero_content {
  display: flex;
  flex-direction: column;
}
.tag {
  background: #149f39;
  font-size: 14px;
  padding: 9px 23px 9px 33px;
  color: white;
  align-self: flex-start;
}
.hero_content h1 {
  font-size: 72px;
  line-height: 1.2;
  font-weight: 400;
}
.explore_btn {
  margin-top: 20px;
  background: #ffc066;
  align-self: flex-start;
}

/* Features Section */
.features {
  display: flex;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 50px;
  gap: 20px;
}
.feature {
  display: flex;
  gap: 20px;
  padding: 10px;
  transition: 0.2s ease-in-out;
}
.feature:hover {
  cursor: pointer;
  box-shadow: 5px 5px 5px rgba(1, 1, 1, 0.2);
}
.feature_content p {
  font-size: 14px;
}
.devider {
  border: 1px solid #ccc;
  margin: 20px 0;
}

/* Menu Section */
.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin: 50px 0;
}
.menu h2 {
  font-size: 36px;
  font-weight: 400;
}
.menu .tag {
  font-size: 24px;
  border-radius: 1px;
  margin: 0;
  align-self: center;
  padding: 10px 20px;
}
.grid {
  display: grid;
  gap: 10px;
  grid-template-areas:
    "I1 I1 I2 I3"
    "I1 I1 I2 I7"
    "I4 I5 I6 I7";
}
.gird-image {
  border-radius: 10px;
  transition: 0.2s ease-in-out;
}
.gird-image:hover {
  transform: scale(1.05);
}
.item1 {
  grid-area: I1;
}
.item2 {
  grid-area: I2;
}
.item3 {
  grid-area: I3;
}
.item4 {
  grid-area: I4;
}
.item5 {
  grid-area: I5;
}
.item6 {
  grid-area: I6;
}
.item7 {
  grid-area: I7;
}

/* Footer Section */
footer {
  background: #fff0db;
  padding: 40px 20px;
  text-align: center;
}
.footer_container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer_top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
}
.footer_logo img {
  width: 120px;
}
.footer_links {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_links .link_lists {
  text-align: left;
}
.footer_links .link_lists h3 {
  margin-bottom: 10px;
  color: gray;
}
.footer_links .link_lists ul {
  list-style: none;
}
.footer_links .link_lists ul li {
  margin-bottom: 5px;
}
.footer_links .link_lists ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}
.footer_links .link_lists ul li a:hover {
  color: #149f39;
}
.footer_bottom {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.newslatter {
  flex: 1;
  min-width: 250px;
}
.newslatter h3 {
  margin-bottom: 10px;
  color: gray;
  text-align: left;
}
.newslatter input {
  padding: 10px;
  width: 100%;
  max-width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.social_footer {
  flex: 1;
  min-width: 250px;
}
.social_footer h3 {
  margin-bottom: 10px;
  color: gray;
  text-align: left;
}
.social_footer .social_icons {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.social_footer .social_icons a {
  text-decoration: none;
  color: #333;
  font-size: 24px;
  transition: color 0.3s ease;
}
.social_footer .social_icons a:hover {
  color: #149f39;
}
copyright {
  font-size: 14px;
  color: #777;
  margin-top: 20px;
}

/* Responsive Adjustments for Footer */
@media (max-width: 768px) {
  .footer_top,
  .footer_bottom {
    flex-direction: column;
    align-items: center;
  }
  .footer_links {
    flex-direction: column;
    gap: 20px;
  }
}
