/* Section-Gallery*/
#gallery-section {
}
#gallery-section .gallery-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 3rem;
}
#gallery-section .gallery-container .sideBar {
  width: 20%;
  background: #e3e3e3;
  padding: 2rem;
  border-radius: 15px;
}
#gallery-section .gallery-container .sideBar .sideBar-container {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  list-style-type: none;
  gap: 10px;
}
#gallery-section .gallery-container .sideBar .sideBar-container li {
}
#gallery-section .gallery-container .sideBar .sideBar-container li a {
  text-decoration: none;
  color: rgb(36 135 218);
}
#gallery-section .gallery-container .sideBar .sideBar-container li a:hover {
  color: black;
  font-weight: bold;
  transition: all 0.3s;
}
/* Galeri ürün kartların bulunduğu kısım yani sağ taraf */
#gallery-section .gallery-container .gallery {
  display: flex;
  flex-wrap: wrap;
  width: 75%;
  gap: 15px;
}
#gallery-section .gallery-container .gallery .urun-card {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 10px;
  margin-top: 3rem;
  border: 1px solid #e3e3e3;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  transition: transform 0.5s;
  overflow: hidden;
  height: 400px;
}
#gallery-section .gallery-container .gallery .urun-card img {
  width: 100%;
  height: 50%;
}
#gallery-section .gallery-container .gallery .urun-card img:hover {
  cursor: pointer;
}
#gallery-section .gallery-container .gallery .urun-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}
#gallery-section .gallery-container .gallery .urun-card h3 {
  padding: 1rem;
  text-align: left;
  width: 100%;
}
#gallery-section .gallery-container .gallery .urun-card p {
  padding-left: 1rem;
  line-height: 1;
}
#gallery-section .gallery-container .gallery .urun-card .btnMore {
  margin: 1rem;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: #fff;
  background: var(--mavi);
  border-radius: 5px;
  transition: all 0.5s;
}
#gallery-section .gallery-container .gallery .urun-card .btnMore:hover {
  background-color: #71ff02;
  color: #fff;
}
@media screen and (max-width: 960px) {
  #gallery-section .gallery-container {
    flex-direction: column;
  }
  #gallery-section .gallery-container .sideBar {
    width: 100%;
  }
  #gallery-section .gallery-container .gallery {
    width: 100%;
    margin: 0 auto;
  }
  #gallery-section .gallery-container .gallery .urun-card {
    width: 100%;
  }
  #gallery-section .gallery-container .sideBar .sideBar-container {
    align-items: center;
  }
}
