/* Events Page Styles
-------------------------------------------------- */

/* Text Gradient Style */
.text-gradient {
  background: linear-gradient(to right, var(--primary-color), #ff9a8b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}

/* Hero Section */
.events-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 2;
}

.events-hero .container {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Event Introduction */
.event-intro {
  padding: 100px 0;
  background-color: #fff;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-badge {
  display: inline-block;
  padding: 8px 16px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 90, 95, 0.3);
}

.intro-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--dark-color);
}

.intro-text {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
}

.intro-text p {
  margin-bottom: 20px;
}

.emoji {
  font-style: normal;
}

.limited-spots {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-color);
}

.highlight {
  color: var(--primary-color);
  font-weight: 700;
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  opacity: 0.5;
}

/* Event Schedule */
.event-schedule {
  padding: 100px 0;
  background-color: #f8f9fa;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background-color: rgba(255, 90, 95, 0.1);
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.section-subtitle {
  font-size: 18px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 90, 95, 0.3), rgba(255, 90, 95, 0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
  width: 100%;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-point {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 90, 95, 0.2);
  z-index: 2;
}

.timeline-content {
  position: relative;
  width: calc(50% - 40px);
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
  left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  left: calc(50% + 40px);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 10px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -10px;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.time {
  display: inline-block;
  padding: 5px 10px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px;
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.timeline-content p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* Event Features */
.event-features {
  padding: 100px 0;
  background-color: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(255, 90, 95, 0.3);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #555;
}

.feature-list li i {
  color: var(--primary-color);
  font-size: 14px;
}

/* Important Notes */
.important-notes {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.notes-content {
  max-width: 900px;
  margin: 0 auto;
}

.notes-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.notes-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.notes-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
}

.privacy-policy {
  padding: 25px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-policy h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.privacy-policy p {
  font-size: 16px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* Buy Tickets Section */
.buy-tickets {
  padding: 100px 0;
  background-color: #fff;
}

.tickets-container {
  display: flex;
  align-items: center;
  gap: 60px;
  background-color: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tickets-content {
  flex: 1;
  padding: 60px;
}

.tickets-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.tickets-price {
  margin-bottom: 30px;
}

.price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.price-info {
  font-size: 16px;
  color: #777;
  margin-top: 5px;
}

.tickets-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.ticket-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: #555;
}

.ticket-feature i {
  color: var(--primary-color);
}

.btn-large {
  padding: 15px 30px;
  font-size: 18px;
}

.tickets-image {
  flex: 1;
  height: 500px;
  overflow: hidden;
}

.tickets-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.tickets-container:hover .tickets-image img {
  transform: scale(1.05);
}

/* Other Events Section */
.other-events {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.event-card {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.event-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.05);
}

.event-date {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.event-date .day {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.event-date .month {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.event-content {
  padding: 25px;
}

.event-badge {
  display: inline-block;
  padding: 5px 10px;
  background-color: rgba(255, 90, 95, 0.1);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  border-radius: 5px;
  margin-bottom: 10px;
}

.event-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.event-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.event-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.event-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* Call to Action */
.events-cta {
  padding: 100px 0;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.events-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/pattern-dots.png');
  opacity: 0.1;
  pointer-events: none;
}

.cta-container {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 10px;
}

.form-group input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group button {
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  background-color: #fff;
  color: var(--primary-color);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .events-hero {
    height: 70vh;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-point {
    left: 20px;
  }
  
  .timeline-content {
    width: calc(100% - 60px);
    left: 60px !important;
  }
  
  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
  }
  
  .tickets-container {
    flex-direction: column;
  }
  
  .tickets-content {
    padding: 40px;
  }
  
  .tickets-image {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 767px) {
  .events-hero {
    height: 60vh;
    min-height: 500px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .intro-title {
    font-size: 28px;
  }
  
  .intro-text {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .timeline-content {
    padding: 15px;
  }
  
  .timeline-content h3 {
    font-size: 18px;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .feature-card h3 {
    font-size: 20px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .form-group {
    flex-direction: column;
  }
  
  .form-group input,
  .form-group button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .intro-title {
    font-size: 24px;
  }
  
  .limited-spots {
    font-size: 20px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .tickets-content {
    padding: 30px 20px;
  }
  
  .price {
    font-size: 36px;
  }
  
  .tickets-features {
    flex-direction: column;
    gap: 10px;
  }
  
  .event-content {
    padding: 20px;
  }
} 