/* ===== SIMPLE INFLUENCER IMAGE GALLERY ===== */
.influencer-gallery-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.influencer-gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e2e8f0" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-pattern)"/></svg>');
  opacity: 0.5;
}

.gallery-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fe6440 0%, #f62d67 50%, #e41975 100%);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== GALLERY LAYOUT ===== */
.gallery-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
}

.gallery-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 200px;
}

.gallery-side .gallery-image {
  width: 200px;
  height: 200px;
  border-radius: 1.5rem;
}

.gallery-center {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 700px;
}

.gallery-center .main-image:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  width: 100%;
  height: 250px;
}

.gallery-center .main-image:nth-child(2) {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
  width: 100%;
  height: 250px;
}

.gallery-center .main-image:nth-child(3) {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  width: 100%;
  height: 200px;
}

.gallery-center .main-image:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  width: 100%;
  height: 200px;
}

.gallery-center .main-image:nth-child(5) {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
  width: 100%;
  height: 300px;
}

.gallery-image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.gallery-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-image:hover img {
  transform: scale(1.1);
}

.gallery-cta {
  margin-top: 3rem;
}

.gallery-cta .btn {
  min-width: 250px;
}

/* ===== RESPONSIVE STYLES FOR GALLERY ===== */
@media (max-width: 991.98px) {
  .gallery-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .gallery-center {
    max-width: 100%;
  }
  
  .gallery-side {
    width: 100%;
    flex-direction: row;
    justify-content: center;
  }
  
  .gallery-side .gallery-image {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 767.98px) {
  .gallery-center {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-center .main-image:nth-child(1),
  .gallery-center .main-image:nth-child(2),
  .gallery-center .main-image:nth-child(3),
  .gallery-center .main-image:nth-child(4),
  .gallery-center .main-image:nth-child(5) {
    grid-column: 1;
    height: 250px;
  }
  
  .gallery-center .main-image:nth-child(1) { grid-row: 1; }
  .gallery-center .main-image:nth-child(2) { grid-row: 2; }
  .gallery-center .main-image:nth-child(3) { grid-row: 3; }
  .gallery-center .main-image:nth-child(4) { grid-row: 4; }
  .gallery-center .main-image:nth-child(5) { grid-row: 5; }
  
  .gallery-side {
    flex-direction: column;
    align-items: center;
  }
  
  .gallery-side .gallery-image {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .gallery-side .gallery-image {
    width: 150px;
    height: 150px;
  }
  
  .gallery-cta .btn {
    min-width: 200px;
  }
}
