/* Performing Arts Section */
.performing-arts {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url(images/performing.jpg);
   background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: gradientShift 8s ease infinite;
  overflow: hidden;
}

.performing-arts::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255,255,255,0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.06) 0%, transparent 50%);
  animation: pearlShift 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Floating Particles - Performing Arts */
.performing-arts .particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Curated Workshops Section */
.curated-workshops {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)), url(images/curated-workshop.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: gradientShift 8s ease infinite;
  overflow: hidden;
}

.curated-workshops::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255,255,255,0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.06) 0%, transparent 50%);
  animation: pearlShift 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Floating Particles - Workshops */
.curated-workshops .particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Celebrations Section */
.celebrations {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  background: 
  linear-gradient(
    rgba(0,0,0,0.5), 
    rgba(0,0,0,0.5)
  ),
  url("images/celebration.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  animation: gradientShift 8s ease infinite;
  overflow: hidden;
}

.celebrations::after {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255,255,255,0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.06) 0%, transparent 50%);
  animation: pearlShift 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* Floating Particles - Celebrations */
.celebrations .particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Pearl Shift Animation */
@keyframes pearlShift {
  0%, 100% {
    transform: scale(1) translateX(0);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1) translateX(20px);
    opacity: 1;
  }
}

/* Gradient Animation */
@keyframes gradientShift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(20deg); }
}

/* Overlay Containers */
.performing-overlay,
.workshops-overlay,
.celebrations-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  animation: fadeInUp 1s ease-out;
}

/* Content Containers */
.performing-content,
.workshops-content,
.celebrations-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

/* Headings */
.performing-content h2,
.workshops-content h2,
.celebrations-content h2,
.body-emotions-content h2,
.held-content h2{
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleSlide 1s ease-out 0.2s both;
}

@keyframes titleSlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Paragraphs */
.performing-content p,
.workshops-content p,
.celebrations-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 1.5rem auto;
  opacity: 0.95;
  animation: fadeIn 1s ease-out 0.4s both;
  max-width: 800px;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.95; }
}

/* Card Styles */
.performing-card,
.workshop-card {
  position: relative;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 500px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.6s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  animation: breathe 3s ease-in-out infinite;
  border: 2px solid rgba(255,255,255,0.3);
}

@keyframes breathe {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  50% { 
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  }
}

.performing-card a,
.workshop-card a {
  text-decoration: none;
  color: #fff;
  display: block;
}

.performing-card:hover,
.workshop-card:hover {
  transform: scale(1.05) translateY(-10px);
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.8);
  box-shadow: 0 10px 30px rgba(255,255,255,0.2);
  animation: none;
}

.performing-card::before,
.workshop-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: 16px;
}

.performing-card:hover::before,
.workshop-card:hover::before {
  opacity: 1;
}

/* Card Text */
.card-text {
  position: relative;
  z-index: 1;
}

.card-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: transform 0.4s ease;
}

.performing-card:hover .card-text h3,
.workshop-card:hover .card-text h3 {
  transform: scale(1.1);
}

.card-text p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
  animation: none;
}

