/* ============================
   Farbpalette aus dem Logo
   ============================ */
:root {
  --brand-primary: #342A84;    /* Logo-Violett */
  --brand-accent:  #342A84;    /* Sanftes Türkis-Blau */
  --brand-light:   #F2F0F8;    /* Sehr helles Violett */
  --brand-bg:      #b2b2b2;    /* Hell-warmes Grau */
  --text-dark:     #1a1a1a;    /* Dunkles Anthrazit */
  --text-light:    #ffffff;    /* Weiß für Texte */
  --bg-page:       #b2b2b2;    /* Seiten-Hintergrund */
  --transition:    0.3s ease;
  --spacing:       8px;
  --max-width:     1200px;
  --font-base:     'Open Sans', sans-serif;
  --font-heading:  'Montserrat', sans-serif;
}

/* Reset & Basis */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  font-family: var(--font-base);
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-page);
}

/* Wrapper für Sticky Footer */
.all {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}

/* Container */
.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 calc(var(--spacing) * 2);
}

/* Blauer Streifen am Seitenanfang */
.brand-stripe {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--brand-primary),
    var(--brand-accent)
  );
  width: 100%;
}

/* Obere Infobar */
.top-bar {
  background: var(--brand-light);
  color: var(--text-dark);
  text-align: center;
}
.top-bar .container {
  padding: 0.5rem 0;
}
.top-bar a {
  color: var(--brand-primary);
  text-decoration: underline;
  font-weight: 600;
}
.top-bar a:hover {
  color: var(--brand-accent);
}

/* Header / Navigation */
.site-header {
  background: var(--brand-light);
  border-bottom: 2px solid var(--brand-accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: fadeInDown var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(1rem + 1px) 0;
}
.logo img {
  max-height: 50px;
  transition: transform var(--transition);
}
.logo img:hover {
  transform: rotate(8deg) scale(1.05);
}

/* Hauptnavigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.main-nav a {
  position: relative;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--brand-primary);
  padding: 0.25rem 0;
  transition: color var(--transition);
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-accent);
  transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav .active a::after {
  width: 100%;
}
.main-nav a:hover {
  color: var(--brand-accent);
}

/* Hamburger-Icon */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  position: relative;
  margin-right: 1rem;
}
.hamburger,
.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--text-dark);
  transition: var(--transition);
}
.hamburger {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}
.mobile-menu-toggle.active .hamburger {
  background: transparent;
}
.mobile-menu-toggle.active .hamburger::before {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active .hamburger::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .main-nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-light);
    flex-direction: column;
    transform: scaleY(0);
    transform-origin: top;
    border-top: 2px solid var(--brand-accent);
  }
  .main-nav ul.open {
    transform: scaleY(1);
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  background:
    linear-gradient(
      to bottom,
      rgba(52,42,132,0.6),
      rgba(58,154,217,0.6)
    ),
    url('/src/img/banner.png') center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 calc(var(--spacing) * 2);
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s var(--transition) forwards;
  opacity: 0;
}
.hero-content p {
  font-size: 1.2rem;
  animation: fadeInUp 1.2s var(--transition) forwards;
  opacity: 0;
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.btn-primary {
  background: var(--brand-primary);
  color: var(--text-light);
}
.btn-secondary {
  background: var(--brand-accent);
  color: var(--text-light);
}
.btn:hover {
  transform: translateY(-2px);
}

/* ========== Sektionen ========== */
.section {
  padding: 4rem 0;
  background: var(--bg-page);
}
.section--alt {
  background: var(--brand-light);
}
.section h2 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}
.section p {
  max-width: 700px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: var(--text-dark);
}

/* ========== CTA-Contact ========== */
.cta-contact {
  background: var(--brand-light);
  color: var(--text-dark);
  padding: 4rem 0;
  text-align: center;
}
.cta-contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.cta-contact p {
  margin-bottom: 2rem;
}



