
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #FFFFFF;
    color: #333333;
    margin: 0;
    padding: 0;
}
/* Hero/Header-Bereich */
.hero {
    position: relative;
    background-image: url('../images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-overlay {
    background: rgba(242, 230, 215, 0.8);
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    backdrop-filter: blur(2px);
}
.hero-logo {
    max-height: 120px;
    margin-bottom: 20px;
}
.hero p {
    font-size: 1.2rem;
    color: #6D1F1B;
    margin: 0 auto;
    max-width: 600px;
}
/* Karten */
.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #f7f1ea;
    border: 1px solid #e0d7ca;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
}
.card-style {
    background-color: #f7f1ea;
    border: 1px solid #e0d7ca;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    padding: 2rem;
    height: 100%;
    text-align: center;
}
.card:hover {
    box-shadow: 0 4px 12px rgba(156, 46, 42, 0.2);
}
.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-title {
    color: #9C2E2A;
    font-weight: bold;
}
.card-text {
    color: #333333;
    margin-bottom: 1rem;
}
.card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.card-img-top {
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.btn-custom {
    background-color: #9C2E2A;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 24px;
    transition: background-color 0.2s ease;
}
.btn-custom:hover {
    background-color: #6D1F1B;
}
.btn-secondary {
    background-color: #ccc;
    border: none;
    color: #333;
}
.btn-secondary:hover {
    background-color: #bbb;
}
.bg-soft-beige {
    background-color: #F2E6D7;
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
/* Termine Liste */
.termine-liste .list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.termine-liste .list-group-item h5 {
    margin-bottom: 0.25rem;
}
/* Modals */
.modal-content {
    border-radius: 16px;
    border: none;
    background-color: #fffaf7;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.modal-header, .modal-footer {
    background-color: #f2e6d7;
    border: none;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}
.modal-title {
    color: #9C2E2A;
    font-weight: 700;
}
.modal-footer {
    border-top: 1px solid #e0d7ca;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}
.modal-body label {
    color: #6D1F1B;
    font-weight: 500;
}
.modal-body input,
.modal-body textarea {
    border-radius: 12px;
    border: 1px solid #ddd;
}
/* Social Media */
.btn-custom img {
    filter: brightness(0) invert(1);
}
/* Termine */
.termin-entry {
    min-height: 72px;
}
/* Footer */
footer {
    background-color: #333333;
    color: #FFFFFF;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}