:root {
    --primary: #445628;
    --secondary: #e5ead6;
    --text: #2b2b2b;
    --accent: #748a50;
    --mid: #8a9e6a;
    --dark: #303e1c;
    --white: #ffffff;
}

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

@font-face {
    font-family: 'Delius';
    src: url('Delius-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

h1, h2, h3 {
    font-family: 'Delius', cursive;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.column {
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background: var(--secondary);
    padding: 20px 0;
}

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

header h1 {
    margin-bottom: 4px;
}

header h2 {
    font-size: 1rem;
    font-weight: normal;
}

/* Hero */
.hero {
    background: var(--secondary);
    padding: 0;
}

.hero img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-text {
    padding: 40px 0;
}

/* Sections */
section {
    padding: 60px 0;
}

.alt {
    background: var(--mid);
}

h2 {
    margin-bottom: 20px;
    color: var(--dark);
}

h3 {
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
}

blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    border-left: 4px solid var(--accent);
    background: #c8d4b0;
    font-style: italic;
    font-size: 1.5rem;
}

blockquote span {
    display: block;
    margin-top: 10px;
    font-style: normal;
    font-size: 0.9rem;
    color: #444;
}

/* About */
.about {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 6px;
}

/* Toggle */
#toggle {
    display: none;
}

.more-text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.more-text .more-text-first-p {
    margin: 20px 0 0;
    padding: 20px 0 0;
    border-top: 1px solid #aaa;
}

#toggle:checked ~ .more-text {
    max-height: 2000px;
}

.toggle-label {
    display: inline-block;
    margin-top: 10px;
    cursor: pointer;
    color: var(--primary);
}

.less {
    display: none;
}

#toggle:checked ~ .toggle-label .more {
    display: none;
}

#toggle:checked ~ .toggle-label .less {
    display: inline-block;
}

/* Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: var(--white);
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #c0ceaa;
}

/* CTA */
.cta {
    text-align: center;
    margin-top: 40px;
}

.button {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.15s ease, color 0.15s ease;
}

.button:hover {
    background: #e8b800;
    color: var(--dark);
}

/* Impressum / Datenschutz */
.impressum-page {
    padding: 60px 0;
}

.impressum-page h2 {
    margin-bottom: 30px;
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 20px 0;
}

.footer-minimal {
    text-align: center;
}

.footer-minimal a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0 10px;
}

.footer-minimal a:hover {
    text-decoration: underline;
}

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

.active {
    color: var(--accent);
}

/* Responsive */
@media (max-width: 800px) {
    .about {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}
