:root {
  --bg-dark: #111;
  --text-light: #eee;
  --accent: #e91e63;
  --gradient: linear-gradient(45deg, #e91e63, #9c27b0);
  --fade-duration: 1s;
}
body {
  margin: 0;
  font-family: Montserrat, sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(10px);
  position: relative;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.8rem;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}
.site-nav a {
  color: var(--text-light);
  text-decoration: none;
  padding: 8px;
  transition: color 0.3s;
}
.site-nav a:hover {
  color: var(--accent);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
}
.dropdown ul {
  margin: 0 auto;
  align-items: center;
}
.dropdown li a {
  display: block;
  padding: 8px 16px;
  white-space: nowrap;
}
.menu-toggle {
  display: none;
}

.hero-parallax {
  height: 80vh;
  background: url("../assets/images/hero.jpeg") center/cover fixed;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  text-align: center;
  width: 100%;
  color: #fff;
}
.hero-content h2 {
  font-size: 3rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
}
.btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 32px;
  background: var(--gradient);
  color: #fff;
  border-radius: 30px;
  transition: opacity 0.3s;
}
.btn:hover {
  opacity: 0.8;
}

.fade-in {
  opacity: 0;
  animation: fadeIn var(--fade-duration) forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.about-section {
  padding: 80px 0;
  text-align: center;
}
.about-section h3 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.sections-list {
  padding: 80px 0;
}
.sections-list .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}
.sections-list .card {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s;
}
.sections-list .card:hover {
  transform: translateY(-8px);
}
.sections-list h3 {
  text-align: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.instructors-section {
  padding: 80px 0;
  background: #1a1a1a;
}
.instructor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.instructor {
  text-align: center;
  width: 160px;
  transition: transform 0.3s;
}
.instructor img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border: 2px solid var(--accent);
  border-radius: 50%;
}
.instructor:hover {
  transform: scale(1.05);
}

.contact-section {
  padding: 80px 0;
  text-align: center;
}
.contact-section a {
  color: var(--accent);
}

@media (max-width: 768px) {
  .site-nav ul {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .menu-toggle span {
    width: 24px;
    height: 3px;
    background: #eee;
    border-radius: 2px;
  }
}

.parallax-section {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 100%;
  width: 101%;
  height: 100%;
  background: url("../assets/images/gallery1.jpg") center/cover no-repeat;
  transform: translateX(-50%);
  background-attachment: fixed;
  will-change: transform;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.parallax-overlay h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.parallax-overlay p {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  color: #f0f0f0;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .parallax-section {
    perspective: 1px;
    perspective-origin: center center;
  }
  .parallax-bg {
    transform: translateZ(-1px) scale(2) translateX(-50%);
  }
}

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

@media (max-width: 767px) {
  .parallax-overlay h2 {
    font-size: 2rem;
  }
  .parallax-overlay p {
    font-size: 1rem;
  }
}

.hero-content img {
  max-width: 150px;
  margin-bottom: 20px;
}

.gallery-section {
  padding: 80px 0;
  background: #111;
}
.gallery-section h2 {
  text-align: center;
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease forwards;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 200px;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 10px;
  text-align: center;
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.overlay p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}

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

@media (max-width: 600px) {
  .gallery-section {
    padding: 60px 0;
  }
  .gallery-section h2 {
    font-size: 2rem;
  }
}

.promo-section {
  position: relative;
  width: 100%;
  background: url("../assets/images/gallery2.jpg") center/cover no-repeat;
  height: 60vh;
  display: flex;
  align-items: center;
}
.promo-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.promo-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  animation: fadeInUp 1s ease forwards;
}
.promo-content h2 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}
.promo-content p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.5;
}
.promo-content .btn {
  display: inline-block;
  background: linear-gradient(45deg, #d16ba5, #c777b9);
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}
.promo-content .btn:hover {
  background: linear-gradient(45deg, #c777b9, #d16ba5);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .promo-section {
    height: 50vh;
  }
  .promo-content h2 {
    font-size: 2rem;
  }
  .promo-content p {
    font-size: 1rem;
  }
}

.contact-section {
  background: var(--dark-bg);
  padding: 60px 0;
}
.contact-section h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--accent);
}
.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: start;
}
.contact-info p,
.contact-info h4 {
  margin-bottom: 16px;
}
.contact-info h4 {
  margin-top: 24px;
  color: var(--accent);
}
.contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}
.contact-info ul li {
  margin-bottom: 8px;
}
.contact-info a {
  color: var(--accent);
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}
.btn.small {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
}
.btn.small:hover {
  background: darken(var(--accent), 10%);
}

