/* Gallery Hero Section */
.gallery-hero {
  text-align: center;
  padding: 80px 20px 40px;
  /* background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(58, 12, 163, 0.1)); */
  background: #13005A !important; 
  color: #3a0ca3;
  position: relative;
  overflow: hidden;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.05), rgba(247, 37, 133, 0.05));
  z-index: -1;
}

.gallery-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 15px;
  background: whitesmoke;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gallery-hero p {
  font-size: 1.3rem;
  color: whitesmoke;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 60px 5%;
  background: rgba(248, 249, 250, 0.8);
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(67, 97, 238, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(67, 97, 238, 0.25);
}

.gallery-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(58, 12, 163, 0.9), transparent);
  color: white;
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-card:hover .overlay {
  transform: translateY(0);
}

.overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.overlay p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* VR Experience Section */
.vr-experience {
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.03), rgba(247, 37, 133, 0.03));
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.vr-experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M30,30 L70,30 L70,70 L30,70 Z" fill="none" stroke="%234361ee" stroke-width="0.5" stroke-dasharray="5,5" opacity="0.1"/></svg>');
  background-size: 50px 50px;
  z-index: -1;
}

.vr-experience h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #3a0ca3;
}

.vr-experience p {
  font-size: 1.1rem;
  color: #4361ee;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.vr-container {
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(67, 97, 238, 0.2);
  overflow: hidden;
  border: 1px solid rgba(67, 97, 238, 0.1);
  position: relative;
}

.vr-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(247, 37, 133, 0.1));
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery-hero h1 {
    font-size: 2.5rem;
  }
  
  .gallery-hero p {
    font-size: 1.1rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    padding: 40px 20px;
    gap: 15px;
  }
  
  .vr-container {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .gallery-hero {
    padding: 60px 15px 30px;
  }
  
  .gallery-hero h1 {
    font-size: 2rem;
  }
  
  .vr-experience h2 {
    font-size: 1.8rem;
  }
  
  .vr-container {
    height: 250px;
  }
}