.social-follow {
  background-color: #ff7f00;
  color: white;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.follow-box {
  display: inline-block;
  border: 4px solid white;
  padding: 10px 30px;
  margin-bottom: 20px;
}

.follow-box h2 {
  font-size: 2.5em;
  margin: 0;
  color: white;
}

.social-follow p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: white;
  font-size: 1.1em;
  transition: transform 0.2s ease;
}

.social-item i {
  font-size: 2em;
  margin-bottom: 8px;
}

.social-item:hover {
  transform: scale(1.1);
  color: #fffacd;
}

.service-times-kids {
  background-color: #ffe4b5;
  padding: 50px 20px;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  text-align: center;
}

.service-header h2 {
  font-size: 2.5em;
  color: #ff6f61;
  margin-bottom: 10px;
}

.service-header p {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 30px;
}

.service-schedule {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.location-card {
  background-color: #fff8dc;
  border-radius: 15px;
  padding: 20px;
  max-width: 500px;
  width: 100%;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.location-card:hover {
  transform: scale(1.03);
}

.location-card h3 {
  margin: 0;
  font-size: 1.5em;
  color: #333;
}

.details {
  display: none;
  margin-top: 10px;
  font-size: 1em;
  color: #444;
}


.slk-dance-section {
  background-color: #ffa07a; /* Soft orange */
  padding: 60px 20px;
  font-family: 'Comic Sans MS', cursive, sans-serif;
}

.slk-dance-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.slk-dance-left {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: left;
  color: white;
}

.slk-dance-left h2 {
  font-size: 2.8em;
  margin-bottom: 10px;
}

.slk-dance-left p {
  font-size: 1.2em;
  margin-top: 10px;
}

.slk-dance-right {
  flex: 1 1 500px;
  max-width: 560px;
}

.slk-video-wrapper iframe {
  width: 100%;
  height: 315px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.slk-dance-left-interactive {
  text-align: left;
  color: white;
  animation: fadeInUp 1s ease-out;
}

.slk-dance-left-interactive h2 {
  font-size: 2.8em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dance-emoji {
  display: inline-block;
  animation: bounce 1.5s infinite;
}

.slk-dance-left-interactive p {
  font-size: 1.2em;
  margin: 10px 0 20px;
}

.slk-dance-btn {
  background-color: #ffffff;
  color: #ff6f61;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.slk-dance-btn:hover {
  background-color: #ffe4e1;
  transform: scale(1.05);
}

/* Animations */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
