/* =========================
   Reset & Base
========================= */
* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

/* =========================
   Body Background
========================= */
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    overflow: hidden;
}

/* =========================
   App Wrapper
========================= */
#app {
    position: relative;
    width: 100%;
    height: 100%;
}

/* =========================
   Canvas (Three.js Cursor)
========================= */
#canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* =========================
   Hero Overlay
========================= */
.hero {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    color: #ffffff;

    /* verhindert Klicks auf den Hintergrund */
    pointer-events: none;
}

/* =========================
   Logo
========================= */
.logo {
    width: 520px;
    height: auto;
    margin-bottom: 0px;

    /* schwarzes SVG → weiß */
    filter: brightness(0) invert(1);
}


/* =========================
   Hero Text
========================= */
.hero-text {
    margin-top: 50px;
    font-size: 18px;
    font-weight: 400;
    color: #bfbfbf;
    opacity: 0.9;
    letter-spacing: 0.01em;
}

/* Link Styling */
.hero-text a {
    color: #bfbfbf;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;

    pointer-events: auto;

    transition: opacity 0.15s ease;
}

.hero-text a:hover,
.hero-text a:focus-visible {
    opacity: 0.75;
}

/* =========================
   Copyright
========================= */
.copyright {
    margin-top: 0px;
    font-size: 11px;
    color: #ffffff;
    opacity: 0.45;
    letter-spacing: 0.04em;
}


/* =========================
   Mobile Tweaks
========================= */
@media (max-width: 600px) {


    .logo {
        width: 220px;
    }
}