.contact-form {
  background: #222;
  padding: 24px;
  border-radius: 8px;
}
.contact-form h4 {
  margin-bottom: 16px;
  color: var(--accent);
}
.contact-form form {
  display: flex;
  flex-direction: column;
}
.contact-form label {
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  background: var(--input-bg);
  border: 1px solid var(--input-border);
  border-radius: 4px;
  color: var(--light-text);
  font-size: 0.95rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form button {
  margin-top: 8px;
  padding: 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}
.contact-form button:hover {
  background: darken(var(--accent), 10%);
}

.contact-map .map-placeholder {
  background: #333;
  height: 100%;
  min-height: 200px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  font-style: italic;
}

.site-footer {
  background: #000;
  color: #777;
  padding: 24px 0;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.footer-logo img {
  width: 120px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.footer-nav a {
  color: var(--light-text);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-nav a:hover {
  color: var(--accent);
}
.footer-nav .bar {
  color: #444;
  margin: 0 6px;
}
.footer-copy {
  width: 100%;
  margin-top: 16px;
  font-size: 0.8rem;
}

@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
  }
}

.all-sections {
  padding: 80px 0;
  background: #111;
  color: #eee;
}
.all-sections h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: var(--accent);
}
.sections-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.section-link {
  display: block;
  padding: 16px 20px;
  background: #222;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.section-link:hover {
  transform: translateY(-5px);
  background: var(--accent);
  color: #000;
}
@media (max-width: 600px) {
  .sections-link-list {
    grid-template-columns: 1fr;
  }
}

.workshops-section {
  padding: 80px 0;
  background: #fafafa;
}
.workshops-section h2 {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: var(--primary);
}
.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.workshop-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.workshop-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.workshop-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.workshop-info h3 {
  margin-top: 0;
  font-size: 1.5rem;
  color: var(--accent);
}
.ws-date {
  font-style: italic;
  margin: 8px 0;
  color: #666;
}
.ws-desc {
  flex: 1;
  margin-bottom: 16px;
  color: #444;
}
.ws-price {
  font-weight: bold;
  margin-bottom: 16px;
  color: var(--accent);
}
.ws-btn {
  align-self: flex-start;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent-start), var(--accent-end));
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.ws-btn:hover {
  background: linear-gradient(135deg, var(--accent-end), var(--accent-start));
}

@media (max-width: 600px) {
  .workshops-grid {
    grid-template-columns: 1fr;
  }
}

