/* Framer-geïnspireerd design - Donkere achtergrond met radial gradient */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
    --blue-bright: #0066ff;
    --blue-dark: #001a33;
    --black: #000000;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.7);
}

html, body {
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: 
        radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.03) 1px, transparent 0),
        radial-gradient(ellipse at center top, var(--blue-bright) 0%, var(--blue-dark) 40%, var(--black) 100%);
    background-size: 40px 40px, 100% 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow-x: hidden;
}


main {
    text-align: center;
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
    margin: 0 auto 3rem;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    opacity: 1;
}

.subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    max-width: 700px;
    opacity: 0.95;
}

.address {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.address a {
    color: var(--text-muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.address a:hover {
    color: var(--text-light);
    opacity: 1;
}

.location-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.address a:hover .location-icon {
    opacity: 1;
}

.subtitle a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.subtitle a:hover {
    opacity: 0.8;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

footer {
    margin-top: 6rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

footer p {
    color: var(--text-muted);
    font-size: 0.875rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding: 1.5rem;
    }

    .logo {
        height: 45px;
        margin-bottom: 2.5rem;
    }

    .subtitle {
        font-size: 1.125rem;
        line-height: 1.7;
    }

    .address {
        font-size: 0.9375rem;
    }

    footer {
        margin-top: 5rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 1rem;
    }

    .logo {
        height: 40px;
        margin-bottom: 2rem;
    }

    .subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .address {
        font-size: 0.875rem;
    }

    footer {
        margin-top: 4rem;
    }

    footer p {
        font-size: 0.8125rem;
    }
}

/* Focus states */
a:focus-visible {
    outline: 2px solid var(--text-light);
    outline-offset: 4px;
    border-radius: 4px;
}
