/* Styles pour le popup de réservation de billets */
.ticket-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ticket-popup.show {
  opacity: 1;
}

.ticket-popup-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  width: 90%;
  position: relative;
  border: 2px solid #ff6b00;
  margin: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ticket-popup.show .ticket-popup-content {
  transform: translate(-50%, -50%) scale(1);
}

.ticket-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.ticket-popup-header h3 {
  margin: 0;
  font-size: 1.8rem;
  color: #ff6b00;
}

.ticket-popup-close {
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 0;
  line-height: 1;
}

.ticket-popup-close:hover {
  color: #ff6b00;
}

.ticket-popup-body {
  text-align: center;
}

.ticket-popup-image {
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ticket-popup-image img {
  width: 100%;
  height: auto;
  display: block;
}

.ticket-popup-body p {
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.ticket-popup-button {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  background: #ff6b00;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
  font-size: 1.1rem;
}

.ticket-popup-button i {
  margin-right: 10px;
  font-size: 1.3rem;
}

.ticket-popup-button:hover {
  background: #ff8c00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
  color: white;
}

@media (max-width: 576px) {
  .ticket-popup-content {
    padding: 20px;
    width: 95%;
  }

  .ticket-popup-header h3 {
    font-size: 1.5rem;
  }

  .ticket-popup-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
} 