/* ----------------------------------
   1. Intro-Section
---------------------------------- */
.home-intro {
  background:var(--brand-primary);
  color:var(--text-light);
  padding:4rem 0 2rem;
}
.home-intro h1 {
  font-family:var(--font-heading);
  font-size:3rem;
  margin-bottom:var(--spacing);
}
.home-intro .lead {
  font-size:1.25rem;
  max-width:700px;
  margin:0 auto var(--spacing);
}
.home-intro .btn-primary {
  font-size:1.1rem;
}
.home-intro .container {
  text-align: center;
}
/* ----------------------------------
   2. Service-Highlights
---------------------------------- */
.features {
  padding:3rem 0;
}
.cards-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:2rem;
}
.feature-item {
  background:var(--text-light);
  padding:2rem 1rem;
  border-radius:8px;
  transition:transform var(--transition), box-shadow var(--transition);
}
.feature-item:hover {
  transform:translateY(-4px);
  box-shadow:0 6px 20px rgba(0,0,0,0.1);
}
.feature-item img {
  width:60px;
  margin-bottom:var(--spacing);
}
.feature-item h3 {
  font-family:var(--font-heading);
  color:var(--brand-primary);
  margin-bottom:var(--spacing);
}
.feature-item p {
  font-size:0.95rem;
}

/* ----------------------------------
   3. Gallery-Preview
---------------------------------- */
.gallery-preview {
  padding:3rem 0;
}
.gallery-preview h2 {
  font-family:var(--font-heading);
  font-size:2rem;
  color:var(--brand-primary);
  margin-bottom:1.5rem;
}
.teaser-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(140px,1fr));
  gap:1rem;
  margin-bottom:1.5rem;
}
.teaser-item {
  position:relative;
  border-radius:6px;
  overflow:hidden;
  transition:transform var(--transition);
}
.teaser-item img {
  width:100%;
  filter:brightness(0.8);
  transition:filter var(--transition), transform var(--transition);
}
.teaser-item:hover img {
  filter:brightness(1);
  transform:scale(1.05);
}
.teaser-item span {
  position:absolute;
  bottom:8px; left:8px;
  background:rgba(52,42,132,0.8);
  color:var(--text-light);
  padding:0.3rem 0.6rem;
  border-radius:4px;
  font-size:0.85rem;
}
.gallery-preview .container {
  text-align: center;
}
.btn-gallery {
  margin: 0 auto;       /* zentriert das Inline-Block-Element */
  display: inline-block; 
}
/* ----------------------------------
   4. Über uns in Box
---------------------------------- */
.about-box {
  background:var(--text-light);
  border:1px solid var(--brand-accent);
  border-radius:8px;
  padding:3rem 1rem;
  margin:3rem auto;
  max-width:800px;
  box-shadow:0 4px 16px rgba(0,0,0,0.05);
}
.about-box h2 {
  font-family:var(--font-heading);
  color:var(--brand-primary);
  margin-bottom:var(--spacing);
}
.about-box p {
  font-size:1.1rem;
  line-height:1.6;
  max-width:600px;
  margin:0 auto var(--spacing);
}
.about-box .btn-secondary {
  font-size:1rem;
}

/* ----------------------------------
   5. Kontakt-Box
---------------------------------- */
.contact-box {
  background:var(--text-light);
  border:1px solid var(--brand-accent);
  border-radius:8px;
  padding:3rem 1rem;
  margin:4rem auto;
  max-width:800px;
  box-shadow:0 4px 16px rgba(0,0,0,0.05);
}
.contact-box h2 {
  font-family:var(--font-heading);
  font-size:2rem;
  margin-bottom:var(--spacing);
}
.contact-box p {
  font-size:1.1rem;
  line-height:1.6;
  max-width:600px;
  margin:0 auto var(--spacing);
}







/* =============================
   Galerie-Seite
   ============================= */
.gallery-page {
  padding: 4rem 0;
  background: var(--bg-page);
}

/* Container justieren */
.gallery-container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
   text-align: center;
}

/* Hauptüberschrift */
.gallery-container > h1 {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--brand-primary);
  text-align: center;
  margin-bottom: 3rem;
}

/* Jede Kategorie-Sektion */
.gallery-section {
  margin-bottom: 5rem;
  padding: 2rem;
  border-radius: 8px;
  background: var(--brand-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Kategorie-Überschrift */
.gallery-section h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--brand-accent);
  margin-bottom: 1.5rem;
  position: relative;
}
.gallery-section h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--brand-primary);
  border-radius: 2px;
}

