/* Seite & Hintergrundbild */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Raleway", Arial, sans-serif;
    font-weight: 200;
    color: #ffffff;
    background: #000000 url("back.jpg") center center no-repeat;
    background-size: cover;
	font-size: 2rem;
}

/* Overlay-Bildfläche für die Hover-Bilder */
.page-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;           /* nicht anklickbar */
    z-index: 3;                     /* unterhalb des Inhalts, aber vor dem Hintergrund */
    display: flex;
    justify-content: center;        /* horizontal zentriert */
    align-items: flex-end;          /* am unteren Rand ausrichten */
    padding-bottom: 0px;           /* kleiner Abstand vom unteren Rand */
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}

.right-col-top,
.right-col-menu {
    position: relative;
    z-index: 4;              /* Inhalt über dem Hoverbild */
}


/* Bild im Overlay: Originalgröße, optional begrenzen */
.overlay-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Inhalt, zentriert (vertikal & horizontal, 95% Breite) */
.content-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;            /* vertikal zentrieren */
    justify-content: center;        /* horizontal zentrieren */
    position: relative;
}

.content-inner {
    width: 95%;
    margin: 0 auto;
}

/* Links */
a {
    color: #ffffff;
    text-decoration: none;
}

a:visited,
a:active {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    color: #333333;
}
.spalten-linie {
    border: none;
    border-top: 1px solid #ffffff; /* 2px, weiß */
    margin: 0px 0;                 /* kleiner Abstand nach oben und unten */
    width: 100%;                   /* über gesamte Spaltenbreite */
	z-index: 0;  
}

/* Abstand oberer Link zur Linie */
td[valign="bottom"][align="right"] a {
    display: inline-block;
    margin-bottom: 4px;            /* wenig Abstand zur Linie */
}

/* Beispielhafte Navigation */
.link-list {
    margin-top: 4px;  
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
	justify-content: flex-end; /* Menü rechtsbündig */
}

.hover-link {
    font-size: 2rem;
    cursor: pointer;
}
