/* ===== VENUE SECTION ===== */
.venue-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-dark) 100%);
  overflow: hidden;
}

.venue-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23C9A456' fill-opacity='0.06'%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/svg%3E");
}

.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .venue-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.venue-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.venue-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(201, 164, 86, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.venue-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 30px var(--gold-glow);
}

.venue-icon i {
  font-size: 1.8rem;
  color: var(--white);
}

.venue-info h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.venue-info p {
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  margin: 0;
}

/* ===== NEW TIMELINE SECTION ===== */
.timeline-section {
  position: relative;
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.timeline-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.timeline-section .section-tag {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(201, 164, 86, 0.15);
  border: 1px solid rgba(201, 164, 86, 0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.timeline-section .section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gray-800);
}

/* Horizontal Timeline */
.timeline-horizontal {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.timeline-line {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-dark));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  flex: 1;
  text-align: center;
  max-width: 250px;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--gradient-gold);
  border: 4px solid var(--white);
  border-radius: 50%;
  margin: 30px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(201, 164, 86, 0.2), 0 4px 15px var(--gold-glow);
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(201, 164, 86, 0.3), 0 6px 25px var(--gold-glow);
}

.timeline-date {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 16px;
  background: var(--gradient-gold);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--gold-glow);
}

.timeline-card-new {
  margin-top: 20px;
  padding: 24px 16px;
  background: var(--gray-100);
  border-radius: 16px;
  transition: var(--transition);
}

.timeline-item:hover .timeline-card-new {
  background: rgba(201, 164, 86, 0.1);
  transform: translateY(-4px);
}

.timeline-card-new i {
  font-size: 1.8rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: block;
}

.timeline-card-new h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.5;
  margin: 0;
}

/* Timeline Responsive - Tablet */
@media (max-width: 992px) {
  .timeline-section {
    padding: 70px 0;
  }

  .timeline-section .section-header {
    margin-bottom: 40px;
  }

  .timeline-horizontal {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    right: auto;
    width: 3px;
    height: 100%;
  }

  .timeline-item {
    max-width: 100%;
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    gap: 0 20px;
    text-align: left;
    padding-bottom: 30px;
  }

  .timeline-item:last-child {
    padding-bottom: 0;
  }

  .timeline-dot {
    grid-column: 1;
    grid-row: 1 / 3;
    margin: 0;
    align-self: start;
    margin-top: 5px;
  }

  .timeline-date {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
    margin-bottom: 12px;
    width: fit-content;
    font-size: 0.8rem;
    padding: 8px 18px;
  }

  .timeline-card-new {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .timeline-card-new i {
    display: block;
    margin-right: 0;
    margin-bottom: 0;
    font-size: 1.6rem;
    flex-shrink: 0;
  }

  .timeline-card-new h4 {
    display: block;
    font-size: 0.95rem;
  }
}

/* Timeline Responsive - Mobile */
@media (max-width: 576px) {
  .timeline-section {
    padding: 50px 0;
  }

  .timeline-section .section-header {
    margin-bottom: 30px;
  }

  .timeline-section .section-title {
    font-size: 1.6rem;
  }

  .timeline-horizontal {
    padding-left: 10px;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 40px 1fr;
    gap: 0 14px;
    padding-bottom: 24px;
  }

  .timeline-dot {
    width: 16px;
    height: 16px;
    border-width: 3px;
  }

  .timeline-date {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 10px;
  }

  .timeline-card-new {
    padding: 16px;
    gap: 12px;
  }

  .timeline-card-new i {
    font-size: 1.3rem;
  }

  .timeline-card-new h4 {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* CTA Poster */
.cta-poster {
  position: relative;
  max-width: 300px;
  margin: 30px auto;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.cta-poster img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.cta-poster:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(201, 164, 86, 0.4);
}

.cta-poster:hover img {
  transform: scale(1.05);
}

.poster-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}

.cta-poster:hover .poster-hover {
  opacity: 1;
}

.poster-hover i {
  font-size: 2.5rem;
  color: var(--gold);
}

.poster-hover span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}