/* DESIGN V2 - CREME / BEIGE THEME */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&family=Roboto:wght@300;400;500&display=swap');

* { box-sizing: border-box; }

/* HINTERGRUNDFARBE: Hier ist das Creme-Weiß (#fdfbf7) */
body { 
    margin: 0; 
    padding: 0; 
    font-family: 'Roboto', sans-serif; 
    color: #444; 
    background-color: #fdfbf7; 
    line-height: 1.7; 
}

h1, h2, h3, h4 { 
    font-family: 'Playfair Display', serif; 
    font-weight: 500; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: #222; 
    margin-top: 0; 
}

a { text-decoration: none; color: inherit; transition: color 0.3s; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header mit feiner Linie */
header { padding: 25px 0; border-bottom: 1px solid #e5e5e5; background-color: #fdfbf7; }
.navbar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo a { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 600; color: #111; text-decoration: none; line-height: 1.2; display:block; }

nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 30px; }
nav ul li a { font-size: 0.9rem; text-transform: uppercase; color: #666; font-weight: 400; letter-spacing: 0.5px; }
nav ul li a:hover, nav ul li a.active { color: #000; }

/* Buttons: Schlicht und modern */
.btn { display: inline-block; background-color: #2c2c2c; color: #fff; padding: 14px 32px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; border: 1px solid #2c2c2c; transition: all 0.3s ease; cursor: pointer; }
.btn:hover { background-color: transparent; color: #2c2c2c; }

/* Hero Section */
.hero { display: flex; align-items: center; justify-content: space-between; padding: 80px 0; gap: 60px; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 3.2rem; line-height: 1.15; margin-bottom: 25px; color: #1a1a1a; }
.hero-text p { font-size: 1.05rem; color: #555; margin-bottom: 35px; max-width: 480px; }
.hero-image { flex: 1.2; }
.hero-image img { width: 100%; height: auto; display: block; object-fit: cover; box-shadow: 0 20px 40px -10px rgba(0,0,0,0.1); }

/* Sections */
.section { padding: 90px 0; }
/* HINTERGRUNDFARBE 2: Ein etwas dunkleres Sand-Beige für Abwechslung (#f4f1ea) */
.bg-light { background-color: #f4f1ea; } 
.section-title { font-size: 2.2rem; margin-bottom: 60px; text-align: left; border-bottom: 1px solid #dcdcdc; padding-bottom: 25px; }

/* Grid Layouts */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 50px; }
.card h3 { font-size: 1.3rem; margin-bottom: 15px; border-left: 2px solid #333; padding-left: 15px; }
.card p { color: #666; font-size: 0.95rem; }

/* Kontakt Grid */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info p { margin-bottom: 12px; font-size: 1rem; color: #555; }
.contact-info h3 { margin-bottom: 25px; font-size: 1.4rem; }
.map-container iframe { filter: grayscale(100%); transition: filter 0.3s; } /* Karte schwarz-weiß für edlen Look */
.map-container iframe:hover { filter: grayscale(0%); }

/* Formular */
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; letter-spacing: 0.5px; }
.form-group input, .form-group textarea { width: 100%; padding: 15px; border: 1px solid #ccc; background: #fff; font-family: inherit; font-size: 1rem; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #888; }

/* Footer */
footer { background-color: #1a1a1a; color: #fff; padding: 60px 0; margin-top: auto; border-top: 5px solid #333; }
footer p { margin: 8px 0; color: #999; font-size: 0.9rem; }
footer a { color: #fff; text-decoration: none; border-bottom: 1px solid #555; padding-bottom: 2px; }
footer a:hover { color: #ccc; border-color: #ccc; }

@media (max-width: 900px) { 
    .hero { flex-direction: column-reverse; padding: 50px 0; text-align: center; } 
    .hero-text h1 { font-size: 2.5rem; } 
    .hero-text p { margin: 0 auto 30px auto; }
    .navbar { flex-direction: column; gap: 25px; text-align: center; } 
    .contact-grid { grid-template-columns: 1fr; } 
}