/* CI FARBEN */
:root {
    --primary-green: #1aa538;
    --primary-yellow: #f8e924;
    --text-dark: #1a1a1a;
    --text-muted: #57534e;
    --bg-light: #f5f5f4;
    --white: #ffffff;
}

/* TYPOGRAFIE (System-Fallbacks für Boecklin/Newton Look) */
body {
    font-family: 'Lora', 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    background-color: var(--bg-light);
}

h1, h2, h3, .brand-name {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    margin-top: 0;
}

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

/* HEADER */
.site-header {
    background: var(--white);
    border-bottom: 1px solid #e7e5e4;
    position: relative;
}

.coastline-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--text-dark);
}

.main-logo {
    height: 80px;
    width: auto;
}

.logo-text {
    border-left: 1px solid #d6d3d1;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
}

.brand-name { font-size: 1.5rem; line-height: 1; }
.brand-sub { font-size: 1.2rem; color: var(--text-muted); }

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 6px;
    transition: 0.2s;
}

.main-nav a:hover, .main-nav a.active {
    background-color: var(--primary-green);
    color: var(--white);
}

/* HERO SECTION */
.hero {
    background-color: #1c1917;
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.hero-content { max-width: 700px; }
.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
.badge { background: var(--primary-yellow); color: #000; padding: 4px 12px; font-weight: bold; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
.hero p { font-size: 1.25rem; opacity: 0.9; margin-bottom: 40px; }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-primary { background-color: var(--primary-green); color: var(--white); }
.btn-primary:hover { background-color: #168a2e; transform: translateY(-2px); }
.btn-secondary { border: 1px solid rgba(255,255,255,0.3); color: var(--white); margin-left: 10px; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* CARDS */
.highlights { padding: 80px 0; }
.section-intro { text-align: center; margin-bottom: 50px; }
.divider { width: 60px; height: 4px; background: var(--primary-yellow); margin: 20px auto; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    padding: 40px;
    background: var(--white);
    border-radius: 12px;
    border-bottom: 4px solid var(--primary-green);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.card-yellow { border-bottom-color: var(--primary-yellow); }

/* FOOTER */
.site-footer { margin-top: 80px; }
.skyline-bg { line-height: 0; }
.footer-dark { background: #000; color: #a8a29e; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-dark h4 { color: var(--white); margin-bottom: 20px; }
.footer-dark a { color: inherit; text-decoration: none; transition: 0.2s; }
.footer-dark a:hover { color: var(--primary-yellow); }
.footer-dark ul { list-style: none; padding: 0; }
.footer-dark li { margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid #292524; padding-top: 30px; font-size: 0.8rem; text-align: center; }

/* CONTACT PAGE SPECIFICS */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 80px 0; }
.contact-info-box { background: var(--primary-green); color: white; padding: 40px; border-radius: 20px; }
.contact-form { background: white; padding: 40px; border-radius: 20px; border: 1px solid #e7e5e4; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: bold; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; border: 1px solid #d6d3d1; border-radius: 6px; box-sizing: border-box; }
.btn-submit { background: var(--text-dark); color: white; border: none; cursor: pointer; width: 100%; padding: 15px; font-weight: bold; border-radius: 6px; }

/* CONTENT PAGES */
.content-page { padding: 80px 0; max-width: 800px; margin: 0 auto; }
.content-page h2 { font-size: 2.5rem; margin-bottom: 30px; }
.board-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.board-card { background: white; padding: 20px; text-align: center; border-radius: 10px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
.board-card strong { color: var(--primary-green); display: block; margin-bottom: 5px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .header-content { flex-direction: column; gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .board-grid { grid-template-columns: 1fr; }
}