/* --- HERO SECTION --- */
.hero-section {
  width: 100%;
  background: linear-gradient(180deg, #f6faf6 0%, #e8f3e8 80%);
  padding: 7rem 1rem 6rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* kleinerer Hero (z. B. Öffnungszeiten) */
.hero-section--small {
  padding: 4rem 1rem 3.5rem;
}

/* alternativer Hintergrund ohne Gradient */
.hero-section--plain {
  background: #f7f7f5;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background: #fff;
  clip-path: ellipse(70% 60% at 50% 100%);
}

.hero-logo {
  max-width: 350px;
  animation: fadeInDown 1.2s ease;
}

.hero-slogan {
  font-family: 'Marcellus', serif;
  font-size: clamp(1.75rem, 2vw + 1rem, 2.5rem);
  font-weight: 600;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  animation: fadeInUp 1.2s ease;
}

.hero-subtext {
  font-size: 1.15rem;
  color: #555;
  margin-top: 1rem;
  animation: fadeIn 1.5s ease;
}

.hero-inner {
  max-width: 960px;        /* ähnlich col-lg-8 */
  margin: 0 auto;
  padding: 0 1rem;         /* Mobile Luft */
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* --- SERVICE CARDS --- */
.service-icon {
  font-size: 2.25rem;
  color: var(--color-primary);
}

.service-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 1.75rem;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.section-title {
  font-family: 'Marcellus', serif;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.text-accent {
  color: var(--color-primary) !important;
}

footer {
  background: #f4f7f4;
  color: #666;
}

.footer-image-strip img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  opacity: 0.95;
}

/* Brand section styling */
.brand-heading {
  position: relative;
}

.brand-icon-wrap {
  display: inline-block;
  background: rgba(108, 180, 108, 0.08);
  padding: 1rem 1.25rem;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.brand-title {
  font-family: 'Marcellus', serif;
  font-weight: 600;
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.5rem);
  color: #3b653d;
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}

.brand-title .divider {
  color: #6cb46c;
  font-weight: 300;
  margin: 0 0.5rem;
}

.brand-subtext {
  font-size: 1.15rem;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
  font-weight: 300;
}

/* Optional: subtle animation on scroll */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.brand-heading {
  animation: fadeUp 1.2s ease both;
}

.highlight-quote {
  background: linear-gradient(180deg, #f9fbf9 0%, #eef6ee 100%);
  border-left: 5px solid #6cb46c;
  border-radius: 12px;
  padding: 2rem 2.5rem;
  max-width: 700px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: 'Marcellus', serif;
  color: #2e4f2e;
}

.highlight-quote blockquote p {
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.highlight-quote::before {
  content: "“";
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(108, 180, 108, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.highlight-quote .blockquote-footer {
  color: #3b653d;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

.service-list {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #3b653d;
  line-height: 1.8;
}

.service-list i {
  font-size: 1.2rem;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .service-list {
    font-size: 1rem;
  }
  .service-list .list-inline-item {
    display: block;
    margin: 0.5rem 0;
  }
}

.service-item {
  display: flex;
  flex-direction: column;
  justify-content: center;   /* vertikal zentriert */
  align-items: center;       /* horizontal zentriert */
  text-align: center;
  padding: 2rem 1.5rem;
}

.service-item i {
  margin-bottom: 0.75rem;
}

.service-item h3 {
  margin-bottom: 0.5rem;
}
