/* 1. SCHRIFTEN IMPORT (TTF) */
@font-face {
    font-family: 'Cambo';
    src: url('assets/fonts/cambo.ttf') format('truetype');
    font-weight: normal;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('assets/fonts/ibm-plex-mono.ttf') format('truetype');
    font-weight: normal;
}

/* 2. BASIS STYLING */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    background-color: #ffffff;
}

body {
    /* DAS PUNKTERASTER */
    /* 0.07 ist die Deckkraft (sehr hell). 1px ist die Punktgröße. */
    background-image: radial-gradient(rgba(0, 0, 0, 0.07) 1px, transparent 1px);
    background-size: 30px 30px; /* Abstand der Punkte */
    background-attachment: fixed;
    
    display: flex;
    flex-direction: column;
    color: #1a1a1a;
}

/* 3. HEADER (Oben Links) */
.top-nav {
    position: fixed;
    top: 50px;
    left: 50px;
    display: flex;
    align-items: flex-start;
    z-index: 100;
}

.logo {
    height: auto;
    width: 200px; /* Breite anpassen, bis es wie im Screenshot aussieht */
    display: block;
}

.vertical-divider {
    width: 1px;
    height: 60px; /* Länge der Linie zwischen Logo und Text */
    background-color: #1a1a1a;
    margin: 0 25px;
}

.sub-header-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

/* 4. HAUPTINHALT (Mitte) */
.center-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.center-content h1 {
    font-family: 'Cambo', serif;
    font-size: 46px; /* Größe laut Screenshot */
    font-weight: normal;
    line-height: 1.4;
    color: #222;
}

/* 5. FOOTER (Unten) */
.bottom-nav {
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
    text-align: center;
}

.bottom-nav a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 14px;
    text-decoration: none;
    color: #1a1a1a;
    transition: opacity 0.3s;
}

.bottom-nav a:hover {
    opacity: 0.6;
}

/* RESPONSIVE ANPASSUNG (Für Handys) */
@media (max-width: 600px) {
    .top-nav {
        left: 20px;
        top: 30px;
    }
    .center-content h1 {
        font-size: 32px;
    }
    .logo {
        width: 140px;
    }
}