.dance-workshops-section {
  background: #111;
  color: #eee;
  padding: 80px 0;
}
.dance-workshops-section h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 48px;
  color: #f06292;
}
.dance-workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.dance-workshop {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s ease;
}
.dance-workshop:hover {
  transform: translateY(-6px);
}
.dance-workshop img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.dance-info {
  background: rgba(0, 0, 0, 0.8);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dance-info h3 {
  margin: 0;
  font-size: 1.6rem;
  color: #f06292;
}
.dance-info .date {
  font-size: 0.9rem;
  color: #bbb;
}
.dance-info .desc {
  flex: 1;
  font-size: 1rem;
  line-height: 1.5;
  color: #ddd;
}
.dance-info .price {
  font-weight: bold;
  color: #f48fb1;
}
.ws-btn {
  align-self: flex-start;
  padding: 10px 20px;
  background: linear-gradient(135deg, #f06292, #ec407a);
  color: #111;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}
.ws-btn:hover {
  background: linear-gradient(135deg, #ec407a, #f06292);
}

@media (max-width: 600px) {
  .dance-workshops-section {
    padding: 60px 0;
  }
  .dance-workshops-section h2 {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }
  .dance-info {
    padding: 16px;
  }
  .dance-info h3 {
    font-size: 1.4rem;
  }
}

.ws-detail-hero {
  position: relative;
  height: 70vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ws-detail-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}
.ws-detail-hero .hero-content {
  position: relative;
  text-align: center;
  color: var(--text-light);
  animation: fadeInUp 1s ease forwards;
}
.ws-detail-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  color: transparent;
}
.ws-detail-hero .ws-date {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
.ws-detail-hero .btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  background: var(--gradient);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ws-detail-hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.ws-overview {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 1rem;
}
.ws-overview h2 {
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 2rem;
}
.ws-overview p {
  max-width: 800px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}
.ws-overview .ws-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.ws-overview .ws-highlights li {
  background: #222;
  padding: 1.25rem;
  border-radius: 8px;
  position: relative;
  list-style: none;
  font-size: 1rem;
}
.ws-overview .ws-highlights li::before {
  content: "✔";
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--accent);
  font-weight: bold;
}

.ws-syllabus {
  padding: 5rem 1rem;
  background: #111;
  color: var(--text-light);
}
.ws-syllabus h2 {
  text-align: center;
  font-size: 2.25rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.ws-syllabus-list {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-left: 1rem;
}
.ws-syllabus-list li {
  padding: 1rem;
  background: #222;
  border-radius: 6px;
  line-height: 1.5;
  position: relative;
}
.ws-syllabus-list li::before {
  content: "→";
  position: absolute;
  left: 0.5rem;
  top: 1rem;
  color: var(--accent);
}

.ws-schedule {
  background: #fafafa;
  padding: 5rem 1rem;
}
.ws-schedule h2 {
  text-align: center;
  font-size: 2.25rem;
  color: #333;
  margin-bottom: 2rem;
}
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.schedule-grid h3 {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.schedule-grid p {
  font-size: 1rem;
  color: #555;
  line-height: 1.4;
}

.ws-instructor {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 1rem;
}
.instructor-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.instructor-photo {
  flex: 1 1 280px;
  max-width: 360px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}
.instructor-photo img {
  width: 100%;
  display: block;
}
.instructor-info {
  flex: 2 1 400px;
}
.instructor-info h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.instructor-info h3 {
  font-size: 1.25rem;
  color: #ddd;
  margin-bottom: 1rem;
}
.instructor-info p {
  line-height: 1.6;
  color: #ccc;
}

.ws-testimonials {
  background: #f5f5f5;
  padding: 5rem 1rem;
}
.ws-testimonials h2 {
  text-align: center;
  font-size: 2.25rem;
  color: #333;
  margin-bottom: 2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.testimonials-grid blockquote {
  background: #fff;
  padding: 1.5rem;
  border-left: 6px solid var(--accent);
  border-radius: 6px;
  color: #444;
  font-style: italic;
  line-height: 1.5;
  position: relative;
}
.testimonials-grid blockquote footer {
  display: block;
  margin-top: 1rem;
  text-align: right;
  font-weight: 600;
  color: var(--accent);
}

.ws-faq {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 5rem 1rem;
}
.ws-faq h2 {
  text-align: center;
  font-size: 2.25rem;
  color: var(--accent);
  margin-bottom: 2rem;
}
.accordion {
  max-width: 720px;
  margin: 0 auto;
}
.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  background: #222;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.accordion-header {
  width: 100%;
  padding: 1rem 1.5rem;
  background: #333;
  color: var(--text-light);
  font-size: 1.1rem;
  cursor: pointer;
  position: relative;
  border: none;
}
.accordion-header::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  font-size: 1.4rem;
  transition: transform var(--transition);
}
.accordion-item.active .accordion-header::after {
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  background: #1a1a1a;
  transition: max-height var(--transition) ease;
}
.accordion-item.active .accordion-body {
  max-height: 300px;
  padding: 1rem 1.5rem;
}
.accordion-body p {
  line-height: 1.6;
  color: #ccc;
}

.ws-cta {
  background: var(--gradient);
  padding: 4rem 1rem;
  text-align: center;
  color: #fff;
}
.ws-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease forwards;
}
.ws-cta .btn {
  background: #fff;
  color: var(--gradient);
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ws-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .schedule-grid,
  .testimonials-grid,
  .ws-overview .ws-highlights {
    grid-template-columns: 1fr;
  }
  .instructor-inner {
    flex-direction: column;
    text-align: center;
  }
  .instructor-info {
    margin-top: 1.5rem;
  }
}

.section-hero {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
}
.section-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.section-hero__content {
  position: relative;
  color: #fff;
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
}
.section-hero__btn {
  margin-top: 1rem;
}

.section-overview {
  padding: 4rem 0;
}
.section-overview__list {
  list-style: disc inside;
  margin-top: 1rem;
  color: #333;
}

.section-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}
.section-details__media img {
  width: 100%;
  border-radius: 8px;
}
.section-details__btn {
  margin-top: 1rem;
}

.section-schedule {
  padding: 4rem 0;
  background: #f9f9f9;
}
.section-schedule__table {
  width: 100%;
  border-collapse: collapse;
}
.section-schedule__table th,
.section-schedule__table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.section-faq {
  padding: 4rem 0;
}
.section-faq__item + .section-faq__item {
  margin-top: 1rem;
}
.faq-header {
  width: 100%;
  background: #fff;
  border: 2px solid #ccc;
  padding: 0.75rem 1rem;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.faq-header::after {
  content: "+";
  position: absolute;
  right: 1rem;
  transition: transform 0.3s;
}
.accordion-open .faq-header::after {
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1rem;
}

.section-cta {
  text-align: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #ff7eb3, #ff65a3);
  color: #fff;
}
.section-cta__btn {
  margin-top: 1rem;
  background: #fff;
  color: #ff4081;
}

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

@media (max-width: 768px) {
  .section-details {
    grid-template-columns: 1fr;
  }
  .section-overview,
  .section-schedule,
  .section-faq,
  .section-cta {
    padding: 2rem 0;
  }
}

:root {
  --dark-bg: #111;
  --dark-block: #1a1a1a;
  --text-light: #f0f0f0;
  --text-dark: #222;
  --accent: #d858a1;
  --accent-hover: #e070b8;
  --btn-bg: #d858a1;
  --btn-hover: #e070b8;
  --transition: 0.3s ease;
}

.section-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
}
.section-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.6);
}
.section-hero__content {
  position: relative;
  text-align: center;
  color: #fff;
  animation: fadeInUp 1s ease forwards;
}
.section-hero__content h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.section-hero__content p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.section-hero__btn {
  display: inline-block;
  background: var(--btn-bg);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background var(--transition);
}
.section-hero__btn:hover {
  background: var(--btn-hover);
}

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

