.venue-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.venue-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.venue-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.venue-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(20, 83, 45, 0.4) 100%);
  z-index: 1;
}

.venue-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.venue-hero-text {
  max-width: 800px;
  padding: var(--space-12) 0;
}

.venue-hero-text h1 {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-text-primary) 0%, var(--color-wood-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.venue-hero-text p {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  line-height: var(--leading-relaxed);
}

.venue-hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.venue-section {
  padding: var(--space-14) 0;
}

.venue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.venue-grid.reverse {
  direction: rtl;
}

.venue-grid.reverse > * {
  direction: ltr;
}

.venue-text-content h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  color: inherit;
}

.venue-text-content p {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
}

.venue-feature-list {
  list-style: none;
  margin: var(--space-6) 0;
}

.venue-feature-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--color-text-secondary);
}

.venue-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-primary);
  border-radius: 50%;
}

.venue-image-wrapper {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.venue-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.venue-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.venue-features-section {
  padding: var(--space-14) 0;
  background-color: var(--color-bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.feature-card {
  text-align: center;
  padding: var(--space-8);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.feature-card h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
}

.feature-card p {
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

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

.calendar-content h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
}

.calendar-content p {
  font-size: var(--text-lg);
}

.venue-cta {
  padding: var(--space-14) 0;
  background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-primary) 100%);
  position: relative;
  overflow: hidden;
}

.venue-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
}

.cta-content p {
  font-size: var(--text-xl);
  max-width: 700px;
  margin: 0 auto var(--space-8);
  color: var(--color-text-secondary);
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
}

.section-light .venue-text-content h2 {
  color: var(--color-text-dark);
}

.section-light .venue-text-content p {
  color: var(--gray-600);
}

.section-wood .venue-text-content h2 {
  color: var(--color-text-wood);
}

.section-wood .venue-feature-list li {
  color: var(--gray-600);
}

@media (max-width: 1024px) {
  .venue-grid {
    gap: var(--space-8);
  }
  
  .venue-hero-text h1 {
    font-size: var(--text-4xl);
  }
}

@media (max-width: 768px) {
  .venue-grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .venue-grid.reverse {
    direction: ltr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .venue-hero-text {
    padding: var(--space-8) 0;
  }
  
  .venue-hero-text h1 {
    font-size: var(--text-3xl);
  }
  
  .venue-hero-text p {
    font-size: var(--text-lg);
  }
  
  .venue-section {
    padding: var(--space-10) 0;
  }
  
  .venue-hero-actions {
    flex-direction: column;
  }
  
  .venue-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .venue-image-wrapper {
    transition: none;
  }
  
  .venue-image-wrapper:hover {
    transform: none;
  }
}