/* Grundkonfiguration */
:root {
    --primary-font: 'Montserrat', sans-serif;
    --title-font: 'Dancing Script', cursive;
    --text-color: #333333;
    --bg-light: #f8f9fa;
    --accent-color: #8c6b51;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header & Navigation */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo a {
    font-family: var(--title-font);
    font-size: 2.2rem;
    color: #000000;
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #444;
    font-family: var(--primary-font);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.main-nav a.active, .main-nav a:hover {
    color: var(--accent-color);
}

/* Hero & Container */
.hero-banner {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text h1 {
    font-family: var(--title-font);
    font-size: 3.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.content-narrow {
    max-width: 650px;
}

.text-center { text-align: center; }
.highlight { font-size: 1.2rem; font-weight: bold; }

/* Event Cards */
.event-card {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 6px;
}

.event-date {
    font-weight: bold;
    color: var(--accent-color);
}

.badge {
    background: #eef4f8;
    color: #2b6cb0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

/* Galerie Grids */
.gallery-grid {
    display: flex;
    gap: 20px;
}

.grid-col { flex: 1; }
.sub-grid { display: flex; gap: 10px; margin-top: 10px; }
.img-responsive { max-width: 100%; height: auto; border-radius: 4px; }

/* Formular */
.contact-form { margin-top: 30px; }
.form-row { display: flex; gap: 20px; }
.form-group { margin-bottom: 15px; flex: 1; display: flex; flex-direction: column; }
.form-group label { margin-bottom: 5px; font-weight: 600; }
.form-group input, .form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.btn-submit {
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    text-transform: uppercase;
}

.btn-submit:hover { opacity: 0.9; }

.alert { padding: 15px; margin-bottom: 20px; border-radius: 4px; }
.alert-success { background: #d4edda; color: #155724; }
.alert-danger { background: #f8d7da; color: #721c24; }

/* Footer */
.site-footer {
    background: #2a2a2a;
    color: #a1a1a1;
    padding: 30px 0;
    margin-top: 60px;
    text-align: center;
}

.footer-links a { color: #ffffff; text-decoration: none; margin: 0 10px; }
.footer-links a:hover { text-decoration: underline; }
.copyright { margin-top: 15px; font-size: 0.85rem; }

/* Responsive Layout */
@media (max-width: 768px) {
    .header-container, .gallery-grid, .form-row {
        flex-direction: column;
    }
    .main-nav ul { margin-top: 15px; }
}
/* Produkt-Galerie CSS Layout */
.product-gallery-grid {
    display: flex;
    gap: 20px;
}

.gallery-col-main, .gallery-col-side {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gallery-row {
    display: flex;
    gap: 10px;
}

.gallery-item {
    flex: 1;
}

.intro-paragraph {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .product-gallery-grid {
        flex-direction: column;
    }
}
/* Layout für Termin-Karten mit Bild */
.media-card {
    display: flex;
    gap: 20px;
    align-items: center;
}

.event-text {
    flex: 1;
}

.event-image {
    flex: 1;
    max-width: 400px;
}

.btn-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Layout für Kontaktseite mit Bild */
.contact-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.contact-col {
    flex: 1;
}

.contact-image img {
    border-radius: 6px;
    width: 100%;
}

/* Mobile Darstellung */
@media (max-width: 768px) {
    .media-card, .contact-grid {
        flex-direction: column;
    }
    
    .event-image {
        max-width: 100%;
        width: 100%;
    }
}