/* Typography */

@font-face {
    font-family: 'TF2';
    src: url('./fonts/TF2.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'TF2Secondary';
    src: url('./fonts/TF2secondary.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'TF2Build';
    src: url('./fonts/tf2build.ttf') format('truetype');
    font-display: swap;
}

@font-face {
    font-family: 'TF2Professor';
    src: url('./fonts/tf2professor.ttf') format('truetype');
    font-display: swap;
}

body {
    font-family: Verdana, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'TF2', Verdana, sans-serif;
}

.text-logo {
    font-family: 'TF2Build', Verdana, sans-serif;
}

.special-link {
    font-family: 'TF2Secondary', Verdana, sans-serif;
    font-size: 1.2em:
}

/* Hero section */

.hero {
    height: 100vh;
    display: flex;
    background: url('./img/bg.webp') no-repeat center center;
    background-size: cover;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}
.hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.2);
     z-index: 1;
}

.hero-content {
    font-family: 'TF2Secondary', Verdana, sans-serif;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

.hero img {
    max-width: 150px;
    margin-bottom: 1em;
}

.hero h1 {
    font-size: 4em;
    margin-bottom: 0;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 1.5em;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        padding: 1rem;
    }
}

.cta-button {
    font-size: 1.2em;
    padding: 0.5em 2em;
}

/* --- */

.disclaimer {
    font-size: 0.8em;
    margin-top: 1em;
}
