:root {
    --primary: #1a5c9e;     /* Dunkelblau */
    --accent: #d4af37;      /* Gold */
    --dark: #222222;
    --text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', system-ui, Arial, sans-serif;
    line-height: 1.65;
    color: var(--text);
    background: #fff;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--accent);
}

/* ==================== TOP BAR ==================== */
.top-bar {
    background: var(--primary);     /* Dunkelblau */
    color: white;
    font-size: 0.95rem;
    padding: 12px 0;
    text-align: center;
}

.top-bar a {
    color: white;
}

.top-bar a:hover {
    color: var(--accent);
}

/* ==================== HEADER ==================== */
header {
    background: white;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.logo img {
    height: 48px;           /* verkleinert */
}

nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

nav a {
    color: var(--primary);
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--accent);
}

/* ==================== HERO ==================== */
.hero {
    height: 520px;
    background: url('images/logenhaus.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 70px;
    color: white;
    text-shadow: 0 3px 10px rgba(0,0,0,0.9), 0 3px 6px rgba(0,0,0,0.7);
    width: 100%;
}

.hero-content h1 {
    font-size: 2.9rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
}

/* ==================== MAIN CONTENT ==================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

main {
    padding: 70px 0;
}

h1, h2 {
    color: var(--primary);
}

h1 {
    margin-bottom: 30px;
    font-size: 2.4rem;
}

h2 {
    margin: 50px 0 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--accent);
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: start;
}

.two-columns img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    max-width: 380px;
}

@media (max-width: 900px) {
    .two-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.quote {
    font-style: italic;
    font-size: 1.18rem;
    background: #f9f7f0;
    padding: 40px 35px;
    border-left: 8px solid var(--accent);
    margin: 30px 0;
}

.contact-info {
    margin: 30px 0;
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-container iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

th, td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background: var(--primary);
    color: white;
    font-weight: 600;
}

tr:hover {
    background: #f8f9fa;
}

td:nth-child(1) { width: 110px; }
td:nth-child(2) { width: 90px; }
td:nth-child(4) { width: 80px; }

.calendar-legend {
    margin-top: 40px;
    padding: 25px;
    background: #f9f7f0;
    border-left: 6px solid var(--accent);
    font-size: 0.97rem;
    line-height: 1.7;
}

/* Footer */
footer {
    background: var(--dark);
    color: #bbb;
    padding: 40px 0 25px;
    text-align: center;
    font-size: 0.95rem;
}

footer a {
    color: #ccc;
}

footer a:hover {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .hero { height: 420px; }
    .hero-content h1 { font-size: 2.25rem; }
    .hero-content p { font-size: 1.1rem; }
    nav ul { gap: 16px; }
}