@import url("https://fonts.googleapis.com/css2?family=Encode+Sans:wght@300;400;700&display=swap");

/* ===================================================================
 *  BASE STYLES - Configuration générale du site
 *  =================================================================== */

html, body {
  overflow-x: hidden; /* Empêche le scroll horizontal */
  width: 100%;
  min-height: 100%;
  box-sizing: border-box;
}

body {
  background-color: #4c4c4c;
  font-family: 'Encode Sans', sans-serif;
}

.main-content {
  padding: 20px 12px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ===================================================================
 *  TYPOGRAPHY - Titres et textes principaux
 *  =================================================================== */

.page-title {
  color: white;
  text-align: center;
  margin: 40px 0;
  font-size: 2.5em;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-subtitle {
  color: #e0e0e0;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.1em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.page-title-filtered {
  color: white;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 300;
}

.no-matches-message {
  color: white;
  text-align: center;
  font-size: 1.3rem;
}

.card-text-custom {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

.text-primary {
  color: #5ebd00 !important;
}

/* ===================================================================
 *  HERO SECTION - Bannière d'accueil
 *  =================================================================== */

.hero-banner {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg"/>') center/cover;
  color: white;
  padding: 2rem 0;
}

.hero-tagline {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.hero-subtitle {
  background: linear-gradient(180deg, #1a1a1a 0%, #4c4c4c 100%);
  margin-top: -1px;
  margin-bottom: -1.3rem;
  padding: 1rem 0;
  text-align: center;
  color: white;
}

/* ===================================================================
 *  BUTTONS - Boutons personnalisés réutilisables
 *  =================================================================== */

.btn-primary-custom {
  background-color: #5ebd00;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  border: none;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #52a800;
  color: white;
  text-decoration: none;
}

.btn-outline-light-custom {
  border: 1px solid white;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  background: transparent;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
}

.btn-outline-light-custom:hover {
  background-color: white;
  color: #333;
  text-decoration: none;
}

/* ===================================================================
 *  CARDS - Cartes communes (spectacles et ateliers)
 *  =================================================================== */

.custom-card {
  position: relative;
  margin-bottom: -3px;
  box-shadow: 0 6px 38px rgba(0, 0, 0, 0.085);
  transition: box-shadow 0.3s ease;
  border-top: 5px solid #5ebd00;
  border-left: none;
  border-right: none;
  border-bottom: 5px solid #5ebd00;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.custom-card:hover {
  box-shadow: 0 13px 38px rgba(0, 0, 0, 0.15);
}

.custom-card .card-body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.custom-card .card-text {
  flex: 1;
}

.custom-card .card-cover {
  position: relative;
  background: none no-repeat center center/cover;
  height: 140px;
}

.custom-card .card-cover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
}

.badge-image {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  height: 80px;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}

.badge-image:hover {
  transform: scale(1.05);
}

/* ===================================================================
 *  EVENT BADGES - Badges date et titre communs
 *  =================================================================== */

.event-date-time-badge {
  background-color: #e9ecef;
  color: #495057;
  padding: 2px 15px;
  display: inline-block;
  font-size: 0.85em;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0 6px 6px 0;
  margin-left: -16px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  width: fit-content;
}

.event-title-badge {
  background-color: #5ebd00;
  color: white;
  padding: 5px 20px;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 1.55em;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0 6px 6px 0;
  margin-left: -16px;
  width: fit-content;
  min-width: fit-content;
  letter-spacing: 1px;
  line-height: 1.1;
}

/* ===================================================================
 *  ROLE BADGES - Badges des rôles (comédiens, arbitres, etc.)
 *  =================================================================== */

.roles-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-bottom: 1rem;
}

.role-badge {
  background-color: #f8f9fa;
  border-left: 5px solid;
  color: #333;
  padding: 5px 15px;
  margin-bottom: 0.75rem;
  text-align: left;
  white-space: normal;
  word-break: break-word;
  font-size: 1.1rem;
  line-height: 1.3;
  border-radius: 0 15px 15px 0;
  width: 100%;
  display: flex;
  align-items: center;
}

.role-badge-icon {
  margin-right: 0.75rem;
  flex-shrink: 0;
  font-size: 1.3rem;
}

/* ===================================================================
 *  LOCATION BADGE - Pin de localisation rouge
 *  =================================================================== */

.location-badge {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 10px 16px;
  border-radius: 20px 20px 20px 5px;
  font-size: 0.9em;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  margin-left: auto;
  width: fit-content;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
}

.location-badge::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #c82333;
  transition: all 0.3s ease;
}

.location-badge:hover {
  background: linear-gradient(135deg, #c82333, #b21e2d);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(220,53,69,0.4);
  color: white;
  text-decoration: none;
}

.location-badge:hover::after {
  border-top-color: #b21e2d;
}

/* ===================================================================
 *  TICKET BUTTON - Bouton de réservation 3 zones
 *  =================================================================== */

.ticket-btn {
  background: linear-gradient(135deg, #1e3a8a, #1e40af, #1d4ed8);
  color: white;
  border: none;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  position: relative;
  border-radius: 8px;
  width: 100%;
  display: flex;
  align-items: stretch;
  transition: all 0.3s ease;
  overflow: hidden;
  text-decoration: none;
  min-height: 50px;
  max-height: 55px;
}

/* Cercles de perforation aux extrémités */
.ticket-btn::before,
.ticket-btn::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: #f8f9fa;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.ticket-btn::before {
  left: -15px;
}

.ticket-btn::after {
  right: -15px;
}

/* Zone 1 : Partie vide à gauche */
.ticket-zone-empty {
  flex: 0 1 20%;
  min-width: 15%;
  max-width: 25%;
  position: relative;
}

/* Zone 2 : Partie centrale avec texte "Réserver" */
.ticket-zone-center {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 1.2rem 0.5rem;
}

/* Zone 3 : Partie prix (gérée par PHP maintenant) */
.ticket-zone-price {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 1.2rem 1.6rem;
  min-width: 60px;
  max-width: 40%;
}

/* Zone prix élargie pour les boutons désactivés */
.ticket-btn:disabled .ticket-zone-price {
  max-width: 42%;
}

.ticket-price-content {
  background: rgba(255,255,255,0.9);
  color: #333;
  padding: 0.1rem 0.3rem 0.1rem 0.3rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  /* Les retours à la ligne sont maintenant gérés par PHP avec <br> */
}

/* Pointillés séparateurs entre les zones */
.ticket-zone-empty::after,
.ticket-zone-center::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(255,255,255,0.4) 3px,
    rgba(255,255,255,0.4) 6px
  );
  z-index: 1;
}

/* États du bouton ticket */
.ticket-btn:hover {
  background: linear-gradient(135deg, #1e40af, #1d4ed8, #2563eb);
  color: white;
  text-decoration: none;
}

.ticket-btn:disabled {
  background: #f8f9fa;
  border: 2px dashed #adb5bd;
  color: #adb5bd;
  cursor: default;
}

.ticket-btn:disabled .ticket-price-content {
  background: rgba(0,0,0,0.1); /* Fond gris plus foncé */
  color: #6c757d;
}

.ticket-btn:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* ===================================================================
 *  RESPONSIVE - Adaptations mobiles et tablettes
 *  =================================================================== */

@media (max-width: 768px) {
  .hero-tagline {
    font-size: 1.4rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-custom,
  .btn-outline-light-custom {
    padding: 0.8rem 1.5rem;
    font-size: 1.1rem;
    width: 280px;
    text-align: center;
  }

  .page-title {
    font-size: 2rem;
  }

  .page-title-filtered {
    font-size: 1.8rem;
  }

  .event-title-badge {
    font-size: 1.3em;
    padding: 10px;
  }

  .event-date-time-badge {
    font-size: 0.85em;
    padding: 2px 12px;
  }

  .main-content {
    padding: 15px 8px 30px;
  }

  .ticket-btn {
    min-height: 55px;
  }

  .ticket-zone-center,
  .ticket-zone-price {
    padding: 1rem 0.4rem;
  }

  .ticket-price-content {
    font-size: 0.75rem;
  }

  /* FIX MOBILE TICKET - Éviter que le prix colle au trou */
  .ticket-zone-empty {
    flex: 0 1 15%;        /* Réduit de 20% à 15% */
    max-width: 20%;       /* Réduit de 25% à 20% */
  }

  .ticket-zone-price {
    max-width: 45%;       /* Réduit de 40% à 45% pour garder espace droite */
    margin-right: 15px;   /* Marge droite pour éviter le trou */
  }

  .ticket-btn:disabled .ticket-zone-price {
    max-width: 50%;       /* Plus d'espace pour "Sans réservation" */
    margin-right: 15px;   /* Même marge pour cohérence */
  }
}

@media (max-width: 576px) {
  .custom-card .card-cover {
    height: 120px;
  }

  .role-badge {
    font-size: 1rem;
    padding: 4px 12px;
  }

  .role-badge-icon {
    font-size: 1.1rem;
    margin-right: 0.5rem;
  }

  .location-badge {
    font-size: 0.8em;
    padding: 2px 12px;
  }

  /* Très petits écrans - Plus d'espace encore */
  .ticket-zone-empty {
    flex: 0 1 10%;        /* Encore plus réduit */
    max-width: 15%;
  }

  .ticket-zone-price {
    max-width: 50%;       /* Plus d'espace */
    margin-right: 18px;   /* Plus de marge sur très petits écrans */
  }

  .ticket-btn:disabled .ticket-zone-price {
    max-width: 55%;       /* Maximum pour "Sans réservation" */
    margin-right: 18px;
  }
}