/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/inter-v20-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-v20-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #050000;
  color: #ffffff;

  display: flex;
  flex-direction: column;
  min-height: 100svh;
  text-align: center;
  margin: 0;
  position: relative;

  gap: 50px;
}

.phantom-spacer {
  flex: 1.5;
}

.container {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  margin-top: auto;
  padding: 0 40px;
  animation: fadeUpIn 1.2s ease-in-out;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.campaign-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffffff;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.campaign-fr {
  font-style: italic;
}

.divider {
  height: 3px;
  width: 80px;
  background-color: #fcb100;
  margin: 0 auto 40px auto;
}

.slogan-container {
  margin-bottom: 50px;
}

.slogan-en {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 15px;
}

.slogan-fr {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  font-style: italic;
}

.status {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.contact-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  width: 100%;
  padding: 0 20px 40px 20px;
  animation: fadeIn 1.2s ease-in-out 1s backwards;
}

.contact-label {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-label span {
  display: inline-block;
}

.contact-detail {
  font-size: 1.1rem;
  font-weight: 400;
}

.contact-detail a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #fcb100;
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.contact-detail a:hover {
  opacity: 0.7;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
  .campaign-subtitle {
    font-size: 1rem;
  }
  .slogan-en,
  .slogan-fr {
    font-size: 1.8rem;
  }
}
