.footer-super-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.8rem;
  color: var(--neutral-50);
  border-radius: 32px;
  padding: 9rem 0rem 3rem 0rem;

  &.footer-hiver {
    background-color: var(--hiver-primary-700);
  }

  &.footer-ete {
    background-color: var(--ete-primary-900);
  }
}

.footer-main-container {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  width: 77.71%;
}

.footer-cta-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-cta-text h2 {
  color: var(--neutral-50);
}

.footer-cat-button {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.footer-bottom-container-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo-slogan-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.footer-logo-container svg {
  width: 15vw;
  height: auto;
}

.footer-slogan-container svg {
  width: 10vw;
  height: auto;
}

.footer-contact-container {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: center;
}

.footer-media-link-container {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.footer-media-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: var(--neutral-50);
  a {
    width: 100%;
    height: 100%;
    color: var(--neutral-50);

    svg {
      width: 100%;
      height: 100%;
      fill: var(--neutral-50);
    }
  }
}

.footer-contact-link a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.2rem;
  color: var(--neutral-50);

  p {
    color: var(--neutral-50);
  }

  svg {
    width: 0.6rem;
    height: auto;
  }
}

.footer-container-right {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.footer-container-main-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 8vw;
  color: var(--neutral-50);

  p {
    color: var(--neutral-50);
  }

  a {
    color: var(--neutral-50);
  }

  .footer-title-link {
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
  }
}

.footer-mention-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  p {
    color: var(--neutral-50);
    font-size: var(--fs-body);
    font-family: var(--ff-body);
    padding: 0 !important;
  }

  a {
    color: var(--neutral-50);
    font-size: var(--fs-body);
    font-family: var(--ff-body);
    padding: 0 !important;
  }
}

.footer-ete .footer-container-main-link a:hover,
.footer-ete .footer-contact-link p:hover,
.footer-ete .footer-mention-container a:hover {
  color: var(--ete-primary-500);
  text-decoration: underline;
  text-decoration-color: var(--ete-primary-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.3s ease-in-out, text-decoration-color 0.3s ease-in-out,
    text-decoration 0.3s ease-in-out;
}

.footer-hiver .footer-container-main-link a:hover,
.footer-hiver .footer-contact-link p:hover,
.footer-hiver .footer-mention-container a:hover {
  color: var(--hiver-primary-300);
  text-decoration: underline;
  text-decoration-color: var(--hiver-primary-300);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 0.3s ease-in-out, text-decoration-color 0.3s ease-in-out,
    text-decoration 0.3s ease-in-out;
}

/* Mobile portrait (max-width: 480px) */
@media (max-width: 480px) {
  .footer-super-container {
    margin: 0rem;
    border-radius: 32px 32px 0px 0px;
    padding: 6rem 0rem 3rem 0rem;
  }

  .footer-main-container {
    gap: 3rem;
  }

  .footer-cta-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer-bottom-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo-slogan-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-logo-container {
    width: 80%;

    svg {
      width: 100%;
      height: auto;
    }
  }

  .footer-slogan-container {
    width: 70%;

    svg {
      width: 100%;
      height: auto;
    }
  }

  .footer-contact-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-container-right {
    display: none;
  }
}

/* Mobile portrait & small tablets (max-width: 767px) */
@media (max-width: 767px) {
}

/* Tablet portrait (min-width: 768px) and (max-width: 1024px) */
@media (min-width: 768px) and (max-width: 1366px) {
  .footer-bottom-container {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 2rem;
  }

  .footer-logo-slogan-container {
    width: 100%;
  }

  .footer-logo-container {
    width: 40%;

    svg {
      width: 100%;
      height: auto;
    }
  }

  .footer-slogan-container {
    width: 30%;

    svg {
      width: 100%;
      height: auto;
    }
  }

  .footer-bottom-container-left {
    width: 100%;
  }

  .footer-contact-container {
    width: 100%;
  }

  .footer-media-link {
    width: 2rem;
    height: 2rem;
  }

  .footer-container-right {
    width: 100%;
  }

  .footer-container-main-link {
    width: 100%;
  }
}

/* Styles spécifiques pour tablette landscape */

@media (min-width: 1025px) and (max-width: 1366px) {
}
