/* ========================================
   MODERN EVENT CARD STYLES
   ======================================== */

/* Container principal */
.modern-event-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* Section info de la carte */
.event-card-info {
  padding: 20px;
  text-align: center;
}

/* Ligne badge catégorie + date */
.event-badge-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 12px;
  line-height: 1;
  flex-wrap: wrap;
}

.event-category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: #FFC107;
  color: #1e3a8a;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.event-date {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a8a;
  white-space: nowrap;
}

/* Titre de l'événement */
.event-title {
  display: flex;
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.25;
  justify-content: center;
  color: #1e3a8a;
}

.event-title a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.event-title a:hover {
  opacity: 0.8;
}

/* Lieu */
.event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 14px;
}

.event-location i {
  color: #E600A9;
}

.event-location a {
  color: #E600A9;
  text-decoration: none;
  font-weight: 450;
  transition: opacity 0.2s ease;
}

.event-location a:hover {
  opacity: 0.8;
}

/* Section prix et bouton */
.event-pricing-section {
  text-align: center;
}

.event-price-label {
  font-size: 14px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 6px;
}

.event-price {
  font-size: 32px;
  font-weight: 900;
  color: #E600A9;
  line-height: 1;
  margin-bottom: 6px;
}

/* Bouton Acheter */
.btn-buy-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 30px 5px 10px;
  background: #E600A9;
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 900;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(230, 0, 169, 0.35);
  letter-spacing: 0.8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-buy-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(230, 0, 169, 0.45);
  color: #FFFFFF;
}

.btn-buy-modern .icon-ticket {
  width: 20px;
  height: 20px;
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
  .event-card-info {
    padding: 16px;
  }

  /* Badge et date sur mobile */
  .event-badge-line {
    gap: 8px;
    margin-bottom: 10px;
  }

  .event-category-badge {
    height: 32px;
    padding: 0 10px;
    font-size: 13px;
  }

  .event-date {
    font-size: 15px;
  }

  /* Titre plus petit sur mobile */
  .event-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  /* Lieu plus compact */
  .event-location {
    font-size: 14px;
    margin-bottom: 12px;
  }

  /* Prix plus petit sur mobile */
  .event-price-label {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .event-price {
    font-size: 24px;
    margin-bottom: 4px;
  }

  /* Bouton plus petit sur mobile */
  .btn-buy-modern {
    font-size: 18px;
    padding: 5px 20px 4px 8px;
    gap: 8px;
  }

  .btn-buy-modern .icon-ticket {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 480px) {
  .event-card-info {
    padding: 12px;
  }

  .event-category-badge {
    height: 28px;
    padding: 0 8px;
    font-size: 12px;
  }

  .event-date {
    font-size: 13px;
  }

  .event-title {
    font-size: 14px;
  }

  .event-price {
    font-size: 20px;
  }

  .btn-buy-modern {
    font-size: 16px;
    padding: 4px 16px 3px 6px;
    gap: 6px;
  }

  .btn-buy-modern .icon-ticket {
    width: 14px;
    height: 14px;
  }
}