/* Floating Particles */
.performing-arts::before,
.curated-workshops::before,
.celebrations::before {
  content: '';
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Divider */
hr {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  border: none;
  margin: 0;
}

.body-emotions {
  position: relative;
  min-height: 100vh;
  background: url("images/body-of-emotions.jpeg") center/cover no-repeat;
  display: flex;
  padding:50px 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.body-emotions-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.body-emotions-content {
  max-width: 90%;
  color: #fff;
  z-index: 2;
}



.body-emotions-content .section-subtitle {
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.body-emotions-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.emotions-cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  border-radius: 30px;
  background: #fff;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s ease;
}

.emotions-cta-btn:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

/* Tablets (≥ 768px) */
@media (min-width: 768px) {
  .body-emotions-content {
    max-width: 700px;
  }

  .body-emotions-content h2 {
    font-size: 2.2rem;
  }

  .body-emotions-content .section-subtitle {
    font-size: 1.1rem;
  }

  .body-emotions-content p {
    font-size: 1rem;
  }

  .emotions-cta-btn {
    font-size: 1rem;
    padding: 12px 26px;
  }
}

/* Laptops (≥ 1024px) */
@media (min-width: 1024px) {
  .body-emotions-content {
    max-width: 800px;
  }

  .body-emotions-content h2 {
    font-size: 2.6rem;
  }

  .body-emotions-content .section-subtitle {
    font-size: 1.2rem;
  }

  .body-emotions-content p {
    font-size: 1.05rem;
  }

  .emotions-cta-btn {
    font-size: 1rem;
    padding: 12px 28px;
  }
}
/* Floating Particles - Body of Emotions */
.body-emotions .particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Optional layer (matches other sections) */
.body-emotions::before {
  content: '';
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Particle Style */
.particle {
  position: absolute;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: particleFloat 15s linear infinite;
}

/* Animation */
@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Fix layering (important) */
.body-emotions-overlay {
  z-index: 2;
}

.body-emotions .particles {
  z-index: 1;
}
/* Base (Mobile First) */
.held-section {
  position: relative;
  min-height: 100vh;
  background: url("images/held.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.held-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  z-index: 2;
}

.held-content {
  max-width: 90%;
  color: #fff;
  z-index: 2;
}



.held-content .section-subtitle {
  font-size: 1rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.held-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Particles */
.held-section .particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Tablet (≥ 768px) */
@media (min-width: 768px) {
  .held-content {
    max-width: 700px;
  }

  .held-content h2 {
    font-size: 2.2rem;
  }

  .held-content .section-subtitle {
    font-size: 1.1rem;
  }

  .held-content p {
    font-size: 1rem;
  }
}

/* Laptop (≥ 1024px) */
@media (min-width: 1024px) {
  .held-content {
    max-width: 800px;
  }

  .held-content h2 {
    font-size: 2.6rem;
  }

  .held-content .section-subtitle {
    font-size: 1.2rem;
  }

  .held-content p {
    font-size: 1.05rem;
  }
}

/* Large Screens (≥ 1440px) */
@media (min-width: 1440px) {
  .held-content {
    max-width: 900px;
  }

  .held-content h2 {
    font-size: 3rem;
  }

  .held-content .section-subtitle {
    font-size: 1.3rem;
  }

  .held-content p {
    font-size: 1.1rem;
  }
}

/* Ultra Wide (≥ 1920px) */
@media (min-width: 1920px) {
  .held-content {
    max-width: 1000px;
  }

  .held-content h2 {
    font-size: 3.4rem;
  }

  .held-content p {
    font-size: 1.15rem;
  }
}

/* Small Devices (≤ 480px) */
@media (max-width: 480px) {
  .held-section {
    min-height: auto;
    padding: 3rem 1rem;
  }

  .held-content h2 {
    font-size: 1.6rem;
  }

  .held-content p {
    font-size: 0.9rem;
  }
}
/* Large Screens (≥ 1440px) */
@media (min-width: 1440px) {
  .body-emotions-content {
    max-width: 900px;
  }

  .body-emotions-content h2 {
    font-size: 3rem;
  }

  .body-emotions-content .section-subtitle {
    font-size: 1.3rem;
  }

  .body-emotions-content p {
    font-size: 1.1rem;
  }

  .emotions-cta-btn {
    font-size: 1.1rem;
    padding: 14px 32px;
  }
}

/* Ultra Wide Screens (≥ 1920px) */
@media (min-width: 1920px) {
  .body-emotions-content {
    max-width: 1000px;
  }

  .body-emotions-content h2 {
    font-size: 3.4rem;
  }

  .body-emotions-content p {
    font-size: 1.15rem;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .performing-content h2,
  .workshops-content h2,
  .celebrations-content h2 {
    font-size: 2rem;
  }

  .performing-content p,
  .workshops-content p,
  .celebrations-content p {
    font-size: 1rem;
  }

  .performing-card,
  .workshop-card {
    padding: 1.5rem;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .performing-arts,
  .curated-workshops,
  .celebrations {
    min-height: auto;
    padding: 3rem 1.5rem;
  }

  .performing-content h2,
  .workshops-content h2,
  .celebrations-content h2 {
    font-size: 1.75rem;
  }

  .performing-content p,
  .workshops-content p,
  .celebrations-content p {
    font-size: 0.95rem;
    margin: 1rem auto;
  }

  .performing-card,
  .workshop-card {
    padding: 1.5rem 1rem;
  }

  .card-text h3 {
    font-size: 1.25rem;
  }

  .card-text p {
    font-size: 0.9rem;
  }
}
