/* Anant Utsav 2025 Block Styles */
.anant-utsav-2025-block {
  width: 100%;
  max-width: 1400px;
  margin: 2rem auto;
  padding: 2rem;
  background: linear-gradient(135deg, #faf9f6 0%, #f5f3f0 100%);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.anant-utsav-header {
  text-align: center;
  margin-bottom: 3rem;
}

.anant-utsav-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c1810;
  margin: 0 0 1rem 0;
  letter-spacing: -0.5px;
}

.anant-utsav-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.anant-utsav-section-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c1810;
  margin: 0 0 2rem 0;
  padding-bottom: 1rem;
  border-bottom: 3px solid #c9a961;
}

/* Gallery Container */
.anant-utsav-gallery-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

/* Videos Row - First Row */
.gallery-row-videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e0e0e0;
}

.gallery-item-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Masonry Grid Layout */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  auto-rows: 250px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #f0f0f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.gallery-item-wide {
  grid-column: span 2;
  auto-rows: 250px;
}

.gallery-item-portrait {
  grid-column: span 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .gallery-masonry {
    grid-template-columns: repeat(3, 1fr);
  }

  .anant-utsav-heading {
    font-size: 2rem;
  }

  .gallery-row-videos {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .anant-utsav-2025-block {
    padding: 1.5rem;
    margin: 1rem auto;
  }

  .anant-utsav-heading {
    font-size: 1.5rem;
  }

  .anant-utsav-section-title {
    font-size: 1.3rem;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    auto-rows: 200px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-row-videos {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
    auto-rows: 200px;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .anant-utsav-2025-block {
    padding: 1rem;
  }
}
