 .studio-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5);
}

.studio-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 20px;
  animation: slideFade 1s ease-out;
}

.studio-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.studio-hero-content p {
  font-size: 1.2rem;
  color: #e0e0e0;
}

.studio-hero-content i {
  margin-right: 10px;
  color: #ff3e3e;
}

@keyframes slideFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .studio-hero {
    height: 60vh;
  }

  .studio-hero-content h1 {
    font-size: 2rem;
  }

  .studio-hero-content p {
    font-size: 1rem;
  }
}


    /* 🌟 Base Reset */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fa;
  color: #222;
  overflow-x: hidden;
}

.section-title {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #102542;
  position: relative;
}
.section-title i {
  margin-right: 8px;
  color: #ff3e3e;
}

/* 🎬 Hero */
.studio-hero {
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  color: white;
  padding: 100px 20px;
  text-align: center;
}
.studio-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-in-out;
}
.studio-hero-content p {
  font-size: 1.2rem;
  animation: fadeInUp 1.3s ease-in-out;
}

/* 🖼️ Gallery */
.studio-gallery {
  padding: 80px 20px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}
.gallery-card:hover {
  transform: scale(1.03);
}
.gallery-card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-card:hover img {
  transform: scale(1.08);
}
.gallery-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  color: #fff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.4s ease;
}
.gallery-card:hover .overlay {
  opacity: 1;
  transform: translateY(0);
}
.overlay h3 {
  margin-bottom: 6px;
  font-size: 1.3rem;
}
.overlay p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* 🎬 Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .studio-hero-content h1 {
    font-size: 2.1rem;
  }
  .gallery-card .overlay h3 {
    font-size: 1.1rem;
  }
}