﻿/* Grundfarben und Schriften */
:root {
    --color-bg: #fdfcfb; /* Sehr helles, warmes Weiß */
    --color-bg-light: #f3f0eb; /* Leinen/Kalk-Ton für Sektionen */
    --color-text: #2b2b2b; /* Dunkles Schiefergrau für gute Lesbarkeit */
    --color-accent: #8b5a4b; /* Erdiger Ton/Terrakotta */
    --font-head: 'Lora', serif; /* Traditionelle Serifenschrift */
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background-color: var(--color-bg); color: var(--color-text); line-height: 1.7; }
.container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }
h2 { font-family: var(--font-head); font-size: 2.2rem; margin-bottom: 15px; color: var(--color-accent); font-weight: 400;}
.subtitle { margin-bottom: 30px; font-style: italic; color: #555; }

/* Navigation */
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 5%; background-color: rgba(253, 252, 251, 0.95); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 5px rgba(0,0,0,0.05); flex-wrap: wrap;}
.logo { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--color-text); line-height: 1.2; text-transform: uppercase; letter-spacing: 1px;}
.logo span { font-size: 0.8rem; color: var(--color-accent); font-weight: 400; letter-spacing: 2px;}
.nav-links { list-style: none; display: flex; gap: 25px; }
.nav-links a { text-decoration: none; color: var(--color-text); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }
.nav-links a:hover { color: var(--color-accent); }

@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 15px; text-align: center;}
    .nav-links { gap: 15px; flex-wrap: wrap; justify-content: center;}
}

/* Hero (Titelbild Bereich) */
.hero { 
    height: 70vh; 
    min-height: 400px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    padding: 20px;
    
    /* Hier ist die Änderung: Dein Bild als Hintergrund (center/cover zentriert es und füllt die Breite aus) */
    background: linear-gradient(rgba(253, 252, 251, 0.6), rgba(253, 252, 251, 0.9)), 
				url('Titelbild.jpg') center/cover no-repeat; 
}

.hero h1 { font-family: var(--font-head); font-size: 3rem; color: var(--color-accent); margin-bottom: 20px; font-weight: 400;}
.hero p { font-size: 1.2rem; max-width: 600px; margin: 0 auto 30px auto; color: #444;}
.btn { display: inline-block; background-color: var(--color-accent); color: #fff; padding: 12px 30px; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; border: none; cursor: pointer; transition: background 0.3s; }
.btn:hover { background-color: #6a4438; }

/* Sektionen Allgemein */
.section { padding: 80px 0; }
.bg-light { background-color: var(--color-bg-light); }

/* Werkstatt Layout (Text & Bild nebeneinander) */
.about-flex { display: flex; gap: 40px; align-items: center; }
.about-text { flex: 1; }
.about-text p { margin-bottom: 15px; }
.about-image { flex: 1; }
.about-image img { width: 100%; height: auto; border-radius: 4px; box-shadow: 0 10px 20px rgba(0,0,0,0.08); }

@media (max-width: 768px) {
    .about-flex { flex-direction: column; }
}

/* Galerie Grid */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; }
.gallery-grid img { width: 100%; height: 250px; object-fit: cover; border-radius: 4px; transition: transform 0.4s ease; cursor: pointer;}
.gallery-grid img:hover { transform: scale(1.03); z-index: 2; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Kalender */
.calendar-container { background: #fff; padding: 15px; border-radius: 4px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }

/* Footer */
footer { text-align: center; padding: 30px; background-color: #2b2b2b; color: #999; font-size: 0.85rem; letter-spacing: 1px;}

/* Das Raster für die symmetrische Anordnung */
.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Teilt den Platz in 2 exakt gleiche Spalten (50% / 50%) */
    gap: 40px; /* Schöner, großzügiger Abstand zwischen den beiden Boxen */
    margin-bottom: 40px;
}

/* Das Design der einzelnen Boxen */
.info-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px; /* Leicht abgerundete Ecken */
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Edler, weicher Schatten */
    height: 100%; /* Sorgt dafür, dass beide Boxen exakt gleich hoch sind, auch wenn links mehr Text steht */
}

.info-box p { 
    margin-bottom: 10px; 
}

/* Sehr wichtig: Auf dem Smartphone (unter 768px Breite) sollen sie untereinander stehen, sonst wird es unlesbar! */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr; /* Ändert das Raster auf 1 Spalte */
        gap: 20px; /* Etwas weniger Abstand auf dem Handy */
    }
}

/* --- Kontaktformular Bereich (Schreiben Sie uns) --- */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); /* Gleicher weicher Schatten wie bei den Boxen */
    max-width: 1000px; /* Macht das Formular schön breit, aber nicht randlos */
    margin: 0 auto; /* Zentriert die Formular-Box perfekt auf der Seite */
}

.contact-form-wrapper h3 { 
    text-align: center; 
    font-family: var(--font-head);
    font-size: 1.8rem;
    margin-bottom: 10px; 
    color: var(--color-text);
}

.contact-form-wrapper > p { 
    text-align: center; 
    margin-bottom: 30px; 
    color: #555;
}

/* Die Eingabefelder */
.form { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.form input, .form textarea { 
    width: 100%; 
    padding: 15px; 
    border: 1px solid #ddd; 
    border-radius: 4px; 
    font-family: var(--font-body); 
    font-size: 1rem;
    background-color: #fafafa; 
    transition: all 0.3s;
}

/* Hebt das Feld farblich hervor, wenn man reinklickt */
.form input:focus, .form textarea:focus { 
    outline: none; 
    border-color: var(--color-accent); 
    background-color: #fff;
}

