/* Allgemeine Stile */
body {
    background-color: #fafafa;
    font-family: 'Nunito', sans-serif;
    color: #444;
}

/* Navigation */
.navbar-custom {
    position: fixed;
    align-items: center;
    justify-content: space-between; /* Logo links, Menü rechts */
    width: 100%;
    padding: 15px 50px; /* Abstand für Feinanpassung */
    background-color: #f8f9fa;
    position: fixed;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    height: auto;
    left: 70px; 
}

.blog-btn {
    background-color: #9CAF88;
    color: #fff;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border: none;
}

.blog-btn:hover {
    background: #A7C17A;
}

/* Blog-Container */
.blog-container {
    max-width: 800px;
    margin: 120px auto 50px;
    padding: 20px;
}

/* Papier-Stil */
/* Rahmen innerhalb des Blog-Papers */
.blog-paper {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 18px;
    line-height: 1.7;
    position: relative; /* Damit das Pseudo-Element sich daran orientiert */
}

/* Der innere Rahmen */
.blog-paper::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 2px solid #E0E0E0; /* Farbe des Rahmens */
    pointer-events: none; /* Damit es keine Klicks blockiert */
}


/* Blog-Titel */
.blog-paper h1 {
    font-size: 32px;
    color: #9CAF88;
    margin-bottom: 10px;
}

/* Blog-Metadaten */
.blog-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

/* Blog-Bild */
.blog-image {
    width: 100%;
    border-radius: 8px;
    margin: 20px 0;
}

/* Überschriften */
.blog-paper h2 {
    font-size: 26px;
    color: #9CAF88;
    margin-top: 20px;
}

/* Liste */
.blog-paper ul {
    list-style: none;
    padding-left: 0;
}

.blog-paper ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.blog-paper ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #9CAF88;
    font-weight: bold;
}

/* Footer */
.footer {
    font-size: 16px;
    font-weight: 600;
    padding: 20px 0;
}

.footer-link {
    color: #9CAF88;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
}

.footer-link:hover {
    color: #A7C17A;
    text-decoration: underline;
}


