
@font-face {
  font-family: 'Lexend';
  src: url('/fonts/LexendGiga-VariableFont_wght.ttf') format('truetype');
}

body {
  font-family: 'Lexend', sans-serif;
  margin: 0;
  padding: 0;
}

.navbar {
  background: #b6cae7;
  padding: 15px 25px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

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

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}

.navbar-menu {
  display: flex;
  gap: 15px;
}

.nav-link {
  text-decoration: none;
  color: #333;
  padding: 8px 12px;
  transition: 0.3s;
}

.nav-link:hover {
  background: #838587;
  color: white;
  border-radius: 5px;
}

.nav-link.active {
  color: white;
  background-color: #525151;
  text-decoration: underline;
  border-radius: 5px;
  font-weight: bold;
}

.navbar-toggler {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.main {
  display: flex;
  padding-top: 80px;
  background-color: #f0f0f0;
  flex-wrap: wrap;
}

.main__left, .main__right {
  box-sizing: border-box;
}

.main__left {
  width: 40%;
  padding: 20px;
}

.main__left img {
  width: 100%;
  border-radius: 15px;
  transition: 0.5s;
}

.main__left img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.main__right {
  width: 60%;
  padding: 150px;
}

.top {
  text-align: center;
  margin-bottom: 40px;
}

.main__right__top{
  padding-top: 150px;
  padding-bottom: 40px;
    display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.main__right__mid{
  padding-bottom: 40px;
    display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.main__right__bottm {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.main__right__1,
.main__right__2,
.main__right__3,
.main__right__4,
.main__right__5,
.main__right__6 {
  display: flex;
  align-items: center;
  background-color: #b6cae7;
  border-radius: 8px;
  padding: 15px 25px;
  width: 45%;
  transition: 0.3s;
}

.main__right__1:hover,
.main__right__2:hover,
.main__right__3:hover,
.main__right__4:hover,
.main__right__5:hover,
.main__right__6:hover {
  background-color: #e7a775;
  transform: scale(1.02);
}

.main__right__1__l img,
.main__right__2__l img,
.main__right__3__l img,
.main__right__4__l img,
.main__right__5__l img,
.main__right__6__l img {
  margin-right: 15px;
}

.main__right__1 a,
.main__right__2 a,
.main__right__3 a,
.main__right__4 a,
.main__right__5 a,
.main__right__6 a {

  text-decoration: none;
    color: black;
    transition-duration: 1000ms;

}

.main__right__1 a:hover,
.main__right__2 a:hover,
.main__right__3 a:hover,
.main__right__4 a:hover,
.main__right__5 a:hover,
.main__right__6 a:hover{


   transform: scale(1.5);
    color: rgb(255, 81, 226);
    cursor: pointer;

}

.footer {
  background-color: #b6cae7;
  border-radius: 9px;
  padding: 20px 0;
  margin-top: 60px;
}

.footer__1 {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer__1 div:hover {
  transform: scale(1.2);
  transition: 0.3s;
}

.copyright {
  text-align: center;
}

/* ریسپانسیو برای گوشی */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar-toggler {
    display: block;
  }

  .navbar-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #f8f9fa;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .navbar-menu.show {
    display: flex;
  }

  .main {
    flex-direction: column;
    padding: 80px 10px 20px;
  }

  .main__left, .main__right {
    width: 100%;
    padding: 10px;
  }

  .main__right__1,
  .main__right__2,
  .main__right__3,
  .main__right__4,
  .main__right__5,
  .main__right__6 {
    width: 90%;
  }
}
