body {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.7;
    color: #222;
    background: #f8fafc;
    letter-spacing: 0.5px;
    font-size: 1.1em;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: none;
}

/* Google Fonts Import für Playfair Display */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');

.main-header {
    background: linear-gradient(135deg, #1c1c1c 0%, #aeaeae 100%);
    color: #fff;
    border-bottom: 6px solid #ffda11;
}

.main-footer {
    background: #000;
    color: #1c1c1c;
    border-top: 6px solid #ffda11;
}

.section-spacing {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    border-bottom: 2px solid #e0e7ef;
    background: #fff;
    box-shadow: 0 2px 16px rgba(79, 140, 255, 0.07);
    border-radius: 16px;
}

h1 {
    color: #fff;
}

h2,
h3,
h4 {
    color: #000;
}

.btn-primary {
    background: linear-gradient(135deg, #aeaeae 0%, #1c1c1c 100%);

    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(79, 140, 255, 0.12);
    transition: background 0.2s, color 0.2s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1c1c1c 0%, #aeaeae 100%);

    color: #1e3c72;
}

.bg-yellow {
    background-color: #1c1c1c !important;
}

.text-dark {
    color: #1e3c72 !important;
}

footer a {
    color: #1c1c1c;
    text-decoration: underline;
}

footer a:hover {
    color: #fff;
}

.alert-info {
    background: #eaf6ff;
    color: #1e3c72;
    border-color: #aeaeae;

}

.card {
    border: 2px solid #e0e7ef;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(79, 140, 255, 0.08);
}

.card-body {
    background: #fff;
}

input,
select,
textarea {
    border: 2px solid #aeaeae !important;

    border-radius: 8px !important;
    background: #f8fafc !important;
    color: #222 !important;
}

.is-invalid {
    border-color: #dc3545 !important;
}

@media (max-width: 768px) {
    .section-spacing {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
        border-radius: 8px;
    }

    .main-header {
        font-size: 1.2em;
    }

    /* Bild auf kleinen Bildschirmen anpassen */
    .img-fluid {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
    }

    /* Zusätzliches Padding für Container auf mobilen Geräten */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}