@font-face {
    font-family: 'kollektifregular';
    src: url('kollektif-webfont.woff2') format('woff2'),
         url('kollektif-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'kollektifbold';
    src: url('kollektif-bold-webfont.woff2') format('woff2'),
         url('kollektif-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'kollektifitalic';
    src: url('kollektif-italic-webfont.woff2') format('woff2'),
         url('kollektif-italic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    position: relative;
    min-height: 100vh;
    font-family: kollektifregular, -apple-system, BlinkMacSystemFont, "Segoe UI",
        Roboto, sans-serif;
    background-color: #FCBF0A;
    color: #1C1C1C;
    overflow: hidden; 
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0) 55%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 1;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
}


.logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    margin-bottom: -2rem;
    margin-top: -2rem;
}


h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 1rem;
}

.message {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.6;
}


.message a {
    color: #1C1C1C;
    text-decoration: underline;
    font-weight: 800;
}

.message a:hover {
    color: #fff;
    text-decoration: underline;
}

.emphase {
    font-style: normal;
    color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 600ms ease, transform 600ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}