:root{
--bg: #A3C9FF; /* Nutzerwunsch */
--card: #ffffff;
--text: #222;
--muted: #555;
--accent: #5a5adf;
}
*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family:Futura, 'Trebuchet MS', Arial, sans-serif;background:linear-gradient(180deg,var(--bg),#f6f9ff);color:var(--text);}
.container{max-width:1100px;margin:0 auto;padding:1rem}
.header{background:transparent;padding:2rem 0;text-align:left}
.brand{display:flex;align-items:center;gap:1rem}
.logo{width:72px;height:72px;border-radius:12px;background:linear-gradient(135deg,#fff5,#ffffff88);display:flex;align-items:center;justify-content:center;font-weight:700;font-size:22px;box-shadow:0 4px 14px rgba(0,0,0,0.08)}
.site-title{font-size:1.6rem;margin:0}
.slogan{font-family:'Shadows Into Light', cursive;font-size:1.05rem;color:var(--muted)}
nav.main-nav{margin-top:1rem}
nav a{margin-right:1rem;text-decoration:none;color:var(--text);font-weight:600}
.card{background:var(--card);padding:1.25rem;border-radius:12px;box-shadow:0 6px 24px rgba(20,30,60,0.06);}
.hero{display:grid;grid-template-columns:1fr 360px;gap:1rem;align-items:center}
.hero p{font-size:1.05rem;line-height:1.5}
.cta{display:inline-block;margin-top:0.75rem;padding:0.6rem 1rem;border-radius:8px;background:var(--accent);color:white;text-decoration:none;font-weight:700}
.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:0.75rem}
.gallery-grid img{width:100%;height:220px;object-fit:cover;border-radius:10px}
.gallery-grid-one{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:0.75rem}
.gallery-grid-one img{width:220px;height:100%;object-fit:cover;border-radius:10px}
.section{margin:2rem 0}
.contact-grid{display:grid;grid-template-columns:1fr 360px;gap:1rem;align-items:start}
.map-embed{width:100%;height:300px;border-radius:10px;border:0}
.footer{padding:1.25rem 0;text-align:center;color:var(--muted);font-size:0.9rem}
.unterschrift{font-family:'Shadows Into Light', cursive;font-size:1.5rem;color: darkblue}

.small{font-size:0.95rem;color:var(--muted)}
@media (max-width:900px){
.hero{grid-template-columns:1fr}
.contact-grid{grid-template-columns:1fr}
  
}