/* ==========================================================================
   Venues Page Styles
   ========================================================================== */

#main-content {
  background-color: var(--bg-base);
}

/* Hero Venue Section */
.hero-venue {
  padding: var(--space-12) 0;
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.1), rgba(5, 150, 105, 0.05));
  border-bottom: 1px solid rgba(157, 0, 255, 0.1);
}

.hero-venue-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-venue-content {
  animation: fadeInLeft 0.6s ease-out;
}

.hero-venue-content h1 {
  font-size: var(--text-5xl);
  font-weight: 900;
  line-height: var(--leading-tight);
  color: var(--text-main);
  margin-bottom: var(--space-6);
}

.hero-venue-content p {
  font-size: var(--text-lg);
  color: var(--gray-300);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-6);
}

.hero-venue-image {
  animation: fadeInRight 0.6s ease-out;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-venue-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 30px rgba(5, 150, 105, 0.3);
  transition: transform var(--transition-slow);
}

.hero-venue-image:hover img {
  transform: scale(1.05);
}

/* Venue Showcase Section */
.venue-showcase {
  padding: var(--space-12) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.venue-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  animation: fadeInUp 0.6s ease-out;
}

.venue-row.reverse {
  direction: rtl;
}

.venue-row.reverse > * {
  direction: ltr;
}

.venue-text h2 {
  font-size: var(--text-3xl);
  font-weight: 900;
  line-height: var(--leading-tight);
  color: var(--text-main);
  margin-bottom: var(--space-6);
}

.venue-text p {
  font-size: var(--text-lg);
  color: var(--gray-300);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-6);
}

.venue-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}

.venue-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: transform var(--transition-slow);
  box-shadow: 0 0 25px rgba(157, 0, 255, 0.2);
}

.venue-row:hover .venue-image img {
  transform: scale(1.08);
}

/* Features Section */
.venue-features {
  padding: var(--space-12) 0;
  display: grid;
  gap: var(--space-8);
}

.feature-card {
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--bg-surface-alt), var(--bg-surface));
  border: 1px solid rgba(157, 0, 255, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  animation: fadeInUp 0.6s ease-out;
}

.feature-card:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, var(--bg-surface), var(--bg-surface-alt));
  box-shadow: 0 0 20px rgba(157, 0, 255, 0.2);
  transform: translateY(-5px);
}

.feature-card h3 {
  font-size: var(--text-xl);
  color: var(--text-main);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.feature-card h3::before {
  content: '✦';
  color: var(--primary);
  font-size: var(--text-2xl);
}

.feature-card p {
  color: var(--text-muted);
  line-height: var(--leading-loose);
}

/* CTA Section */
.venue-cta {
  padding: var(--space-12);
  background: linear-gradient(135deg, rgba(157, 0, 255, 0.15), rgba(5, 150, 105, 0.1));
  border: 1px solid rgba(157, 0, 255, 0.2);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: var(--space-12) 0;
  animation: fadeInUp 0.6s ease-out;
}

.venue-cta h2 {
  font-size: var(--text-3xl);
  color: var(--text-main);
  margin-bottom: var(--space-4);
}

.venue-cta p {
  font-size: var(--text-lg);
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: var(--leading-loose);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in:nth-of-type(1) { animation-delay: 0s; }
.fade-in:nth-of-type(2) { animation-delay: 0.1s; }
.fade-in:nth-of-type(3) { animation-delay: 0.2s; }
.fade-in:nth-of-type(4) { animation-delay: 0.3s; }

/* Responsive */
@media (max-width: 768px) {
  .hero-venue-inner,
  .venue-row,
  .venue-features {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .hero-venue-content h1 {
    font-size: var(--text-4xl);
  }

  .venue-text h2 {
    font-size: var(--text-2xl);
  }

  .venue-image {
    height: 300px;
  }

  .venue-row.reverse,
  .venue-row.reverse > * {
    direction: ltr;
  }

  .venue-cta h2 {
    font-size: var(--text-2xl);
  }

  .venue-cta {
    padding: var(--space-6);
  }

  .venue-showcase {
    gap: var(--space-8);
  }
}
