:root {
  /* Dégradés modernes inspirés du logo */
  --grad-events-1: linear-gradient(135deg, #e8333a 0%, #a83279 100%); /* Rouge/Violet */
  --grad-events-2: linear-gradient(135deg, #f6b426 0%, #f15a24 100%); /* Jaune/Orange */
  --grad-banner: linear-gradient(135deg, rgba(90,45,130,0.15) 0%, rgba(255,102,178,0.15) 100%);
  
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
  --radius-lg: 24px;
  --radius-md: 16px;
}

/* Section Bannière / Hero */
.edmps-hero {
  background: var(--grad-banner);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.edmps-hero h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
}

/* Zone Événements (Cards) */
.events-container {
  display: flex;
  gap: 16px;
  overflow-x: auto; /* Permet le défilement horizontal (swipe) sur mobile */
  padding: 16px;
  scroll-linecap: mandatory;
  -webkit-overflow-scrolling: touch;
}

.event-card {
  flex: 0 0 75%; /* Largeur de la carte sur mobile pour laisser deviner la suivante */
  border-radius: var(--radius-lg);
  padding: 20px;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  position: relative;
}
.event-card-1 { background: var(--grad-events-1); }
.event-card-2 { background: var(--grad-events-2); }

.event-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.event-card p { margin-bottom: 4px; font-size: 0.9rem; opacity: 0.9; }

/* Section Planning */
.planning-container {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 16px;
  box-shadow: var(--shadow-soft);
}
.planning-day { font-weight: 700; margin-top: 12px; margin-bottom: 8px; }
.planning-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
}

/* Boutons modernes arrondis (Pills) */
.btn-edmps {
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-outline {
  border: 2px solid #9e6b30;
  color: #9e6b30;
  background: transparent;
}
.btn-filled {
  background: #f15a24;
  color: #ffffff;
  margin-bottom: 15px;
}