:root{
  --bg: #ffffff;
  --text: #111827;
  --muted: #374151;
  --cream: #f6f1e6;
  --cream2:#f3eee3;
  --green:#0f3b2e;
  --line: rgba(17, 24, 39, 0.08);
  --radius: 22px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:var(--bg); color:var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
a{ color:inherit; text-decoration:none; }
.container{ width:min(1200px, 92%); margin:0 auto; }

/* Header */
.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 28px 0;   /* MEHR HÖHE */
  gap: 24px;
}


.logo{
  font-weight: 800;
  letter-spacing: .6px;
  font-size: 16px;
}
.nav{
  display:flex; align-items:center; gap: 34px;
  font-size: 15px;
}
.nav a{ opacity:.9; }
.nav a:hover{ opacity:1; }
.nav-cta{ font-weight:600; }

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:transparent;
  padding:10px 12px;
  border-radius:12px;
  font-size:18px;
}

/* Hero */
.hero{ padding: 36px 0 44px; }
.hero-card{
  background: var(--cream);
  border-radius: var(--radius);
  padding: 56px 56px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items:center;
}
.hero-text h1{
  margin: 0 0 14px;
  font-size: clamp(30px, 3.6vw, 52px);  /* kleiner & edler */
  line-height: 1.05;
  letter-spacing: -0.02em;
}


.hero-text p{
  margin:0 0 26px;
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 650;
  border: 0;
}

.hero-media{
  display:flex;
  justify-content:center;
}
.hero-image{
  width: min(420px, 40vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* Sections */
.section{ padding: 70px 0; }
.section-cream{ background: var(--cream2); }
.center{ text-align:center; }

.section h2{
  margin:0 0 18px;
  font-size: clamp(34px, 4vw, 56px);
  line-height:1.05;
  letter-spacing:-0.02em;
}
.lead{
  margin: 0 auto 46px;
  max-width: 80ch;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

/* Circles row */
.circle-row{
  display:flex;
  justify-content:center;
  gap: min(56px, 6vw);
  flex-wrap: wrap;
}
.circle{
  width: min(360px, 32vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* Gallery */
.section-head{ margin-bottom: 18px; }
.section-head h3{ margin:0; font-size: 28px; }
.muted{ margin:8px 0 0; color: var(--muted); }

.gallery{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.tile{
  border-radius: 18px;
  min-height: 220px;
  background-size: cover;
  background-position:center;
  background-color:#e5e7eb;
  border: 1px solid var(--line);
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items:start;
}
.contact-list{
  list-style:none;
  padding:0;
  margin: 14px 0 0;
  color: var(--muted);
}
.contact-list li{ margin: 8px 0; }

.form{
  background:#fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
label{ display:block; margin: 12px 0 6px; color: var(--muted); font-size: 13px; text-align:left; }
input, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  outline: none;
  font: inherit;
}
input:focus, textarea:focus{
  border-color: rgba(15, 59, 46, 0.35);
}

/* Footer */
.site-footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color: var(--muted);
}

/* Responsive */
@media (max-width: 980px){
  .hero-card{ padding: 34px 22px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ justify-content:flex-start; }
  .hero-image{ width: min(420px, 86vw); }
  .gallery{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .nav-toggle{ display:block; }
  .nav{
    display:none;
    position:absolute;
    right: 4%;
    top: 70px;
    background:#fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px;
    flex-direction:column;
    gap: 12px;
    min-width: 220px;
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
  }
  .nav.open{ display:flex; }
}
@media (max-width: 560px){
  .gallery{ grid-template-columns: 1fr; }
}
/* --- About (Über uns) --- */
.about-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items:center;
}

.about-text h2{
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.about-points{
  margin: 18px 0 22px;
  display:grid;
  gap: 12px;
}

.about-point{
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
}

.about-point strong{
  display:block;
  font-size: 15px;
  margin-bottom: 4px;
}

.about-point span{
  display:block;
  color: var(--muted);
  line-height: 1.5;
  font-size: 14px;
}

.about-media{
  display:flex;
  justify-content:center;
}

.about-image{
  width: min(420px, 40vw);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  border: 6px solid rgba(255,255,255,0.5);
}

@media (max-width: 980px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-image{ width: min(420px, 86vw); }
}
.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(0,0,0,.28);
  z-index: 999;
}

.whatsapp-float svg{
  width: 28px;
  height: 28px;
}

.whatsapp-float:hover{
  transform: translateY(-3px) scale(1.03);
}
/* Styling für die quadratischen Bilder oben */
.square {
  width: 400px;           /* Breite wie im Screenshot */
  height: 400px;          /* Höhe gleich wie Breite */
  background-size: cover; /* WICHTIG: Damit das Bild den Kasten füllt */
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 4px;     /* Ganz leicht abgerundet für modernen Look */
  display: inline-block;  /* Damit sie nebeneinander stehen */
}

/* Styling für die Galerie-Kacheln unten */
.tile {
  width: 100%;
  aspect-ratio: 1 / 1;    /* Macht die Kacheln quadratisch */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ddd; /* Falls ein Bild fehlt, sieht man eine graue Fläche */
  border-radius: 8px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.gallery-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth; /* Sorgt für das weiche Gleiten */
  gap: 15px;
  scrollbar-width: none;
  width: 100%;
}

.gallery-slider::-webkit-scrollbar { display: none; }

.gallery-slider .tile {
  flex: 0 0 85%; /* Handy: fast volle Breite */
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  scroll-snap-align: center;
}

/* Die Slider-Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 24px;
  padding: 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.prev { left: 10px; }
.next { right: 10px; }

@media (min-width: 1024px) {
  .gallery-slider .tile { flex: 0 0 30%; } /* PC: 3 Bilder nebeneinander */
}
/* Das Bild im Header quadratisch machen */
.hero-image {
  width: 100%;            /* Nutzt die volle Breite des Containers */
  max-width: 450px;       /* Maximale Größe am PC */
  aspect-ratio: 1 / 1;    /* Zwingt das Bild in ein Quadrat */
  background-size: cover; /* Bild füllt das Quadrat perfekt aus */
  background-position: center;
  border-radius: 12px;    /* Leicht abgerundet wie deine Galerie */
  margin: 0 auto;         /* Zentriert das Bild */
}

/* Falls da noch ein alter 'circle' Style stört, überschreiben wir ihn */
.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo img {
  height: 95px;      /* DAS ist die Größe aus deinem Screenshot */
  width: auto;
  display: block;
}



.header-layout{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 48px;
}

.header-brand{
  min-width: 360px;   /* DAS ist der Schlüssel */
}

.header-brand img{
  height: 120px;      /* endlich sichtbar groß */
  width: auto;
  display: block;
}
/* ===== HEADER FIX (FINAL & SAFE) ===== */

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-layout{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 48px;
}

.header-brand{
  min-width: 320px;
}

.header-brand img{
  height: 80px;   /* groß & sichtbar */
  max-width: 320px;
  display: block;
}

/* Mobile */
@media (max-width: 768px){
  .header-layout{
    padding: 16px 48px;
  }

  .header-brand{
    min-width: auto;
  }

  .header-brand img{
    height: 50px;
    max-width:220px;
  }
}
.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
