/* --- GLOBAL --- */
body {
    font-family: "Georgia", serif;
    margin: 0;
    padding: 0;
    background: #f4f2f7;
    color: #1a1a1a;
    line-height: 1.7;
}

/* --- HEADER / LOGO --- */
header {
    background: linear-gradient(135deg, #0d1b2a, #6a4c93);
    color: #f4f2f7;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Sternennebel */
header::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url('images/stars.png');
    opacity: 0.25;
    pointer-events: none;
}

/* Wortmarke */
header h1 {
    margin: 0;
    font-size: 3em;
    letter-spacing: 3px;
    text-shadow: 0 0 18px rgba(233, 184, 212, 0.7);
}

/* Navigation */
nav {
    margin-top: 25px;
}

nav a {
    color: #f4f2f7;
    margin: 0 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.15em;
}

nav a:hover {
    color: #e9b8d4;
}

/* --- MAIN --- */
main {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

h2 {
    color: #6a4c93;
    font-size: 1.9em;
    margin-top: 40px;
}

/* Buttons */
.button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 22px;
    background: #6a4c93;
    color: #f4f2f7;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.button:hover {
    background: #8b6ab8;
}

/* --- ABOUT PAGE --- */
.about-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.portrait {
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 0 18px rgba(106, 76, 147, 0.4);
}

/* --- BOOKS --- */
.book {
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.book img {
    max-width: 180px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
}

/* --- BLOG --- */
ul.blog-list {
    list-style: none;
    padding: 0;
}

ul.blog-list li {
    margin-bottom: 15px;
}

ul.blog-list a {
    color: #6a4c93;
    text-decoration: none;
    font-weight: bold;
}

ul.blog-list a:hover {
    text-decoration: underline;
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 25px;
    background: #0d1b2a;
    color: #f4f2f7;
    margin-top: 60px;
    font-size: 0.9em;
}
