/* Root Variables - Purple/Lavender Color Scheme */
:root {
  --primary-color: #8b72be;
  --primary-hover: #7258a4;
  --primary-light: #e8e4f3;
  --secondary-color: #f9f7fe;
  --text-dark: #2c2c2c;
  --text-light: #6c6c6c;
  --white: #ffffff;
  --gray-light: #f8f8f8;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --heading-font: "Playfair Display", serif;
  --body-font: "Poppins", sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 400;
}

/* Navigation Styles */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  font-weight: 700;
}

.navbar-nav .nav-link {
  color: var(--text-dark) !important;
  font-weight: 400;
  margin-left: 1.5rem;
  position: relative;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover .navbar-bav .nav-link.active {
  color: var(--primary-hover);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-toggler {
  border-color: var(--primary-color);
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.hero-content-wrapper {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.glass-box {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 3rem 4rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 2rem;
  font-weight: 400;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-learn-more {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-learn-more:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 114, 190, 0.3);
}

.social-icons-wrapper {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  z-index: 1;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  color: var(--white);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-dark);
  font-weight: 400;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-color);
}

/* About Section */
.about {
  background: var(--gray-light);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-paragraph {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  line-height: 1.8;
  color: var(--text-light);
}

.music-line {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  margin: 2rem auto;
  border-radius: 1px;
  max-width: 200px;
}

/* Performances Section */
.performance-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  height: 350px;
}

.performance-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.performance-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.performance-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 114, 190, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 2rem;
}

.performance-card:hover .performance-overlay {
  opacity: 1;
}

.performance-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.performance-overlay p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 300;
}

.btn-performance {
  background: var(--white);
  color: var(--primary-color);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-performance:hover {
  background: var(--white);
  color: var(--primary-hover);
  transform: scale(1.05);
}
/* Lesson Types Section */
.lesson-types {
  padding: 5rem 0;
  background: var(--gray-light);
}

.lesson-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.lesson-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.lesson-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-color);
}

.lesson-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.lesson-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.lesson-features {
  list-style: none;
  padding: 0;
  text-align: left;
}

.lesson-features li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.lesson-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}
/* Contact Section */
.contact {
  padding: 5rem 0;
  background: var(--white);
}

.contact-info {
  background: var(--primary-light);
  border-radius: 15px;
  padding: 2.5rem;
  height: 100%;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--primary-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 114, 190, 0.25);
}

.form-label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.btn-submit {
  background: var(--primary-color);
  color: var(--white);
  padding: 1rem 3rem;
  border: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 114, 190, 0.3);
}

/* Footer */
.footer {
  background: #2c2c2c;
  color: var(--white);
}

.footer h3,
.footer h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer p {
  color: #ccc;
}

.footer-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social-icon {
  font-size: 1.5rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-social-icon:hover {
  color: var(--primary-color);
}

.footer-divider {
  border-color: #444;
  margin: 2rem 0;
}

.footer-bottom {
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .glass-box {
    padding: 2rem 3rem;
  }

  .hero-content-wrapper {
    left: 5%;
    right: 5%;
  }

  .social-icons-wrapper {
    gap: 1rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .performance-card {
    height: 300px;
  }

  .contact .section-title {
    text-align: center;
  }

  .contact .section-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .btn-email {
    display: flex;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn-learn-more {
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
  }

  .glass-box {
    padding: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }
}

/* Loading Animation */
.performance-image.loading {
  opacity: 0.7;
}

/* Focus States for Accessibility */
.nav-link:focus,
.social-icon:focus,
.btn-performance:focus,
.btn-email:focus,
.btn-learn-more:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}
