/* 1. HET LADEN VAN JOUW EIGEN FONT */
@font-face {
    font-family: 'Monograph';
    src: url('monograph-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    /* Gebruik hier je eigen font */
    font-family: 'Monograph', sans-serif;

    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Jouw kleuren */
    background-color: #faf0e6;
    color: #4d2a1d;

    text-align: center;
}

/* Middenstuk */
.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo {
    max-width: 500px;
    /* Groter logo op desktop, nog steeds responsief */
    width: 100%;
    /* Zorgt dat hij op mobiel niet buiten beeld valt */
    height: auto;
    margin-bottom: 14px;
}

h1 {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-top: 40px;
}

.subtitle {
    font-size: 1.05rem;
    letter-spacing: 1px;
    margin-top: 8px;
    opacity: 0.9;
}

/* Footer onderaan */
footer {
    padding-bottom: 40px;
}

.socials {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.socials a {
    text-decoration: none;
    color: #4d2a1d;
    /* Dezelfde bruine kleur als de tekst */
    font-size: 1.2rem;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.8;
}

.socials a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

/* RESPONSIVE: Voor mobiele telefoons */
@media (max-width: 480px) {
    h1 {
        font-size: 1.65rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .logo {
        max-width: 380px;
    }

    .socials {
        gap: 20px;
    }
}