/* ============================================
   EVENTS PAGE STYLES
   ============================================ */

.events-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: var(--space-20) var(--space-4);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.events-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.events-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
}

/* Event Types Section */
.event-types {
  padding: var(--space-24) var(--space-4);
  background-color: var(--color-bg-primary);
}

.event-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.event-type-card {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all var(--transition-base);
}

.event-type-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.event-type-image {
  overflow: hidden;
  height: 250px;
}

.event-type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.event-type-card:hover .event-type-image img {
  transform: scale(1.1);
}

.event-type-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-gold);
  padding: var(--space-4) var(--space-6) var(--space-2);
}

.event-type-desc {
  color: var(--color-text-secondary);
  padding: 0 var(--space-6);
  line-height: var(--leading-relaxed);
}

.event-features {
  list-style: none;
  padding: var(--space-6);
  border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.event-features li {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  padding: var(--space-2) 0;
}

.event-features li::before {
  content: "✓ ";
  color: var(--color-gold);
  font-weight: bold;
}

/* Gallery Showcase */
.event-gallery-showcase {
  padding: var(--space-24) var(--space-4);
  background-color: var(--color-bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

/* Success Stories */
.success-stories {
  padding: var(--space-24) var(--space-4);
  background-color: var(--color-bg-primary);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.story-card {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-left: 4px solid var(--color-gold);
}

.story-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
}

.story-text {
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.story-highlight {
  background: rgba(201, 169, 97, 0.1);
  padding: var(--space-4);
  border-left: 3px solid var(--color-gold);
  color: var(--color-gold);
  font-weight: 500;
}

/* Planning Process */
.planning-process {
  padding: var(--space-24) var(--space-4);
  background-color: var(--color-bg-secondary);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: var(--space-8);
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: var(--space-4);
  opacity: 0.3;
}

.step-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.step-desc {
  color: var(--color-text-secondary);
}

/* Timeline */
.event-timeline {
  padding: var(--space-24) var(--space-4);
  background-color: var(--color-bg-primary);
}

.timeline {
  position: relative;
  padding: var(--space-8) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-gold);
}

.timeline-item {
  margin-bottom: var(--space-12);
  width: 50%;
  display: flex;
  gap: var(--space-6);
}

.timeline-item:nth-child(odd) {
  margin-left: 0;
}

.timeline-item:nth-child(even) {
  margin-left: auto;
}

.timeline-time {
  color: var(--color-gold);
  font-weight: 600;
  min-width: 120px;
}

.timeline-content {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 169, 97, 0.2);
}

.timeline-content h3 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.timeline-content p {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
}

/* Pricing */
.event-pricing {
  padding: var(--space-24) var(--space-4);
  background-color: var(--color-bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.pricing-card {
  background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: relative;
  transition: all var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.pricing-card--featured {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-bg-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
}

.pricing-title {
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
}

.pricing-price {
  font-size: var(--text-4xl);
  color: var(--color-gold);
  margin-bottom: var(--space-6);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-8);
}

.pricing-features li {
  color: var(--color-text-secondary);
  padding: var(--space-2) 0;
}

.pricing-features li.success {
  color: var(--color-gold);
}

/* CTA */
.cta-events {
  padding: var(--space-24) var(--space-4);
  background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-secondary) 100%);
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .events-hero__title {
    font-size: var(--text-3xl);
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 60px;
  }
  
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    margin-left: 0;
  }
  
  .pricing-card--featured {
    transform: scale(1);
  }
}