/* Grid-Struktur */
.gallery-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/* Einzelnes Bild */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform var(--transition), filter var(--transition);
  filter: brightness(0.9);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Modal-Overlay */
.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .gallery-section {
    padding: 1.5rem;
  }
  .gallery-section h2 {
    font-size: 1.75rem;
  }
}

/* ===== 1. Intro ===== */
.services-intro {
  background: var(--brand-light);
  padding: 3rem 0 1rem;
  text-align: center;
}
.services-intro .lead {
  max-width: 700px;
  margin: 1rem auto 0;
  color: var(--text-dark);
  font-size: 1.125rem;
}

/* ===== 2. Service Cards ===== */
.service-cards { padding: 2rem 0 4rem; }
.cards-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
}
.service-card {
  background: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.card-icon { width: 60px; margin-bottom: 1rem; }
.service-card h3 {
  font-family: var(--font-heading);
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }
.service-card .btn-secondary {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--text-light);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform var(--transition);
}
.service-card .btn-secondary:hover {
  transform: translateY(-2px);
}

/* ===== 3. Service Details ===== */
.service-detail {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 4rem 0;
  flex-wrap: wrap;
}
.service-detail {
  background: var(--text-light);     /* Weißer Hintergrund */
  padding: 2rem;                     /* Innenabstand */
  border-radius: 8px;                /* Abgerundete Ecken */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);  /* Leichter Schatten */
  margin: 2rem 0;                    /* Abstand nach oben/unten */
  display: flex;                     /* Flex-Layout beibehalten */
  align-items: center;
  gap: 2rem;                         /* Abstand Bild ↔ Text */
}

/* Details rechts ausgerichtet bleibt erhalten */
.service-detail.detail-right {
  flex-direction: row-reverse;
}

/* Mobile: Boxen untereinander */

.service-detail.detail-right { flex-direction: row-reverse; }
.detail-image,
.detail-content { flex: 1 1 300px; }
.detail-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.detail-content h2 {
  font-family: var(--font-heading);
  color: var(--brand-primary);
  margin-bottom: 1rem;
}
.detail-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.detail-content .btn-primary {
  display: inline-block;
  background: var(--brand-primary);
  color: var(--text-light);
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform var(--transition);
}
.detail-content .btn-primary:hover {
  transform: translateY(-2px);
}

/* ===== 4. Gallery Teaser ===== */
.gallery-teaser {
  background: var(--bg-page);
  padding: 3rem 0 1rem;
  text-align: center;
}
.gallery-teaser h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}
.teaser-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
  margin-bottom: 1.5rem;
}
.teaser-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.teaser-item img {
  width: 100%;
  filter: brightness(0.8);
  transition: filter var(--transition), transform var(--transition);
}
.teaser-item:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}
.teaser-item span {
  position: absolute;
  bottom: 8px; left: 8px;
  background: rgba(52,42,132,0.7);
  color: var(--text-light);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
}
/* schönerer Galerie-Button */
.btn-gallery {
  display: inline-block;
  background: var(--brand-primary);
  color: var(--text-light);
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform var(--transition);
}
.btn-gallery:hover {
  transform: translateY(-2px);
}

/* ===== 5. Kontakt-Box ===== */
.contact-box {
  background: var(--text-light);
  color: var(--text-dark);
  padding: 3rem 0;
  text-align: center;
  border: 1px solid var(--brand-accent);
  border-radius: 8px;
  margin: 4rem auto;
  max-width: 800px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.contact-box h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.contact-box p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}
.contact-box .btn-primary {
  background: var(--brand-accent);
  color: var(--text-light);
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform var(--transition);
}
.contact-box .btn-primary:hover {
  transform: translateY(-2px);
}

/* ===== 6. Modal (Lightbox) ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000;
}
.modal-content img {
  max-width: 90vw; max-height: 90vh;
  border-radius: 6px; box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

/* ===== 7. Animation ===== */
@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .service-detail {
    flex-direction: column !important;
    text-align: center;
  }
  .service-detail.detail-right {
    flex-direction: column !important;
  }
  .detail-content .btn-primary {
    margin: 1rem auto 0;  /* Button mittig in der Box */
  }
}

