@charset "UTF-8";
/* body.scss */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
/* Couleur de fond pâle */
/* Couleur d'accentuation des cartes (Terre Cuite Légère) */
/* Couleur de texte sombre */
/* Nouvelle couleur terre cuite pour le fond des artistes */
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background-color: #fbf8f5;
  color: #212529;
  line-height: 1.5;
}

/* ===== BOUTONS ===== */
.btn {
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}

/* Primary */
.btn-primary {
  background-color: #fbf8f5;
  border: 1px solid #000000;
  color: #333333;
}
.btn-primary:hover {
  background-color: #c26a4f;
  border-color: #000000;
  transform: translateY(-2px);
}

/* Secondary */
.btn-secondary {
  background-color: #fbf8f5;
  border: 1px solid #000000;
  color: #f4a261;
}
.btn-secondary:hover {
  background-color: rgb(224.0548344371, 120.5075496689, 106.2251655629);
  transform: translateY(-2px);
}

/* Outline */
.btn-outline-primary {
  background-color: transparent !important;
  border: 1px solid #e07a5f !important;
  color: #e07a5f !important;
  transition: all 0.2s ease-in-out;
}
.btn-outline-primary:hover {
  background-color: #e07a5f !important;
  color: white !important;
  border-color: #e07a5f !important;
  transform: translateY(-2px);
}

/* Quand radio sélectionné */
.btn-check:checked + .btn-outline-primary {
  background-color: #e07a5f !important;
  color: white !important;
  border-color: #e07a5f !important;
}

/* link */
.btn-link {
  background-color: transparent;
  border: none;
  color: #d75863;
}
.btn-link:hover {
  color: rgb(209.1449275362, 63.5550724638, 76.1652173913);
  text-decoration: underline;
  transform: translateY(-2px);
}

.info-link {
  color: #e58e82;
  text-decoration: none;
}
.info-link:hover {
  color: rgb(222.8185430464, 115.1344370861, 100.2814569536);
  text-decoration: underline;
  transform: translateY(-2px);
}

ol li {
  color: #337f77 !important;
}

.completed {
  border-color: #337f77 !important;
  color: #337f77 !important;
}

.active {
  border-color: #e58e82 !important;
  color: #e58e82 !important;
}

/* Couleurs utilitaires */
.bg-terracotta {
  background-color: var(--paaxio-terracotta);
}

.bg-paaxio-salmon {
  background-color: var(--paaxio-salmon);
}

.hover-bg-terracotta:hover {
  background-color: var(--paaxio-terracotta);
}

.artist-list-container {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  background-color: var(--paaxio-terracotta);
  border-radius: var(--paaxio-rounded-3xl);
  padding: 0.5rem 0.75rem;
}

.col-item-card {
  display: block;
  text-decoration: none;
}

.paaxio-card {
  border-radius: 12px;
  background-color: var(--paaxio-salmon);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.col-item-card:hover .paaxio-card {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 10px 20px rgba(0, 0, 0, 0.25);
}

.album-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #337f77;
}

.album-artist {
  font-size: 1.05rem;
  color: rgb(60.5123595506, 150.6876404494, 141.195505618);
}

.paaxio-horizontal-scroll {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  background-color: var(--paaxio-terracotta);
  border-radius: var(--paaxio-rounded-3xl);
  padding: 0.5rem 0.75rem;
}

.playlist-wrapper {
  width: 190px;
}

.playlist-card {
  border-radius: 16px;
  background-color: #e9b7a6;
  padding: 1rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.playlist-card-image {
  width: 150px;
  height: 150px;
  border-radius: 14px;
  background-color: #fff;
  margin: 0 auto 0.75rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.playlist-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.playlist-title {
  color: #fff;
  margin: 0;
  font-weight: 500;
}

/* Hover identique aux albums */
.playlist-wrapper:hover .playlist-card {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 10px 20px rgba(0, 0, 0, 0.25);
}

.big-stat {
  font-size: 2.5rem;
  font-weight: 400;
  color: #337f77;
}

.green-text {
  color: rgb(60.5123595506, 150.6876404494, 141.195505618);
  font-weight: 600;
}

.green-text-user {
  color: #337f77;
  font-weight: 900;
  font-size: medium;
}

.green-text-user:hover {
  color: #e9b7a6;
}

.toggle-password {
  position: absolute;
  top: 65px;
  right: 15px;
  cursor: pointer;
  color: #999;
  transition: color 0.2s ease;
}

.toggle-password:hover {
  color: var(--paaxio-terracotta);
}

/*# sourceMappingURL=body.css.map */
