/* =============================================================================
   STELLA FOOTER
   Footer riche 4 colonnes — fond Basilic foncé
   ============================================================================= */

#stella-footer {
  background: var(--stella-basilic-dk, #002A20);
  color: var(--stella-creme);
  padding: 4rem 0 0;
}

/* --- Conteneur principal --- */
.stella-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Grille 4 colonnes --- */
.stella-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.6fr;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 0.5px solid rgba(255, 243, 222, 0.1);
}

/* ── Colonne 1 : Brand ──────────────────────────────────────────────────────── */
.stella-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stella-footer__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.stella-footer__logo img {
  height: 48px;
  width: auto;
}

.stella-footer__logo-name {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stella-footer__logo-text {
  font-family: var(--stella-font-title);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stella-creme);
  line-height: 1;
}

.stella-footer__logo-tagline {
  font-family: var(--stella-font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255, 243, 222, 0.6);
}

.stella-footer__desc {
  font-family: var(--stella-font-body);
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(255, 243, 222, 0.55);
  max-width: 28ch;
}

/* ── Colonnes 2-5 : titres ──────────────────────────────────────────────────── */
.stella-footer__col-title {
  font-family: var(--stella-font-title);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stella-spritz);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.stella-footer__col-title .star {
  font-size: 0.6rem;
}

/* ── Colonne 2 : Univers ────────────────────────────────────────────────────── */
.stella-footer__nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.stella-footer__nav li a {
  font-family: var(--stella-font-body);
  font-size: 0.85rem;
  color: rgba(255, 243, 222, 0.65);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stella-footer__nav li a:hover {
  color: var(--stella-creme);
}

.stella-footer__nav li a .star {
  color: var(--stella-spritz);
  font-size: 0.6rem;
  transition: transform 0.6s ease;
}

.stella-footer__nav li a:hover .star {
  transform: rotate(360deg);
}

/* ── Colonne 3 : Contact ────────────────────────────────────────────────────── */
.stella-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stella-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--stella-font-body);
  font-size: 0.85rem;
  color: rgba(255, 243, 222, 0.65);
  line-height: 1.5;
  text-decoration: none;
}

.stella-footer__contact-item:hover {
  color: var(--stella-creme);
}

.stella-footer__contact-icon {
  color: var(--stella-spritz);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── Colonne 4 : Horaires ───────────────────────────────────────────────────── */
.stella-footer__horaires-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stella-footer__horaires-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: var(--stella-font-body);
  font-size: 0.85rem;
}

.stella-footer__horaires-jour {
  color: rgba(255, 243, 222, 0.65);
  letter-spacing: 0.04em;
}

.stella-footer__horaires-heure {
  color: var(--stella-creme);
  font-weight: 500;
}

/* ── Colonne 5 : Réseaux sociaux ────────────────────────────────────────────── */
.stella-footer__social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.stella-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 243, 222, 0.15);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.stella-footer__social-link:hover {
  border-color: var(--stella-spritz);
  background: rgba(255, 67, 0, 0.1);
}

.stella-footer__social-link img {
  width: 20px;
  height: 20px;
  display: block;
}

/* --- Barre de bas de page --- */
.stella-footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.stella-footer__copy {
  font-family: var(--stella-font-body);
  font-size: 0.72rem;
  color: rgba(255, 243, 222, 0.35);
  letter-spacing: 0.04em;
}

.stella-footer__legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stella-footer__legal a {
  font-family: var(--stella-font-body);
  font-size: 0.72rem;
  color: rgba(255, 243, 222, 0.35);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
}

.stella-footer__legal a:hover {
  color: var(--stella-creme);
}

/* --- Responsive --- */
@media (max-width: 1100px) {
  .stella-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }

  /* Social passe sous Horaires */
  .stella-footer__col:last-child {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .stella-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .stella-footer__brand {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .stella-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .stella-footer__brand {
    grid-column: span 1;
  }

  .stella-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .stella-footer__legal {
    flex-wrap: wrap;
    gap: 1rem;
  }
}