.services-section {
  padding: 120px 0;
  margin-top: 80px;
  background-color: #f8f8f8;
}

.services-section h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  color: var(--primary-color);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
}

.service-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

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

.service-item h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 20px 0 10px;
  padding: 0 20px;
}

.service-item p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  padding: 0 20px;
}

.service-item .btn {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background-color: var(--secondary-color);
  color: #fff;
  text-align: center;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.service-item .btn:hover {
  background-color: #0d3573;
}

.closing-statement {
  font-size: 24px;
  text-align: center;
  font-style: italic;
  margin-top: 50px;
  color: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .services-section {
    padding: 80px 0;
    margin-top: 60px;
  }

  .services-section h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

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

  .service-item h3 {
    font-size: 20px;
  }

  .service-item p {
    font-size: 14px;
  }

  .closing-statement {
    font-size: 20px;
    margin-top: 30px;
  }
}

@media screen and (max-width: 480px) {
  .services-section {
    padding: 60px 0;
    margin-top: 40px;
  }

  .services-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

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

  .service-item img {
    height: 180px;
  }

  .closing-statement {
    font-size: 18px;
    margin-top: 20px;
  }
}

.hero-section {
  position: relative;
  height: 60vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url("/assets/images/stage.jpg");
  background-size: cover;
  background-position: center;
  margin-top: 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 0.7),
    rgba(18, 18, 18, 0.9)
  );
}

.hero-title {
  position: relative;
  font-size: 4rem;
  margin-bottom: var(--spacing-md);
  z-index: 2;
}

.hero-subtitle {
  position: relative;
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-high);
  z-index: 2;
}

/* Services Overview */
.services-overview {
  background-color: var(--surface);
  padding: var(--spacing-xl) 0;
  border-radius: 0;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
  text-align: center;
}

.section-description {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: var(--spacing-lg);
}

.categories-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  position: sticky;
  top: 80px;
  background-color: var(--surface);
  padding: var(--spacing-md) 0;
  z-index: 5;
  border-radius: var(--border-radius);
}

.category-link {
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  background-color: var(--surface-variant);
  color: var(--text-high);
}

.category-link:hover {
  background-color: rgba(187, 134, 252, 0.15);
  color: var(--primary-light);
}

.category-link.active {
  background: linear-gradient(45deg, var(--primary), var(--primary-light));
  color: var(--on-primary);
}

/* Service Categories */
.service-category {
  padding: var(--spacing-xxl) 0;
}

.service-category:nth-child(odd) {
  background-color: var(--surface-variant);
}

.service-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-xl);
}

.service-header h2 {
  margin-bottom: var(--spacing-md);
  display: inline-block;
}

.service-header h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.service-header p {
  font-size: 1.2rem;
  color: var(--text-medium);
}

.service-card {
  background-color: var(--surface);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  color: var(--primary-light);
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-card h3 {
  font-size: 1.75rem;
  margin-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: var(--spacing-sm);
}

.service-card p {
  color: var(--text-medium);
  margin-bottom: var(--spacing-lg);
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.service-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: var(--spacing-sm);
  color: var(--text-high);
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary);
  font-weight: bold;
}

.service-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Venue Card */
.service-card.full-width {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  gap: var(--spacing-lg);
  padding: 0;
  overflow: hidden;
}

.venue-gallery {
  flex: 1;
  overflow: hidden;
}

.venue-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card.full-width:hover .venue-gallery img {
  transform: scale(1.05);
}

.venue-details {
  flex: 1;
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
}

/* Call to Action */
.call-to-action {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  text-align: center;
  padding: var(--spacing-xxl) 0;
}

.call-to-action h2 {
  color: var(--on-primary);
  margin-bottom: var(--spacing-md);
}

.call-to-action h2::after {
  left: 50%;
  transform: translateX(-50%);
  background: var(--on-primary);
}

.call-to-action p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: var(--on-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease forwards;
}

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

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

  .categories-nav {
    top: 70px;
    padding: var(--spacing-sm) 0;
  }

  .service-card.full-width {
    flex-direction: column;
  }

  .venue-gallery,
  .venue-details {
    flex: auto;
    width: 100%;
  }

  .venue-gallery {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 50vh;
    min-height: 400px;
    margin-top: 60px;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .categories-nav {
    flex-direction: row;
    overflow-x: auto;
    padding: var(--spacing-sm) var(--spacing-md);
    justify-content: flex-start;
    top: 60px;
  }

  .category-link {
    padding: 10px 16px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .service-card {
    padding: var(--spacing-md);
  }
}

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

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

  .cta-buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .cta-buttons .btn {
    width: 100%;
  }
}
