/* --- 1. FONTS --- */
@font-face {
    font-family: "RainFont";
    src: url("font/after-a-rain.woff2");
}

@font-face {
    font-family: "Bebas Neue";
    src: url("font/bebas-neue.woff2");
}

/* --- 2. GLOBAL & BODY --- */
body {
    margin: 0;
    background-color: #FCFCF0;
    color: black;
    font-family: "RainFont", cursive;
    text-align: center;
}

.page {
    /* Set to 760px to accommodate the wider Impressum text while looking good for blog posts */
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 20px 80px;
}

/* --- 3. TYPOGRAPHY --- */
h1 {
    font-size: 60px;
    margin: 10px 0;
    font-weight: normal;
}

h2 {
    font-size: 30px;
    margin: 40px 0 10px;
    font-weight: normal;
}

p {
    width: 100%;
    max-width: 750px;
    margin: 14px auto;
    font-size: 23px;
    line-height: 1.45;
}

.bold {
    font-size: 29px;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.5px;
    text-transform: lowercase; /* Keeps the minimalist look consistent */
}

.small {
    font-size: 19px;
    line-height: 1.5;
}

.date {
    font-size: 18px;
    opacity: 0.6;
    margin-bottom: 5px;
}

/* --- 4. LINKS --- */
a {
    color: #ffa505;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.toplink {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
}

/* --- 5. ELEMENTS & LAYOUT --- */
.logo {
    width: 95px;
    height: 95px;
    margin-top: 0px; /* Reset to 0 as requested in later iterations */
    margin-bottom: 10px;
}

hr {
    border: none;
    border-top: 1px solid #000;
    max-width: 640px;
    margin: 28px auto;
}

.post-content {
    margin-bottom: 60px;
    text-align: left; /* Better for reading longer blog content */
}

.center {
    text-align: center;
}

.footerlink {
    margin-top: 40px;
}

video {
  max-width: 100%;
  height: auto;
}