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

/* Hintergrund Bild A */
body {
    background-image: url("https://lunar-reverie.neocities.org/LR_headerbackground01.png");
    background-repeat: repeat-y;
    background-position: top left;
    background-size: auto;
    font-family: Arial, sans-serif;
}

/* Header mit Bild B */
.header {
    position: relative;

    width: 100%;
    height: 600px;
    background-image: url("https://lunar-reverie.neocities.org/LR_headerback01.png");
    background-repeat: no-repeat;
    background-position: top left;
    background-size: contain;
}

/* Wrapper für Nav + Content */
.layout {
    position: absolute;
    top: 310px;
    left: 180px;

    display: flex;
    justify-content: center;
    gap: 30px;

/* Navigation links */
.nav {
    width: 150px;
    min-height: 100vh;
    background: transparent;
    padding: 15px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-bottom: 10px;
}

.nav-links a {
    display: block;
    width: 100%;
    padding: 6px 10px;

    background-color: #fff9fc;
    color: #1e0000;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;

    border-radius: 3px;
    transition: background-color 0.2s, color 0.2s;
}

.nav-links a:hover {
    background-color: #1e0000;
    color: #fff9fc;
}

/* Content rechts */
.main {
    width: 400px;
    min-height: 100vh;
    background: transparent;
    font-family: Arial, sans-serif;   /* Arial gesetzt */
    padding: 20px;
}

/* Datumzeile oben rechts */
.date-line {
    text-align: right;
    margin-bottom: 2px;       /* enger zum Untertitel */
}

.date-line span {
    background-color: #fff9fc;
    color: #1e0000;
    font-size: 18px;
    font-weight: bold; 
    padding: 2px 4px;          /* etwas kompakter */
    line-height: 16px;
    border-radius: 2px;
}

/* Untertitel rechtsbündig */
.subtitle {
    text-align: right;
    font-size: 10px;
    color: #1e0000;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 4px;         /* enger zum Haupttext */
}

/* Haupttext linksbündig */
.text {
    font-size: 10px;
    color: #000000;
    line-height: 1.4;           /* dichter, aber noch lesbar */
    text-align: left;
}