.section-overview {
  padding: 4rem 0;
  text-align: center;
}
.section-overview h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section-overview p {
  margin-bottom: 1.5rem;
}
.section-overview__list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.section-overview__list li {
  background: var(--dark-block);
  padding: 1rem;
  border-radius: 8px;
  position: relative;
}
.section-overview__list li::before {
  content: "✓";
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  color: var(--accent);
}

.section-details {
  position: relative;
  padding: 6rem 0;
  background: transparent;
  overflow: visible;
}
.section-details::before,
.section-details::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--gradient);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}
.section-details::before {
  top: -50px;
  left: -50px;
}
.section-details::after {
  bottom: -50px;
  right: -50px;
}

.section-details__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.section-details__text {
  flex: 1 1 320px;
  color: var(--text-light);
  animation: slideInLeft 0.8s ease forwards;
  opacity: 0;
}
@keyframes slideInLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.section-details__text h2 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  position: relative;
}
.section-details__text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gradient);
  margin-top: 8px;
  border-radius: 2px;
}

.section-details__text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #ccc;
}

.section-details__btn {
  display: inline-block;
  background: var(--btn-bg);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background var(--transition), transform var(--transition);
}
.section-details__btn:hover {
  background: var(--btn-hover);
  transform: translateY(-3px);
}

