/* Affigere Regular */
@font-face {
    font-family: 'Affigere';
    src: url('/fonts/Affigere-Regular.woff2') format('woff2'),
         url('/fonts/Affigere-Regular.woff') format('woff'),
         url('/fonts/Affigere-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Helvetica Neue Light */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('/fonts/HelveticaNeueLight.woff2') format('woff2'),
         url('/fonts/HelveticaNeueLight.woff') format('woff'),
         url('/fonts/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;  /* Light weight */
    font-style: normal;
}

/* Helvetica Neue Medium */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('/fonts/HelveticaNeueMedium.woff2') format('woff2'),
         url('/fonts/HelveticaNeueMedium.woff') format('woff'),
         url('/fonts/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;  /* Medium weight */
    font-style: normal;
}

/* Helvetica Neue Roman (Regular) */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('/fonts/HelveticaNeueRoman.woff2') format('woff2'),
         url('/fonts/HelveticaNeueRoman.woff') format('woff'),
         url('/fonts/HelveticaNeueRoman.otf') format('opentype');
    font-weight: normal;  /* Regular weight */
    font-style: normal;
}

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

body {
    background-color: #000;
    color: #fff;
    font-family: 'HelveticaNeue', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased; /* Voor Webkit browsers zoals Chrome en Safari */
    -moz-osx-font-smoothing: grayscale;  /* Voor Firefox op macOS */
    overflow-x: clip;
}

nav{
    width: 100%;
    display: flex;
    padding: 0 3em;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

nav span{
    letter-spacing: -2px;
}

nav p{
    text-align: right;
}

h1 {
    font-family: 'Affigere', sans-serif;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 4rem;
    margin: 40px 0;
}

.download-button {
    font-family: 'Affigere', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.1;
    font-size: 2rem;
    text-transform: uppercase;
    /* padding: 10px 20px; */
    text-decoration: underline;
    color: #fff;
    display: inline-block;
}

.download-button:hover {
    color: #37E267;
}

.placeholder-container {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    /* flex-wrap: wrap; */
    justify-content: center;
}

.placeholder {
    background-color: #ccc;
    width: 403px;
    height: 718px;
}

.services-ticker-block {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.stb_line_single {
    position: relative;
    white-space: nowrap;
    padding: 0;
    will-change: transform;
    display: flex;
    flex-direction: row;
}

.stb-item {
    padding: 0;
    font-size: 60px;
    margin-right: 2rem;
}

.stb-item:hover {
    color: #c02534;
}
  

.quote-section {
    margin: 80px 0 40px;
    font-size: 1.1rem;
}

.title {
    font-weight: 500;
    font-size: 46px;
    letter-spacing: 2px;
    line-height: .9;
    font-family: 'Affigere', sans-serif;
    text-transform: uppercase;
}

.quote-section span{
    letter-spacing: -2px;
}

.author {
    color: #FFF;
    font-family: "Helvetica Neue";
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 34px;
    letter-spacing: -0.28px;
}

.content {
    max-width: 800px;
    font-size: 22px;
    font-weight: normal;
    line-height: 24px;
    letter-spacing: -0.385px;
    padding: 0 20px;
    margin-bottom: 5em;
}

.content a {
    text-decoration: underline;
    color: #fff;
}

.content a:hover {
    color: #FF50DE;
}

.content svg{
    margin-top: 3em;
}

.content path:hover{
    fill: #F3FF00;
}

/* ----------- */

@media (max-width: 1100px) {
    h1 {
        letter-spacing: 2px;
        font-size: 2.5rem;
        margin: 40px 0;
    }
    .download-button {
        font-size: 2rem;
    }
}


@media (max-width: 900px) {
    nav{
        flex-direction: column;
        align-items: center;
        padding: 2.5em 0;
    }
    nav p{
        text-align: center;
    }
    h1 {
        margin: 0;
    }
    .download-button {
        margin: 0;
    }
}


@media (max-width: 768px) {
    .placeholder {
        width: 240px;
        height: 428px;
    }

    .quote-section {
        margin: 40px 0 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 560px) {
    h1 {
        font-size: 2.3rem;
        letter-spacing: .5px;
    }
    .download-button {
        font-size: 1.4rem;
    }
    
    .quote-section {
        margin: 40px 20px ;
    }

    .author {
        line-height: 1.1;
        margin-top: 10px;
    }

    .content {
        font-size: 16px;
        font-weight: normal;
        line-height: 24px;
        letter-spacing: -0.385px;
        padding: 0 20px;
        margin-bottom: 5em;
    }

    .remove-mobile{
        display: none;
    }
    
}