/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  font-family: "Inter", sans-serif;
  background: #202426;
  color: #fff;
}


/* =========================
   LANDING PAGE
========================= */

.maintenance {
  position: relative;

  min-height: calc(100vh - 42px);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 40px 20px;

  background-image:
    linear-gradient(
      rgba(31, 38, 43, 0.58),
      rgba(96, 96, 96, 0.56)
    ),
    url("image-fond.png");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}


/* Léger voile blanc/gris surtout sur le bas,
   comme sur la maquette */
.maintenance::after {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 42%,
    rgba(225, 225, 225, 0.08) 60%,
    rgba(220, 220, 220, 0.26) 100%
  );
}


/* =========================
   CONTENU CENTRAL
========================= */

.maintenance__content {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: 800px;

  text-align: center;

  transform: translateY(-30px);
}


/* =========================
   LOGO
========================= */

.maintenance__logo {
  display: block;

  width: 320px;
  max-width: 70%;

  height: auto;

  margin: 0 auto 48px;
}


/* =========================
   TITRE
========================= */

.maintenance__title {
  margin-bottom: 12px;

  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 800;

  line-height: 1.15;

  letter-spacing: 1px;

  color: #fff;
}


/* =========================
   SOUS-TITRE
========================= */

.maintenance__subtitle {
  margin-bottom: 29px;

  font-size: clamp(18px, 1.75vw, 27px);
  font-weight: 300;

  line-height: 1.35;

  letter-spacing: 1.7px;

  color: rgba(255, 255, 255, 0.9);
}


/* =========================
   TÉLÉPHONE
========================= */

.maintenance__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 181px;
  height: 35px;

  padding: 5px 18px;

  border: 1px solid rgba(255, 255, 255, 0.9);

  color: #fff;

  font-size: 16px;
  font-weight: 300;

  line-height: 1;

  text-decoration: none;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.maintenance__phone:hover {
  background: #fff;
  color: #333;
}


/* =========================
   FOOTER
========================= */

.footer {
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 20px;

  background: #202426;

  color: #fff;

  font-size: 12px;
  font-weight: 400;

  text-align: center;
}

.footer p {
  margin: 0;
}

.footer span {
  margin-left: 6px;
}
.footer a{
  color: #ffffff;
  text-decoration: none;
}
.footer a:hover{
  color: #ce015f;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .maintenance {
    min-height: calc(100vh - 45px);

    background-position: center center;
  }

  .maintenance__content {
    transform: translateY(-10px);
  }

  .maintenance__logo {
    width: 260px;
    margin-bottom: 36px;
  }

  .maintenance__title {
    font-size: 25px;
  }

  .maintenance__subtitle {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .footer {
    height: 45px;
    font-size: 11px;
  }
}


@media (max-width: 480px) {

  .maintenance {
    padding: 30px 18px;
  }

  .maintenance__logo {
    width: 220px;
    max-width: 80%;
    margin-bottom: 30px;
  }

  .maintenance__title {
    font-size: 21px;
    line-height: 1.25;
  }

  .maintenance__subtitle {
    font-size: 15px;
    line-height: 1.45;
    letter-spacing: 1.2px;
  }

  .maintenance__phone {
    min-width: 170px;
    font-size: 14px;
  }
}