/* ============================
    Hero Images Grid CSS - Staggered Layout
==============================*/
.hero-images-grid {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 20px 0;
  position: relative;
}

.hero-image-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* İlk kare - sol üstte, daha küçük */
.hero-image-card:first-child {
  width: 280px;
  flex-shrink: 0;
  margin-top: 0;
}

/* İkinci kare - sağ altta, daha büyük */
.hero-image-card:last-child {
  width: 350px;
  flex-shrink: 0;
  margin-top: 120px;
}

.hero-image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(196, 255, 0, 0.3);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* 1:1 aspect ratio - kare */
  overflow: hidden;
}

.hero-image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.hero-image-card:hover .hero-image-wrapper img {
  transform: scale(1.05);
}

/* Responsive - tablet */
@media (max-width: 992px) {
  .hero-image-card:first-child {
    width: 220px;
  }
  
  .hero-image-card:last-child {
    width: 280px;
    margin-top: 100px;
  }
}

/* Responsive - mobile */
@media (max-width: 768px) {
  .hero-images-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .hero-image-card:first-child {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-image-card:last-child {
    width: 100%;
    max-width: 350px;
    margin-top: 0;
  }
}
