﻿footer {
  display: flex;
  min-height: 15vh;
  background-color: #000;
  color: #FFF;
}

.footer-text-part {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 45%;
  gap: 1rem;
  padding: 1.2rem 0;
}

.footer-middle-part {
  width: 10%;
  border-left: 1px solid #FFF;
  margin: 1rem 0;
}

.footer-title-line {
  font-family: Ageo;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05rem;
  padding: 0.5rem 0 0.5rem 10%;
}

.footer-link {
  position: relative;
  width: fit-content;
  color: #FFF;
  text-decoration: none;
}

.footer-link::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: #FFF;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.footer-link:hover {
  cursor: pointer;
}

.footer-link:hover::after {
  transform: scale(1);
}

.footer-copyright-ligne {
  width: 100%;
  font-size: 0.7rem;
  background-color: #000;
  color: #FFF;
  padding: 0.3rem 0 0.5rem;
  border-top: 1px solid #FFF;
}

.footer-copyright-ligne a {
  color: #FFF;
  text-decoration: none;
  margin-left: 0.5rem;
}

.footer-copyright-ligne a:hover {
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 425px) {
  .footer-title-line {
    font-size: 1.8rem;
    padding: 0.5rem 0 0.5rem 5%;
  }
  .footer-text-part {
    font-size: 1rem;
  }
}
