/* Koleksiyon galerisi stilini özelleştir */
#koleksiyon {
    background-color: #f9f9f9; /* Arka plan rengi */

  }

  .aciklama{
    padding: 20px;
  }
  
  .section-title {
    text-align: center;
    font-size: 36px; /* Başlık font boyutu */
    margin-bottom: 30px;
  }
  
  .collection-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Dinamik sütunlar */
    gap: 20px; /* Ürünler arası boşluk */
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
  }
  
  .gallery-item img {
    max-width: 100%;
    height: auto;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
  }
  
  .gallery-item:hover .overlay {
    opacity: 1;
  }
  
  .overlay h3 {
    font-size: 24px; /* Başlık font boyutu */
    margin: 10px 0;
  }
  
  .overlay p {
    font-size: 16px; /* Açıklama font boyutu */
  }

  .kolesksiyon-btn{
    width: 100%;
    background: #00539b;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    margin-top: 17px;
    transition: 0.5s;
  }

  .kolesksiyon-btn:hover{
    background: #05497e;
    transition: 0.5s;
  }

  .kolesksiyon-btn a{
    text-align: center;
    text-decoration: none;
    color: white;
    font-size: 20px;
    
  }
  