/* Modern minimalist theater website with burgundy, black, white, gold color scheme */

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

:root {
  /* Updated color palette: burgundy, black, white, gold */
  --primary-color: #1a5f7a; /* Deep teal - modern and professional */
  --primary-dark: #0f3d52;
  --secondary-color: #e8b44f; /* Warm gold accent */
  --accent-color: #f8f8f8;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-white: #ffffff;
  --background-light: #fafafa;
  --border-color: #e5e5e5;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --border-radius: 4px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--text-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
}

/* Header */
.site-header {
  background: var(--text-white);
  box-shadow: var(--shadow);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  animation: slideInDown 0.6s ease-out;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  /* Changed logo color to dark text for better readability */
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.25rem;
  gap: 12px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-text {
  font-family: "Playfair Display", serif;
  letter-spacing: 0.5px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 80px;
  animation: fadeIn 0.8s ease-out;
}

.slider {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Removed gradient overlay completely */
  background: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
}

.slide-content::before,
.slide-content::after,
.slide::before,
.slide::after,
.show-card::before,
.show-card::after,
.news-card::before,
.news-card::after,
.video-card::before,
.video-card::after,
.gallery-item::before,
.gallery-item::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-white);
  /* Enhanced text shadow for readability without overlay */
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
  animation: slideInUp 0.8s ease-out 0.3s both;
}

.slide-subtitle {
  font-size: 1.375rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 300;
  /* Enhanced text shadow for readability without overlay */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-white);
  padding: 16px 32px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--primary-color);
  animation: scaleIn 0.6s ease-out 0.5s both;
}

.cta-button:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(26, 95, 122, 0.3);
}

.slider-controls {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
  animation: fadeIn 1s ease-out 0.6s both;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  animation: fadeIn 1s ease-out 0.6s both;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.dot.active {
  background: var(--text-white);
  border-color: var(--secondary-color);
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
  animation: slideInUp 0.6s ease-out;
}

.section-title {
  animation: slideInUp 0.7s ease-out 0.1s both;
}

.section-subtitle {
  animation: slideInUp 0.7s ease-out 0.2s both;
}

/* About Section */
.about-section {
  background: var(--background-light);
  animation: fadeIn 0.8s ease-out;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h3 {
  font-size: 1.875rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--text-white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  animation: scaleIn 0.6s ease-out both;
}

.stat-item:nth-child(1) {
  animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.3s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.4s;
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-hover);
  animation: scaleIn 0.8s ease-out 0.3s both;
}

@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-image {
    order: -1;
  }
  
  .about-image img {
    height: 300px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-content h3 {
    font-size: 1.5rem;
  }
  
  .about-content p,
  .about-text {
    font-size: 0.9375rem;
  }
}

/* Shows Section */
.shows-section {
  background: var(--text-white);
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.show-card {
  background: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  animation: slideInUp 0.6s ease-out both;
}

.show-card:nth-child(1) {
  animation-delay: 0.1s;
}

.show-card:nth-child(2) {
  animation-delay: 0.2s;
}

.show-card:nth-child(3) {
  animation-delay: 0.3s;
}

.show-card:nth-child(n + 4) {
  animation-delay: 0.4s;
}

.show-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}

.show-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.show-card-content {
  padding: 1.5rem;
}

.show-card h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
}