.section-details__media {
  flex: 1 1 320px;
  text-align: center;
  animation: slideInRight 0.8s ease 0.2s forwards;
  opacity: 0;
}
@keyframes slideInRight {
  from {
    transform: translateX(40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.section-details__media img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}
.section-details__media img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .section-details {
    padding: 4rem 0;
  }
  .section-details__grid {
    flex-direction: column-reverse;
    gap: 2rem;
  }
  .section-details__text,
  .section-details__media {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .section-details__text h2 {
    font-size: 1.6rem;
  }
  .section-details__text p {
    font-size: 0.95rem;
  }
  .section-details__btn {
    padding: 0.6rem 1.5rem;
  }
}

.section-schedule {
  position: relative;
  padding: 6rem 0;
  background: transparent;
  color: var(--text-light);
  overflow: hidden;
}
.section-schedule::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 4px;
  background: var(--gradient);
  transform: translateX(-50%);
}
.section-schedule h2 {
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}
.section-schedule__table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
}
.section-schedule__table thead th {
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  padding: 1.25rem;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
}
.section-schedule__table tbody tr {
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.3s, transform 0.3s;
}
.section-schedule__table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.1);
}
.section-schedule__table tbody tr:hover {
  background: rgba(233, 30, 99, 0.2);
  transform: translateY(-2px);
}
.section-schedule__table tbody td {
  padding: 1rem;
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .section-schedule__table,
  .section-schedule__table thead,
  .section-schedule__table tbody,
  .section-schedule__table th,
  .section-schedule__table td,
  .section-schedule__table tr {
    display: block;
  }
  .section-schedule__table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .section-schedule__table tr {
    margin: 0 0 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  .section-schedule__table td {
    border: none;
    position: relative;
    padding: 0.75rem 1rem 0.75rem 40%;
    text-align: left;
  }
  .section-schedule__table td::before {
    content: attr(data-label);
    position: absolute;
    left: 1rem;
    top: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 0.85rem;
  }
}

.section-faq {
  position: relative;
  padding: 6rem 0;
  background: transparent;
  color: var(--text-light);
  overflow: hidden;
}
.section-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60%;
  height: 3px;
  background: var(--gradient);
  transform: translateX(-50%);
}
.section-faq h2 {
  font-size: 2.5rem;
  color: var(--accent);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.section-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #222;
  transition: background 0.3s ease;
}
.section-faq__item:last-child {
  border-bottom: none;
}
.section-faq__item:hover {
  background: rgba(233, 30, 99, 0.1);
}

.faq-header {
  width: 100%;
  background: #2a2a2a;
  color: var(--text-light);
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s ease, color 0.3s ease;
}
.faq-header:hover {
  color: var(--accent);
}
.faq-header::after {
  content: "\002B";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--text-light);
}
.section-faq__item.active .faq-header::after {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
.section-faq__item.active .faq-body {
  max-height: 300px;
  padding: 1rem 1.5rem;
  background: #1a1a1a;
}

.faq-body p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
  animation: fadeInContent 0.5s ease both;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .section-faq {
    padding: 4rem 0;
  }
  .section-faq h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .faq-header {
    font-size: 1rem;
    padding: 1rem;
  }
  .faq-body {
    padding: 0 1rem;
  }
  .section-faq__item.active .faq-body {
    padding: 0.75rem 1rem;
  }
}

.section-cta {
  padding: 4rem 0;
  text-align: center;
}
.section-cta h2 {
  font-size: 2rem;
  color: #000;
  margin-bottom: 1rem;
}
.section-cta p {
  margin-bottom: 1.5rem;
}
.section-cta__btn {
  background: var(--btn-bg);
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: background var(--transition);
}
.section-cta__btn:hover {
  background: var(--btn-hover);
}

@media (max-width: 768px) {
  .section-details__grid {
    flex-direction: column;
  }
  .site-nav ul {
    gap: 1rem;
  }
  .section-overview__list {
    grid-template-columns: 1fr;
  }
}

.dance-description {
  position: relative;
  padding: 100px 0 120px;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
}
.dance-description .container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}
.dance-description .dance-decor {
  position: absolute;
  top: -50px;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.4), transparent);
  transform: translateX(-50%);
  filter: blur(80px);
  z-index: 0;
}
.dance-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp var(--fade-duration) var(--transition) forwards;
}
.dance-lead {
  font-family: "Roboto", sans-serif;
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp var(--fade-duration) calc(var(--transition) + 0.2s)
    forwards;
}
.dance-content {
  text-align: left;
}
.dance-content p {
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
}
.dance-content p:nth-of-type(2) {
  opacity: 0;
  animation: fadeInUp var(--fade-duration) calc(var(--transition) + 0.4s)
    forwards;
}
.dance-highlights {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.dance-highlights li {
  background: #1a1a1a;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  position: relative;
  font-size: 1rem;
}
.dance-highlights li::before {
  content: "🎵";
  position: absolute;
  top: 1rem;
  left: 1rem;
}
.dance-quote {
  margin: 40px 0;
  padding: 20px;
  background: rgba(233, 30, 99, 0.1);
  border-left: 4px solid var(--accent);
  font-style: italic;
  color: #ddd;
  position: relative;
}
.dance-quote span {
  display: block;
  margin-top: 8px;
  font-style: normal;
  font-weight: 500;
  color: #aaa;
}
.dance-content p:last-of-type {
  opacity: 0;
  animation: fadeInUp var(--fade-duration) calc(var(--transition) + 0.6s)
    forwards;
}

@media (max-width: 768px) {
  .dance-description {
    padding: 60px 0 80px;
  }
  .dance-title {
    font-size: 2.2rem;
  }
  .dance-lead {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }
  .dance-highlights {
    grid-template-columns: 1fr;
  }
}

.title_background {
  background: var(--gradient);
  padding: 4rem 0;
  text-align: center;
}
.title_background .title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background var(--transition);
}
.title_background .title:hover {
  background: rgba(0, 0, 0, 0.3);
}

