/* ----- ROOT CONTAINER ----- */

.page {
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  min-height: 100vh;
  width: 100%;
  padding: 16px 16px;
}

/* Container centré, responsive */
.page .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  max-width: 490px;
  width: 100%;
  margin: auto;
}

/* ----- HEADER ----- */

.page .name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.page .heading {
  font-family: "Open Sans-Bold", Helvetica;
  font-weight: 700;
  color: #1c1b1b;
  font-size: 64px;
  text-align: center;
	
}

.page .text-wrapper {
  font-family: "Open Sans-Regular", Helvetica;
  font-size: 16px;
  text-align: center;
  color: #1c1b1b;
  text-transform: uppercase;
}

/* ----- LOGO ----- */

.page .logo {
  height: 280px;
  width: auto;
}

/* ----- INTRO ----- */

.page .intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: center;
}

.page .text-wrapper-2 {
  font-family: "Open Sans-Bold", Helvetica;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #1c1b1b;
}

.page .p {
  font-family: "Open Sans-Regular", Helvetica;
  font-size: 16px;
	line-height: 20px;
  text-align: center;
  width: 100%;
  max-width: 344px;
  color: #1c1b1b;
}

/* ----- CTA ----- */

.page .CTA {
  all: unset;
  box-sizing: border-box;
  display: flex;
  width: 100%;
  max-width: 320px;
  justify-content: center;
  padding: 16px 32px;
  background-color: #1c1b1b;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-align: center;
}

.page .CTA:hover {
  background-color: #079DCF;
}

.page .text-wrapper-3 {
  font-family: "Open Sans-Bold", Helvetica;
  font-weight: 700;
  font-size: 20px;
  color: #ffffff;
}

/* ----- SOCIALS ----- */

.page .social {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.page .img {
  width: 24px;
  height: 24px;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.page .img:hover {
  filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(758%) hue-rotate(162deg) brightness(98%) contrast(96%);
  transform: scale(1.1);
}

/* ----- FOOTER ----- */

.page .text-wrapper-4 {
  font-family: "Open Sans-SemiBold", Helvetica;
  font-size: 14px;
  text-align: center;
  color: #1c1b1b;
  margin-top: 16px;
}

/* ----- RESPONSIVE BREAKPOINTS ----- */

@media (min-width: 900px) {
  .page .UI-designer {
    font-size: 88px;
  }

  .page .logo {
    height: 344px;
  }
}
