@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.logo_container img {
  width: 65px; /* Aap width ko adjust kar sakte hain */
  height: auto; /* Yeh image ko proportion mein rakhega */
  /* position: absolute; Isko absolute position de rahe hain */
  margin-top: 10px;
}
/* Bounce effect define karte hain */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0); /* Normal position pe */
  }
  50% {
    transform: translateY(-10px); /* Image ko upar uthayenge */
  }
}

/* Jab mouse image par aaye toh animation ho */
.effect img:hover {
  animation: bounce 0.5s ease; /* 0.5 seconds ke liye bounce effect */
  cursor: pointer; /* Cursor ko pointer mein set kar rahe hain */
}

.bar_icon {
  margin: 22px 3px 16px 0px;
  font-size: 24px;
}

html,
body {
  line-height: 1.4;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
}

.navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.container {
  max-width: 1000px;
  margin: 0 auto;
}
nav {
  box-shadow: 5px 5px 5px rgba(1, 1, 1, 0.05);
  position: sticky;
  top: 0;
  margin-bottom: 32px;
  background: white;
  padding: 0px;
  z-index: 999; /* Isko navigation bar se topmost pe hote hain */
}
/* hero section */
.hero_image img {
  width: 420px; /* Image ka width set kar rahe hain */
  height: 420px; /* Image ka height set kar rahe hain, taaki gol ban sake */
  object-fit: cover; /* Image ko crop karke fit karta hai, perfect gol banane ke liye */
  border-radius: 100%; /* Is property se image gol banegi */
}
.hero {
  display: flex;
  gap: 180px;
  justify-content: center;
  align-items: center;
}
.hero_content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.tag {
  color: white;
  font-size: 18px;
  font-weight: bold;
  background-color: #e09f05;
  padding: 5px 10px;
  align-self: flex-start;
}
.hero_content h1 {
  font-size: 40px;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
}
button {
  padding: 10px 15px;
  border: none;
  transition: 0.2s ease-in-out;
}
button:hover {
  background-color: #e09f05;
  color: white;
  cursor: pointer;
  transform: translateY(-3px);
}
.explore_btn {
  align-self: self-start;
  background-color: #d8d8d8;
}
/* @media (max-width: 786px) {
  .hero {
    flex-direction: column;
    gap: 10px;
  }
  .hero_image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 100%;
  }
  .hero_content {
    gap: 10px;
    padding: 10px;
  }
} */
@media (max-width: 786px) {
  .hero {
    flex-direction: column;
    gap: 10px;
  }

  .hero_image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 100%;
    animation: move 2s infinite alternate; /* Animation ko apply karna */
  }
  .logo_container img {
    margin-left: 8px;
  }
  .hero_content {
    gap: 10px;
    padding: 10px;
  }
  .hero_content h1 {
    font-size: 24px;
    font-weight: 500;
    color: #333;
    line-height: 1.2;
  }

  /* Keyframes for side-to-side movement */
  @keyframes move {
    0% {
      transform: translateX(0); /* Start position */
    }
    50% {
      transform: translateX(10px); /* Right move */
    }
    100% {
      transform: translateX(-10px); /* Left move */
    }
  }

  /* ..................................................... */
  @keyframes bounce {
    0%,
    100% {
      transform: translateY(0); /* Normal position pe */
    }
    50% {
      transform: translateY(-10px); /* Image ko upar uthayenge */
    }
  }

  /* Mouse hover effect for desktop */
  .effect img:hover {
    animation: bounce 0.5s ease; /* 0.5 seconds ke liye bounce effect */
  }

  /* Tap/click effect for mobile */
  .effect img:active {
    animation: bounce 0.5s ease; /* 0.5 seconds ke liye bounce effect */
  }

  /* Image basic styling */
  .effect img {
    width: 70px;
    height: auto;
  }
  /* Tap effect for mobile screens */
  button:active {
    background-color: #e09f05; /* Color change on tap */
    color: white;
    transform: translateY(-3px); /* Button thoda upar move hoga */
  }
  /* Hover effect for mobile screens (just in case used on tablets with mouse) */
  button:hover {
    background-color: #e09f05; /* Color change on hover */
    color: white;
    cursor: pointer;
    transform: translateY(-3px); /* Button thoda upar move hoga */
  }
  .explore_btn:hover {
    background-color: #e09f05; /* Change background color on hover */
    color: white;
    transform: translateY(-3px); /* Button slightly moves up */
  }

  /* Tap effect (for phones) */
  .explore_btn:active {
    background-color: #e09f05; /* Change background color on tap */
    color: white;
    transform: translateY(-3px); /* Button slightly moves up */
  }
  .features {
    flex-direction: column; /* Stack items vertically on smaller screens */
    margin-top: 50px;
    margin-bottom: 30px;
  }

  .features img {
    width: 200px; /* Adjust image size for mobile */
  }

  .feature {
    flex-direction: column; /* Stack feature items vertically */
    align-items: center; /* Center align items */
  }
  .footer_container {
    flex-direction: column;
  }
}
/* discount section */
.features {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}
.features img {
  width: 80px;
  height: auto;
  margin-bottom: 10px;
}
.feature {
  display: flex;
  gap: 20px;
  padding: 10px;
  transition: 0.2s ease-in-out;
}
.feature:hover {
  cursor: pointer;
  transition: 0.2s ease-in-out;
  box-shadow: 5px 5px 5px rgba(1, 1, 1, 0.05);
}
.divider {
  border: 1px solid #e09f05;
  margin: 20px 0px;
}
/* menu section */
.menu {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 20px 0px;
  align-items: center;
}
.menu .tag {
  align-self: center;
}
.grid img {
  width: 270px;
  height: auto;
  object-fit: cover;
  /* margin-bottom: 2px;
  margin-top: 10px; */
}
.grid {
  display: grid;
  gap: 20px;
  grid-auto-rows: minmax(100px, auto); /* Set a minimum height for the rows */
  grid-template-areas:
    "I1 I3 I5 I2"
    "I1 I4 I6 I2";
}

.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;
}
.grid_image:hover {
  transform: scale(1.1); /* Increase image size on hover */
  cursor: pointer;
}
.grid_image {
  border: 10px;
  transition: 0.2s ease-in-out;
  width: 100%;
  height: 100%;
}
.resize {
  width: 100px;
  height: auto;
}
footer {
  background-color: #fff0db;
}
.footer_container {
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
.link_list h3 {
  margin-bottom: 10px;
  color: #f0ab07;
}
.link_list ul {
  list-style: none;
}
.news_letter h6 {
  color: #d7360f;
  margin: 5px;
}
.link_list ul li {
  font-size: 16px;
  margin-bottom: 5px;
}
.news_letter input {
  padding: 5px 20px;
  margin: 10px;
}
.icon_container {
  display: flex;
  gap: 10px;
}
