/**
 * Page Créateur - Liste des expériences
 * Style moderne inspiré de WeCandoo
 * Créé le 27/10/2025
 */

/* ==========================================================================
   En-tête Créateur
   ========================================================================== */

.andala-creator-page__header {
  padding: 4rem 0 3rem;
  background: linear-gradient(135deg, #FFF8F6 0%, #FFFFFF 100%);
}

.andala-creator-page__photo-wrapper {
  max-width: 300px;
  margin: 0 auto;
}

.andala-creator-page__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.andala-creator-page__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2C3E50;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.andala-creator-page__title .highlight {
  color: #009688;
  display: block;
  margin-top: 0.5rem;
}

.andala-creator-page__metier {
  font-size: 1.2rem;
  font-weight: 600;
  color: #88C9BF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.andala-creator-page__description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4A5568;
  margin-top: 1.5rem;
}

.andala-creator-page__description strong {
  color: #2C3E50;
  font-weight: 600;
}

.andala-creator-page__description em {
  font-style: italic;
  color: #009688;
}

.andala-creator-page__description u {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Séparateur */
.andala-creator-page__separator-section {
  padding: 2rem 0;
}

.andala-creator-page__separator {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #88C9BF 0%, #009688 100%);
  border: none;
  margin: 0 auto;
  border-radius: 2px;
}

/* ==========================================================================
   Liste des Expériences
   ========================================================================== */

.andala-creator-page__experiences {
  padding: 2rem 0 4rem;
}

.andala-creator-page__experiences-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #2C3E50;
  text-align: center;
  margin-bottom: 3rem;
}

/* Cartes Expériences */
.andala-experience-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.andala-experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.andala-experience-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.andala-experience-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.andala-experience-card:hover .andala-experience-card__image {
  transform: scale(1.05);
}

.andala-experience-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.andala-experience-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.andala-experience-card__title a {
  color: #2C3E50;
  text-decoration: none;
  transition: color 0.2s ease;
}

.andala-experience-card__title a:hover {
  color: #009688;
}

.andala-experience-card__location {
  font-size: 0.95rem;
  color: #718096;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.andala-experience-card__location i {
  color: #009688;
  font-size: 1.1rem;
}

.andala-experience-card__description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4A5568;
  margin-bottom: 1.5rem;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.andala-experience-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #E2E8F0;
}

.andala-experience-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #009688;
}

.andala-experience-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #88C9BF 0%, #009688 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.andala-experience-card__btn:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 15px rgba(0, 150, 136, 0.3);
  color: #fff;
  text-decoration: none;
}

.andala-experience-card__btn i {
  transition: transform 0.3s ease;
}

.andala-experience-card__btn:hover i {
  transform: translateX(3px);
}

/* État vide */
.andala-creator-page__empty {
  text-align: center;
  padding: 4rem 0;
  color: #718096;
}

.andala-creator-page__empty i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #CBD5E0;
}

.andala-creator-page__empty p {
  font-size: 1.25rem;
  margin: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 768px) {
  .andala-creator-page__header {
    padding: 2rem 0 1.5rem;
  }
  
  .andala-creator-page__title {
    font-size: 1.75rem;
    text-align: center;
  }
  
  .andala-creator-page__metier {
    text-align: center;
  }
  
  .andala-creator-page__description {
    font-size: 1rem;
  }
  
  .andala-creator-page__experiences-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .andala-experience-card__price {
    font-size: 1.25rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .andala-creator-page__title {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .andala-creator-page__header .container {
    max-width: 1140px;
  }
  
  .andala-creator-page__experiences .container {
    max-width: 1200px;
  }
}
