* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

:root {
  --brand: #6E1217;
}

body {
  background: #ffffff;
  color: #111827;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* Hero */
.hero {
  min-height: 44vh;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 18px 20px;
  text-align: center;
  color: #0b1220;
}

.hero--compact {
  min-height: auto;
}

.muted {
  color: #4b5563;
}

.hero-logo-wrap {
  width: clamp(280px, 46vw, 560px);
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.hero-logo {
  display: block;
  width: 100%;
  margin: 0 auto;
  object-position: center;
  height: auto;
  object-fit: contain;
  background: transparent;
  transform: none;
  /* Remove tiny edge artifacts in the source image (top/left) */
  -webkit-clip-path: inset(2px 0 0 2px);
  clip-path: inset(2px 0 0 2px);
}


.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.hero p {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  opacity: 0.85;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(17,24,39,0.08);
}

.btn:hover {
  filter: brightness(0.95);
}

.btn:active {
  transform: translateY(1px);
}

.btn--small {
  margin-top: 0;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.btn--brand {
  background: var(--brand);
}

.impressum-actions {
  margin-top: 26px;
}

.impressum-actions .btn {
  margin-top: 0;
}

.about {
  text-align: center;
}

/* Sections */
section {
  padding: 32px 20px;
  max-width: 1000px;
  margin: auto;
}

.panel {
  background: #ffffff;
  border: 1px solid #e6e9ee;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(17,24,39,0.05);
}

.panel--soft {
  background: #ffffff;
}

.panel--accent {
  border-color: #ffecd1;
  box-shadow: 0 14px 30px rgba(17,24,39,0.06);
}

/* Locations / Standorte */
.locations .loc-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.loc-card {
  background: #ffffff;
  border: 1px solid #e6e9ee;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(17,24,39,0.04);
}

.loc-card h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.loc-card p {
  color: #4b5563;
  font-size: 0.95rem;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: 1px;
}

/* Angebot */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  background: rgba(255,255,255,0.04);
  padding: 25px;
  border-radius: 15px;
  transition: transform 0.2s;
  backdrop-filter: blur(6px);
}

.card:hover {
  transform: translateY(-5px);
}

/* Galerie (Swipe Bilder) */
.gallery {
  max-width: 100%;
  padding-top: 40px;
}

.slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.slider img {
  width: 280px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  scroll-snap-align: center;
  flex-shrink: 0;
}

.card-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms cubic-bezier(.2,.9,.2,1), transform 600ms cubic-bezier(.2,.9,.2,1);
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: none;
}

/* Card hover / highlights */
.card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  box-shadow: 0 6px 14px rgba(17,24,39,0.04);
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 40px rgba(17,24,39,0.08);
  border-color: #ffecd1;
}

/* Location links styling */
.loc-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.loc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(17,24,39,0.06);
  border-color: #e6f4ff;
}

/* Button micro-interactions */
.btn {
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px rgba(17,24,39,0.08);
}
.btn:active {
  transform: translateY(0) scale(0.99);
}
.btn::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  border-radius: 12px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 300ms ease;
}
.btn:hover::after { opacity: 0.02; }

/* Social buttons micro animation */
.whatsapp-button, .instagram-button { transition: transform 220ms cubic-bezier(.2,.9,.2,1); }
.whatsapp-button:hover, .instagram-button:hover { transform: translateY(-4px) scale(1.04); }


/* Öffnungszeiten */
.info {
  text-align: center;
}


/* Footer */
footer {
  text-align: center;
  padding: 28px 12px;
  background: transparent;
  color: #6b7280;
}

/* Buttons - Pro Touch */
.whatsapp-button,
.instagram-button {
  position: fixed;
  right: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  z-index: 999;
}

.whatsapp-button {
  bottom: 20px;
  background: #25d366;
}

.instagram-button {
  bottom: 90px;
  background: linear-gradient(45deg, #feda75, #d62976, #962fbf, #4f5bd5);
}

.whatsapp-button svg,
.instagram-button svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  section {
    padding: 40px 15px;
  }

  .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .slider img {
    width: 220px;
    height: 140px;
  }
}
