/* Shows & Events Styles */
.shows-events-wrapper {
  min-height: 100vh;
  background: #f8f9fa;
}

/* Hero Section */
.events-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px 60px;
  color: white;
  text-align: center;
}

.events-hero-content {
  max-width: 1000px;
  margin: 0 auto;
}

.events-hero-title {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.events-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 40px;
}

/* Stats */
.events-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-lg {
  padding: 15px 35px;
  font-size: 1.1rem;
}

/* Filters */
.events-filters {
  background: white;
  padding: 30px 20px;
  border-bottom: 1px solid #e2e8f0;
}

.filters-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.search-box {
  flex: 1;
  min-width: 300px;
  display: flex;
  gap: 10px;
}

.event-search-input {
  flex: 1;
  padding: 12px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
}

.event-search-button {
  padding: 12px 30px;
  white-space: nowrap;
}

.filter-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-select {
  padding: 12px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  min-width: 150px;
  cursor: pointer;
}

/* Featured Events */
.featured-events-section {
  padding: 60px 20px;
  background: white;
}

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

.featured-events-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2d3748;
}

.featured-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.featured-event-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.featured-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.event-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #667eea;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 10;
}

.event-image {
  height: 200px;
  background: linear-gradient(135deg, #f8f4ec 0%, #ede6d8 100%);
  position: relative;
}

.event-date-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: white;
  border-radius: 8px;
  padding: 10px 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.date-day {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #667eea;
  line-height: 1;
}

.date-month {
  display: block;
  font-size: 0.875rem;
  color: #718096;
  text-transform: uppercase;
}

.event-content {
  padding: 25px;
}

.event-content h3 {
  margin: 0 0 15px 0;
  font-size: 1.3rem;
}

.event-content h3 a {
  color: #2d3748;
  text-decoration: none;
}

.event-content h3 a:hover {
  color: #667eea;
}

.event-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #718096;
}

.event-description {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 15px;
}

.event-details {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
}

.event-type {
  background: #f7fafc;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  color: #4a5568;
}

.event-vendors {
  color: #718096;
  font-size: 0.875rem;
}

/* Upcoming Events */
.upcoming-events-section {
  padding: 60px 20px;
  background: #f8f9fa;
}

.upcoming-events-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2d3748;
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.event-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  gap: 25px;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.event-date-col {
  flex-shrink: 0;
}

.event-date {
  background: #667eea;
  color: white;
  border-radius: 8px;
  padding: 15px 20px;
  text-align: center;
  min-width: 80px;
}

.event-date .date-day,
.event-date .date-month {
  color: white !important;
}

.event-info-col {
  flex: 1;
}

.event-info-col h3 {
  margin: 0 0 10px 0;
}

.event-info-col h3 a {
  color: #2d3748;
  text-decoration: none;
}

.event-info-col h3 a:hover {
  color: #667eea;
}

.meta-item {
  margin-right: 20px;
  color: #718096;
  font-size: 0.9rem;
}

.event-quick-info {
  color: #4a5568;
  margin: 10px 0 0 0;
}

.event-actions-col {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-outline-primary {
  background: transparent;
  color: #667eea;
  border: 2px solid #667eea;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline-primary:hover {
  background: #667eea;
  color: white;
}

.btn-icon {
  background: transparent;
  border: 2px solid #e2e8f0;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-icon:hover {
  background: #fff5f5;
  border-color: #feb2b2;
}

/* Past Events */
.past-events-section {
  padding: 60px 20px;
  background: white;
}

.past-events-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #2d3748;
}

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

.past-event-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #cbd5e0;
}

.past-event-card h4 {
  margin: 0 0 10px 0;
  color: #4a5568;
}

.past-event-date,
.past-event-location {
  color: #718096;
  font-size: 0.9rem;
  margin: 5px 0;
}

/* CTA Section */
.events-cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align: center;
  color: white;
}

.cta-container h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-container p {
  font-size: 1.125rem;
  margin-bottom: 10px;
  opacity: 0.95;
}

/* Load More */
.load-more-container {
  text-align: center;
  margin-top: 40px;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: #667eea;
  color: white;
}

.btn-primary:hover {
  background: #5a67d8;
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255,255,255,0.2);
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #667eea;
}

/* Search Results Section */
.search-results-section {
  padding: 40px 20px;
  background: #f0f4ff;
  border-top: 3px solid #667eea;
  border-bottom: 3px solid #667eea;
  margin: 20px 0;
}

.search-results-header {
  text-align: center;
  margin-bottom: 30px;
}

.search-results-header h2 {
  color: #2d3748;
  margin-bottom: 10px;
}

.results-summary {
  color: #718096;
  font-size: 1.1rem;
}

.search-results-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.clear-search-button {
  background: #e2e8f0;
  color: #4a5568;
  border: none;
}

.clear-search-button:hover {
  background: #cbd5e0;
}

/* Responsive */
@media (max-width: 768px) {
  .events-hero-title {
    font-size: 2rem;
  }
  
  .events-stats {
    gap: 30px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .filters-container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-group {
    flex-direction: column;
  }
  
  .featured-events-grid {
    grid-template-columns: 1fr;
  }
  
  .event-card {
    flex-direction: column;
    text-align: center;
  }
  
  .event-actions-col {
    width: 100%;
    justify-content: center;
  }
}