/* =============================================== */
/*           PARRAINBOOST - CSS PRINCIPAL        */
/* =============================================== */

/* Import des polices Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@400;600;700&display=swap');

/* Import de tous les fichiers CSS modulaires */
@import 'variables.css';
@import 'reset.css';
@import 'base.css';
@import 'components/buttons.css';
@import 'components/forms.css';
@import 'header.css';
@import 'hero.css';
@import 'cards.css';
@import 'sidebar.css';
@import 'forum.css';
@import 'modal.css';
@import 'footer.css';
@import 'components/auth.css';
@import 'components/testimonials.css';
@import 'components/trustpilot.css';
@import 'responsive.css';
@import 'pagination.css';

/* Styles spécifiques aux pages (si nécessaire) */
/* @import 'pages/compte.css'; */
/* @import 'pages/connexion.css'; */
/* Loading Spinner */
.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  grid-column: 1 / -1; /* Prend toute la largeur de la grille */
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-spinner p {
  color: #666;
  margin: 0;
  font-size: 14px;
}
/* Mascotte section - Mascotte complètement à gauche */
.mascotte-section {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 30px 0;
  padding-left: 260px; /* Espace pour la mascotte à gauche */
}

.mascotte-left {
  position: absolute;
  left: 0; /* Complètement à gauche de la section */
  top: 30%;
  transform: translateY(-50%);
  flex-shrink: 0;
  z-index: 2;
}

.mascotte-img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.mascotte-right {
  flex: 1;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  padding: 25px 30px;
  border: 2px solid #e9ecef;
  margin-left: -30px; /* Léger chevauchement visuel avec la mascotte */
}

.mascotte-right h3 {
  color: #C1121F;
  font-size: 1.4rem;
  margin: 0 0 12px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.mascotte-right p {
  color: #555;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

@media (max-width: 968px) {
  .mascotte-section {
    padding-left: 0;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  
  .mascotte-left {
    position: static;
    left: auto;
    top: auto;
    transform: none;
  }
  
  .mascotte-right {
    margin-left: 0;
  }
  
  .mascotte-img {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .mascotte-section {
    margin: 20px 0;
  }
  
  .mascotte-right {
    padding: 20px;
  }
  
  .mascotte-img {
    width: 150px;
    height: 150px;
  }
  
  .mascotte-right h3 {
    font-size: 1.2rem;
  }
  
  .mascotte-right p {
    font-size: 0.95rem;
  }
}