.text_background {
  background: var(--dark-block);
  padding: 3rem 0 5rem;
}
.text_background .text {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-light);
  position: relative;
  padding-left: 1rem;
}
.text_background .text::before {
  content: open-quote;
  font-size: 3rem;
  line-height: 0.3;
  position: absolute;
  left: 0;
  top: -0.2rem;
  color: var(--accent);
}
.text_background .text::after {
  content: close-quote;
  font-size: 3rem;
  line-height: 0.3;
  position: absolute;
  right: 0;
  bottom: -0.2rem;
  color: var(--accent);
}

@media (max-width: 768px) {
  .title_background {
    padding: 3rem 0;
  }
  .title_background .title {
    font-size: 2rem;
    padding: 0.4rem 1rem;
  }
  .text_background {
    padding: 2rem 0 3rem;
  }
  .text_background .text {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.about-us-section {
  position: relative;
  padding: 6rem 1rem;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
}
.about-decor {
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: var(--gradient);
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.4;
  z-index: 0;
}
.about-us-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.about-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--accent);
  animation: fadeInUp 0.8s ease forwards;
}
.about-lead {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  color: #ccc;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: left;
}
.about-text h3,
.about-timeline h3 {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.about-text p {
  margin-bottom: 1.5rem;
  color: #ddd;
}
.about-highlights {
  list-style: none;
  padding: 0;
}
.about-highlights li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #ccc;
}
.about-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--accent);
  font-weight: bold;
}
.about-timeline ol {
  counter-reset: step;
  list-style: none;
  padding: 0;
}
.about-timeline ol li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  color: #ddd;
}
.about-timeline ol li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  background: var(--accent);
  color: #fff;
  width: 2rem; height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.about-quote {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border-left: 6px solid var(--accent);
  font-style: italic;
  color: #ccc;
  position: relative;
}
.about-quote span {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
  text-align: right;
}
.about-cta {
  text-align: center;
}
.about-cta .btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--gradient);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-title {
    font-size: 2.5rem;
  }
  .about-lead {
    font-size: 1rem;
  }
}

.testimonials-section {
  padding: 6rem 1rem;
  background: var(--dark-block);
  color: var(--text-light);
}
.testimonials-section .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 2rem;
}
.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}
.ts-track {
  display: flex;
  transition: transform var(--transition);
}
.ts-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 2rem;
  text-align: center;
}
.ts-slide blockquote {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
}
.ts-slide blockquote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 4rem;
  color: var(--accent);
}
.ts-slide .author {
  font-weight: 700;
  color: var(--accent-hover);
}
.ts-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--btn-bg);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background var(--transition);
}
.ts-btn:hover {
  background: var(--btn-hover);
}
.ts-btn.prev { left: 1rem; }
.ts-btn.next { right: 1rem; }

.rp-faq-section {
  padding: 6rem 1rem;
  background: var(--dark-block);
  color: var(--text-light);
}
.rp-faq-title {
  text-align: center;
  font-size: 2.8rem;
  color: var(--accent);
  margin-bottom: 3rem;
}
.rp-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.rp-faq-item + .rp-faq-item {
  margin-top: 1.5rem;
}
.rp-faq-question {
  width: 100%;
  background: #222;
  color: var(--text-light);
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  text-align: left;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  transition: background var(--transition);
}
.rp-faq-question::after {
  content: "＋";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform var(--transition);
}
.rp-faq-item.active .rp-faq-question {
  background: #333;
}
.rp-faq-item.active .rp-faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}
.rp-faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #111;
  border-radius: 0 0 6px 6px;
  transition: max-height var(--transition), padding var(--transition);
}
.rp-faq-item.active .rp-faq-answer {
  padding: 1rem 1.5rem;
  max-height: 300px;
}
.rp-faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-light);
}
.rp-faq-answer a {
  color: var(--accent);
  text-decoration: underline;
}