/* =========================
   Impressum-Seite
   ========================= */
.impressum-container {
  background: var(--bg-page);
  padding: 3rem 0;
}

.impressum-content {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  background: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.impressum-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-primary);
  text-align: center;
}

.impressum-content h2 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--brand-primary);
  border-bottom: 2px solid var(--bg-page);
  padding-bottom: 0.3rem;
}

.impressum-content address,
.impressum-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.impressum-content address {
  font-style: normal;
}

.impressum-content a {
  color: var(--brand-primary);
  text-decoration: underline;
}

.impressum-content a:hover {
  color: var(--brand-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .impressum-content {
    padding: 1.5rem;
  }
  .impressum-content h1 {
    font-size: 1.75rem;
  }
}


/* =========================
   Datenschutz-Seite
   ========================= */
.datenschutz-container {
  background: var(--bg-page);
  padding: 3rem 0;
}

.datenschutz-content {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  background: var(--text-light);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.datenschutz-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-primary);
  text-align: center;
}

.datenschutz-content h2 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--brand-primary);
  border-bottom: 2px solid var(--bg-page);
  padding-bottom: 0.3rem;
}

.datenschutz-content h3 {
  font-size: 1.1rem;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  color: var(--brand-dark);
}

.datenschutz-content h4 {
  font-size: 1rem;
  margin-top: 0.8rem;
  margin-bottom: 0.3rem;
  color: var(--brand-dark);
}

.datenschutz-content p,
.datenschutz-content ul,
.datenschutz-content address {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.datenschutz-content address {
  font-style: normal;
}

.datenschutz-content a {
  color: var(--brand-primary);
  text-decoration: underline;
}

.datenschutz-content a:hover {
  color: var(--brand-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .datenschutz-content {
    padding: 1.5rem;
  }
  .datenschutz-content h1 {
    font-size: 1.75rem;
  }
}

/* ======================================================
   Kontaktformular – Vollständiges Styling inkl. Mobile
   ====================================================== */
/* ========= Kontaktformular – neues Styling ========= */
.kunden-nachricht-page {
  background: var(--bg-page);
  padding: 4rem 0;
}

.kunden-nachricht-page .container {
  background: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(52,42,132,0.15);
}

.kunden-nachricht-page .intro-container h1 {
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.kunden-nachricht-page .intro-container p {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

/* Form-Gruppen */
form#kontakt-formular .form-group {
  margin-bottom: 1.5rem;
}

form#kontakt-formular label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* Text-Inputs & Textarea */
.kunden-nachricht-page input[type="text"],
.kunden-nachricht-page input[type="email"],
.kunden-nachricht-page textarea {
  width: 100%;
  border: 1px solid var(--brand-accent);
  border-radius: 6px;
  background: #fafafa;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.kunden-nachricht-page input:focus,
.kunden-nachricht-page textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(52,42,132,0.2);
}

/* Checkbox-Labels */
.kunden-nachricht-page .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* Submit-Button */
.kunden-nachricht-page .glow {
  background: var(--brand-accent);
  color: var(--text-light);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(49,128,176,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  margin-top: 1rem;
}

.kunden-nachricht-page .glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(49,128,176,0.6);
}

.kunden-nachricht-page .glow:active {
  transform: translateY(0);
}

/* Success / Error Messages */
.success-message,
.error-message {
  max-width: 700px;
  margin: 1rem auto 2rem;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.4;
}
.success-message {
  background: #e6f4ff;
  border-left: 4px solid var(--brand-primary);
  color: var(--text-dark);
}
.error-message {
  background: #ffecec;
  border-left: 4px solid #DB3736;
  color: var(--text-dark);
}


/* ========== Footer ========== */
.site-footer {
  background: var(--brand-primary);
  color: var(--text-light);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-column {
  flex: 1 1 200px;
}
.footer-column h2 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--text-light);
}
.footer-column a,
.footer-column p {
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}
.footer-column a:hover {
  text-decoration: underline;
}

/* ========== Animationen ========== */
@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); }
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .section, .section--alt {
    padding: 3rem 0;
  }
  .hero {
    height: 60vh;
  }
}