.show-card p {
  color: var(--text-light);
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.show-card .btn {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.show-card .btn:hover {
  background: #b8941f;
  transform: translateY(-1px);
}

/* Added video section styles */
.videos-section {
  background: var(--text-white);
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--background-light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  animation: slideInUp 0.6s ease-out both;
}

.video-card:nth-child(1) {
  animation-delay: 0.1s;
}

.video-card:nth-child(2) {
  animation-delay: 0.2s;
}

.video-card:nth-child(3) {
  animation-delay: 0.3s;
}

.video-card:nth-child(n + 4) {
  animation-delay: 0.4s;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}

.video-thumbnail {
  position: relative;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.video-info p {
  color: var(--text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.video-show {
  color: var(--secondary-color) !important;
  font-weight: 600;
}

/* News Section */
.news-section {
  background: var(--background-light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.news-card {
  background: var(--text-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  animation: slideInUp 0.6s ease-out both;
}

.news-card:nth-child(1) {
  animation-delay: 0.1s;
}

.news-card:nth-child(2) {
  animation-delay: 0.2s;
}

.news-card:nth-child(3) {
  animation-delay: 0.3s;
}

.news-card:nth-child(n + 4) {
  animation-delay: 0.4s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card-content {
  padding: 1.5rem;
}

.news-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  line-height: 1.4;
}

.news-card .date {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 1rem;
  font-weight: 500;
}

.news-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.news-card .btn {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 8px 16px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--transition);
}

.news-card .btn:hover {
  background: #b8941f;
  transform: translateY(-1px);
}

/* Gallery Section */
.gallery-section {
  background: var(--text-white);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  aspect-ratio: 1;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  animation: scaleIn 0.6s ease-out both;
}

.gallery-item:nth-child(1) {
  animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
  animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
  animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
  animation-delay: 0.4s;
}

.gallery-item:nth-child(n + 5) {
  animation-delay: 0.5s;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: none !important;
  color: var(--text-white);
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
  pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-title {
  font-weight: 600;
  font-size: 1.125rem;
  background: rgba(0, 0, 0, 0.75) !important;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  display: inline-block;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  pointer-events: auto;
}

/* Contact Section */
.contact-section {
  background: var(--background-light);
}

.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent !important;
  color: var(--text-white);
  padding: 6rem 0 4rem;
  margin-top: 80px;
  text-align: center;
  animation: slideInDown 0.8s ease-out;
}

.page-hero::before,
.page-hero::after {
  display: none !important;
}

.page-hero h1 {
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 1rem;
  /* Enhanced text shadow for readability without background overlay */
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.7), 0 0 50px rgba(0, 0, 0, 0.5);
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.page-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
  /* Enhanced text shadow for readability without background overlay */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.7);
  animation: slideInUp 0.8s ease-out 0.3s both;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-info {
  background: var(--text-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  animation: slideInLeft 0.8s ease-out 0.1s both;
}

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

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  animation: slideInLeft 0.6s ease-out both;
}

.info-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.info-item:nth-child(1) {
  animation-delay: 0.2s;
}

.info-item:nth-child(2) {
  animation-delay: 0.3s;
}

.info-item:nth-child(3) {
  animation-delay: 0.4s;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.5rem;
  color: var(--text-white);
}

.info-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
}

.info-content p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.social-links {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.social-links h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.125rem;
}

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

.social-icons a {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.25rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

.contact-form-wrapper {
  background: var(--text-white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
  animation: slideInRight 0.8s ease-out 0.1s both;
}

.contact-form-wrapper h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 0;
  animation: slideInRight 0.6s ease-out both;
}

.form-group:nth-child(1) {
  animation-delay: 0.2s;
}

.form-group:nth-child(2) {
  animation-delay: 0.3s;
}

.form-group:nth-child(3) {
  animation-delay: 0.4s;
}

.form-group:nth-child(4) {
  animation-delay: 0.5s;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--text-white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  /* Updated focus shadow color */
  box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--text-white);
  padding: 14px 28px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  font-size: 0.9375rem;
  border: 1px solid transparent;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border-color: #c3e6cb;
}

.alert-danger {
  background: #f8d7da;
  color: #721c24;
  border-color: #f5c6cb;
}

.map-section {
  margin-top: 4rem;
}

.map-section h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-color);
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* Footer */
.site-footer {
  background: var(--text-dark);
  color: var(--text-white);
  padding: 3rem 0 1.5rem;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-section {
  animation: fadeIn 0.6s ease-out both;
}

.footer-section:nth-child(1) {
  animation-delay: 0.3s;
}

.footer-section:nth-child(2) {
  animation-delay: 0.4s;
}

.footer-section:nth-child(3) {
  animation-delay: 0.5s;
}

.footer-section:nth-child(4) {
  animation-delay: 0.6s;
}

.footer-section h4 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.footer-section p {
  line-height: 1.7;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9375rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9375rem;
}

.footer-section ul li a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Loading and Error States */
.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  font-size: 1.0625rem;
  color: var(--text-light);
}

.loading::after {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-top: 2px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 12px;
}

.no-content,
.error-message {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-light);
  font-size: 1.0625rem;
}

.error-message {
  color: #dc3545;
}

/* Animations */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

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

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInFadeDown {
  from {
    opacity: 0;
    transform: translateY(-50px) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .videos-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .repertoire-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
  }

  .page-hero {
    padding: 5rem 0 3rem;
  }

  .page-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--text-white);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    display: none;
    gap: 0;
  }

  .main-nav.active {
    display: flex;
  }

  .nav-link {
    padding: 1rem 2rem;
    width: 100%;
  }

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

  .slide-title {
    font-size: 2.25rem;
  }

  .slide-subtitle {
    font-size: 1.125rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .shows-grid,
  .news-grid,
  .videos-grid,
  .repertoire-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-controls {
    padding: 0 1rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero p {
    font-size: 1.125rem;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 2rem;
  }

  .info-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .repertoire-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  section {
    padding: 3rem 0;
  }

  .logo-text {
    font-size: 1rem;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

  .slide-title {
    font-size: 1.875rem;
  }

  .slide-subtitle {
    font-size: 1rem;
  }

  .cta-button {
    padding: 14px 24px;
    font-size: 0.875rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .page-hero {
    padding: 4rem 0 2.5rem;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  .contact-info,
  .contact-form-wrapper {
    padding: 1.5rem;
  }

  .contact-info h2,
  .contact-form-wrapper h2 {
    font-size: 1.5rem;
  }

  .map-section h2 {
    font-size: 1.5rem;
  }

  .repertoire-grid {
    grid-template-columns: 1fr;
  }

  .repertoire-image {
    height: 200px;
  }
}

/* Print styles */
@media print {
  .site-header,
  .slider-controls,
  .slider-dots,
  .mobile-menu-btn,
  .cta-button,
  .view-all-btn,
  .contact-form-wrapper {
    display: none;
  }
}

/* Added view-all-btn styles that were missing */
.view-all-btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-white);
  padding: 14px 32px;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--primary-color);
  margin-top: 2rem;
}

.view-all-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

/* Added new Repertoire section styles */
.repertoire-section {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
  padding: 5rem 0;
}

.repertoire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.repertoire-card {
  background: var(--text-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: slideInUp 0.6s ease-out both;
}

.repertoire-card:nth-child(1) {
  animation-delay: 0.1s;
}

.repertoire-card:nth-child(2) {
  animation-delay: 0.2s;
}

.repertoire-card:nth-child(3) {
  animation-delay: 0.3s;
}

.repertoire-card:nth-child(n + 4) {
  animation-delay: 0.4s;
}

.repertoire-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-color);
}

.repertoire-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.repertoire-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.repertoire-card:hover .repertoire-image img {
  transform: scale(1.1);
}

.repertoire-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-white);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

.repertoire-badge i {
  font-size: 1rem;
}

.repertoire-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.repertoire-content h3 {
  font-size: 1.375rem;
  color: var(--primary-color);
  margin-bottom: 1.25rem;
  line-height: 1.4;
  flex-grow: 1;
  font-weight: 700;
}

.performance-details {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 2px solid var(--border-color);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  color: var(--text-light);
  font-size: 0.9375rem;
  font-weight: 500;
}

.detail-item i {
  color: var(--secondary-color);
  font-size: 1.25rem;
  width: 20px;
  text-align: center;
}

.btn-repertoire {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--text-dark);
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  transition: var(--transition);
  text-align: center;
  border: 2px solid var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-repertoire:hover {
  background: #d4a574;
  border-color: #d4a574;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(232, 180, 79, 0.3);
}

/* Enhanced animation system - ensure all elements animate on page load */
.show-card,
.news-card,
.video-card,
.gallery-item,
.repertoire-card,
.stat-item,
.info-item,
.form-group,
.section-title,
.section-subtitle,
.about-content,
.about-image {
  animation-fill-mode: both;
}

/* Header animations on load */
.site-header {
  animation: slideInDown 0.8s ease-out 0s forwards !important;
}

.logo {
  animation: fadeInUp 0.8s ease-out 0.1s forwards !important;
}

.main-nav {
  animation: fadeInUp 0.8s ease-out 0.2s forwards !important;
}

/* Hero section animations */
.hero-section {
  animation: fadeIn 0.8s ease-out 0s forwards !important;
}

.slide-title {
  animation: slideInUp 0.8s ease-out 0.3s forwards !important;
}

.slide-subtitle {
  animation: slideInUp 0.8s ease-out 0.4s forwards !important;
}

.cta-button {
  animation: scaleIn 0.6s ease-out 0.5s forwards !important;
}

.slider-controls {
  animation: fadeIn 1s ease-out 0.6s forwards !important;
}

.slider-dots {
  animation: fadeIn 1s ease-out 0.6s forwards !important;
}

/* Section headers */
.section-header {
  animation: slideInUp 0.6s ease-out 0s forwards;
}

.section-title {
  animation: slideInUp 0.7s ease-out 0.1s forwards !important;
}

.section-subtitle {
  animation: slideInUp 0.7s ease-out 0.2s forwards !important;
}

/* About section */
.about-section {
  animation: fadeIn 0.8s ease-out 0s forwards;
}

.about-image img {
  animation: scaleIn 0.8s ease-out 0.3s forwards !important;
}

/* Card stagger animations */
.shows-section .show-card:nth-child(1) {
  animation: slideInUp 0.6s ease-out 0.1s forwards !important;
}

.shows-section .show-card:nth-child(2) {
  animation: slideInUp 0.6s ease-out 0.2s forwards !important;
}

.shows-section .show-card:nth-child(3) {
  animation: slideInUp 0.6s ease-out 0.3s forwards !important;
}

.shows-section .show-card:nth-child(n + 4) {
  animation: slideInUp 0.6s ease-out 0.4s forwards !important;
}

.videos-section .video-card:nth-child(1) {
  animation: slideInUp 0.6s ease-out 0.1s forwards !important;
}

.videos-section .video-card:nth-child(2) {
  animation: slideInUp 0.6s ease-out 0.2s forwards !important;
}

.videos-section .video-card:nth-child(3) {
  animation: slideInUp 0.6s ease-out 0.3s forwards !important;
}

.videos-section .video-card:nth-child(n + 4) {
  animation: slideInUp 0.6s ease-out 0.4s forwards !important;
}

.news-section .news-card:nth-child(1) {
  animation: slideInUp 0.6s ease-out 0.1s forwards !important;
}

.news-section .news-card:nth-child(2) {
  animation: slideInUp 0.6s ease-out 0.2s forwards !important;
}

.news-section .news-card:nth-child(3) {
  animation: slideInUp 0.6s ease-out 0.3s forwards !important;
}

.news-section .news-card:nth-child(n + 4) {
  animation: slideInUp 0.6s ease-out 0.4s forwards !important;
}

.gallery-item:nth-child(1) {
  animation: scaleIn 0.6s ease-out 0.1s forwards !important;
}

.gallery-item:nth-child(2) {
  animation: scaleIn 0.6s ease-out 0.2s forwards !important;
}

.gallery-item:nth-child(3) {
  animation: scaleIn 0.6s ease-out 0.3s forwards !important;
}

.gallery-item:nth-child(4) {
  animation: scaleIn 0.6s ease-out 0.4s forwards !important;
}

.gallery-item:nth-child(n + 5) {
  animation: scaleIn 0.6s ease-out 0.5s forwards !important;
}

.repertoire-card:nth-child(1) {
  animation: slideInUp 0.6s ease-out 0.1s forwards !important;
}

.repertoire-card:nth-child(2) {
  animation: slideInUp 0.6s ease-out 0.2s forwards !important;
}

.repertoire-card:nth-child(3) {
  animation: slideInUp 0.6s ease-out 0.3s forwards !important;
}

.repertoire-card:nth-child(n + 4) {
  animation: slideInUp 0.6s ease-out 0.4s forwards !important;
}

.stat-item:nth-child(1) {
  animation: scaleIn 0.6s ease-out 0.2s forwards !important;
}

.stat-item:nth-child(2) {
  animation: scaleIn 0.6s ease-out 0.3s forwards !important;
}

.stat-item:nth-child(3) {
  animation: scaleIn 0.6s ease-out 0.4s forwards !important;
}

/* Contact section animations */
.contact-info {
  animation: slideInLeft 0.8s ease-out 0.1s forwards !important;
}

.contact-form-wrapper {
  animation: slideInRight 0.8s ease-out 0.1s forwards !important;
}

.contact-info .info-item:nth-child(1) {
  animation: slideInLeft 0.6s ease-out 0.2s forwards !important;
}

.contact-info .info-item:nth-child(2) {
  animation: slideInLeft 0.6s ease-out 0.3s forwards !important;
}

.contact-info .info-item:nth-child(3) {
  animation: slideInLeft 0.6s ease-out 0.4s forwards !important;
}

.contact-form-wrapper .form-group:nth-child(1) {
  animation: slideInRight 0.6s ease-out 0.2s forwards !important;
}

.contact-form-wrapper .form-group:nth-child(2) {
  animation: slideInRight 0.6s ease-out 0.3s forwards !important;
}

.contact-form-wrapper .form-group:nth-child(3) {
  animation: slideInRight 0.6s ease-out 0.4s forwards !important;
}

.contact-form-wrapper .form-group:nth-child(4) {
  animation: slideInRight 0.6s ease-out 0.5s forwards !important;
}

/* Footer animations */
.site-footer {
  animation: slideInUp 0.8s ease-out 0.2s forwards !important;
}

.footer-section:nth-child(1) {
  animation: fadeIn 0.6s ease-out 0.3s forwards !important;
}

.footer-section:nth-child(2) {
  animation: fadeIn 0.6s ease-out 0.4s forwards !important;
}

.footer-section:nth-child(3) {
  animation: fadeIn 0.6s ease-out 0.5s forwards !important;
}

.footer-section:nth-child(4) {
  animation: fadeIn 0.6s ease-out 0.6s forwards !important;
}

/* Page hero animations */
.page-hero {
  animation: slideInDown 0.8s ease-out 0s forwards !important;
}

.page-hero h1 {
  animation: slideInUp 0.8s ease-out 0.2s forwards !important;
}

.page-hero p {
  animation: slideInUp 0.8s ease-out 0.3s forwards !important;
}

/* Smooth entrance animations on scroll - trigger for elements not visible on load */
.fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Add scroll animation class for Intersection Observer */
.scroll-animate.show-card {
  animation: slideInUp 0.6s ease-out forwards !important;
}

.scroll-animate.news-card {
  animation: slideInUp 0.6s ease-out forwards !important;
}

.scroll-animate.video-card {
  animation: slideInUp 0.6s ease-out forwards !important;
}

.scroll-animate.gallery-item {
  animation: scaleIn 0.6s ease-out forwards !important;
}

.scroll-animate.repertoire-card {
  animation: slideInUp 0.6s ease-out forwards !important;
}

.scroll-animate.stat-item {
  animation: scaleIn 0.6s ease-out forwards !important;
}

.scroll-animate.info-item {
  animation: slideInLeft 0.6s ease-out forwards !important;
}

.scroll-animate.form-group {
  animation: slideInRight 0.6s ease-out forwards !important;
}

.scroll-animate.section-title {
  animation: slideInUp 0.7s ease-out forwards !important;
}

.scroll-animate.section-subtitle {
  animation: slideInUp 0.7s ease-out forwards !important;
}

.scroll-animate.about-content {
  animation: slideInLeft 0.8s ease-out forwards !important;
}

.scroll-animate.about-image {
  animation: scaleIn 0.8s ease-out forwards !important;
}

.scroll-animate.contact-info {
  animation: slideInLeft 0.8s ease-out forwards !important;
}

.scroll-animate.contact-form-wrapper {
  animation: slideInRight 0.8s ease-out forwards !important;
}

.scroll-animate.actor-card {
  animation: slideInUp 0.6s ease-out forwards !important;
}

.scroll-animate.performance-item {
  animation: slideInRight 0.6s ease-out forwards !important;
}

.scroll-animate.repertoire-table-container {
  animation: fadeInUp 0.8s ease-out forwards !important;
}

.scroll-animate.repertoire-table tbody tr {
  animation: slideInLeft 0.5s ease-out forwards !important;
}

.scroll-animate.repertoire-table tbody tr:nth-child(1) {
  animation-delay: 0.1s;
}

.scroll-animate.repertoire-table tbody tr:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-animate.repertoire-table tbody tr:nth-child(3) {
  animation-delay: 0.3s;
}

.scroll-animate.repertoire-table tbody tr:nth-child(n+4) {
  animation-delay: 0.4s;
}

.scroll-animate h1,
.scroll-animate h2,
.scroll-animate h3 {
  animation: slideInUp 0.7s ease-out forwards !important;
}

/* General scroll animate base class */
.scroll-animate {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Stagger animations for grid items */
.shows-grid > .scroll-animate:nth-child(1) {
  animation-delay: 0.1s;
}

.shows-grid > .scroll-animate:nth-child(2) {
  animation-delay: 0.2s;
}

.shows-grid > .scroll-animate:nth-child(3) {
  animation-delay: 0.3s;
}

.shows-grid > .scroll-animate:nth-child(n+4) {
  animation-delay: 0.4s;
}
