/* Skip-Navigation (visuell versteckt, sichtbar bei Tastaturfokus) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 0;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: var(--blau);
  color: #fff;
  z-index: 9999;
  text-decoration: none;
  font-size: 0.9rem;
}

:root {
  --blau: #0089d0;
  --hellblau: #c7dff4;
  --grau: #949599;
  --dunkelgrau: #6f6f71;
  --weiss: #ffffff;
  --orange: #ff8800;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: "Segoe UI", Arial, sans-serif; line-height: 1.6; color: #222; 
  padding-top: 16px; 
  font-size: 0.95rem;  
  font-weight: 400;    
  letter-spacing: 0.2px;
  color: #6f6f71;
}

/* =========================
   2. Global Text & Links
========================= */
p, li, a {
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* =========================
   3. Buttons etc.
========================= */
a:not(.btn-spenden):not(.btn-kontakt):not(.header-center-link):not(.ds-link),
a:visited:not(.btn-spenden):not(.btn-kontakt):not(.header-center-link):not(.ds-link),
a:active:not(.btn-spenden):not(.btn-kontakt):not(.header-center-link):not(.ds-link) {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.3s, background 0.3s;
}

/* Hover-Effekt für normale Links */
a:not(.btn-spenden):not(.header-center-link):not(.footer-downloads a):not(.top-bar-left a):hover {
  color: var(--blau) !important;
}
/* Spenden-Button: immer weiß */
a.btn-spenden {
  color: #ffffff !important;        
}

a.btn-spenden:hover {
  color: #ffffff !important;
}

/* Datenschutz-Links im Kontaktformular */
a.ds-link,
a.ds-link:visited {
  color: var(--blau) !important;
  text-decoration: underline !important;
}
a.ds-link:hover,
a.ds-link:visited:hover {
  color: var(--dunkelgrau) !important;
  text-decoration: underline !important;
}

/* =========================
   4. FOOTER – GANZ UNTEN
========================= */
.footer-downloads a,
.footer-downloads a:visited,
.footer-downloads a:active,
.footer-downloads a:hover,
.footer-downloads a:visited:hover {
  color: var(--weiss) !important;
}

.footer-downloads .downloads-left a:hover,
.footer-downloads .downloads-left a:visited:hover {
  text-decoration: underline !important;
}

/* === Headline-Stile global === */
body h1 {
  font-weight: 400;          
  font-size: 1.8rem;          
  letter-spacing: 0.9px;     
  color: var(--blau);
  margin-bottom: 0.5em;       
}

body h2 {
  font-weight: 700;           
  font-size: 1.5rem;          
  letter-spacing: 0.9px;
  color: var(--blau);
  margin-bottom: 0.5em;
}

body h3 {
  font-weight: 700;          
  font-size: 1.1rem;          
  letter-spacing: 0.9px;
  color: var(--grau);
  margin-bottom: 0.5em;
}
/* HEADER */
header {
  background: var(--weiss);
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 2000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}

.header-inner {
  max-width: 1300px;
  margin: auto;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  transition: padding 0.4s ease;
}

header.scrolled .header-inner {
  padding: 6px 40px;
}

header img {
  height: 100px;
  transition: height 0.4s ease;
}

header.scrolled img {
  height: 55px;
}
/* OBERE INFO-BAR */
.top-bar {
  width: 100%;
  background: var(--blau);
  color: var(--weiss);
  font-size: 0.7rem;  
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;  
  box-sizing: border-box;
}
.header-center-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 0 4px 12px;
  border-left: 3px solid var(--orange);
  background: none;
  color: var(--dunkelgrau) !important;
  font-size: 0.72rem;
  text-decoration: none !important;
  line-height: 1.3;
  white-space: nowrap;
  letter-spacing: 0.3px;
  transition: color 0.3s, border-color 0.3s;
}

.header-center-link::after {
  content: ' ↗';
  color: var(--orange);
  font-size: 0.75rem;
  transition: color 0.3s;
}

.header-center-link:hover,
.header-center-link:visited:hover {
  color: var(--orange) !important;
  border-left-color: var(--dunkelgrau);
  background: none !important;
}

.header-center-link:hover::after {
  color: var(--dunkelgrau);
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .header-center-link {
    display: none;
  }
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px; 
}

.top-icon {
  width: 12px;
  height: 12px;
	  filter: invert(1) brightness(2);
}

.social-icon {
  width: 14px;
  height: 14px;
  filter: invert(1); 
  margin-left: 10px;
  transition: 0.3s;
	
}

.social-icon:hover {
  filter: invert(0.7); 
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    padding: 5px 20px;
    font-size: 0.65rem;
    text-align: center;
    gap: 5px;
  }
 /* === TOP-BAR LINKS: Icons + Text + Trennzeichen sauber === */
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 12px;          
  flex-wrap: wrap;     
  font-size: 0.7rem;  
}

.top-bar-left a,
.top-bar-left a:visited,
.top-bar-left a:active {
  color: var(--weiss) !important;   
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 4px;            
  transition: color 0.3s, background 0.3s;
  padding: 2px 4px;    
  border-radius: 3px;
  cursor: pointer;
}

.top-bar-left a:hover {
  color: var(--grau) !important;    
  background: rgba(255,255,255,0.1) !important; 
}
	
/* Trennzeichen */
.top-bar-left span.separator {
  color: var(--weiss);
  margin: 0 4px;       
}

/* Icon-Anpassung */
.top-bar-left .top-icon {
  width: 12px;
  height: 12px;
  filter: invert(1) brightness(2);
}

/* RESPONSIVE: Mobile */
@media (max-width: 768px) {
  .top-bar-left {
    justify-content: center;
    gap: 8px;
    text-align: center;
    flex-wrap: wrap;
  }
  .top-bar-left span.separator {
    display: none; 
  }
}

  .social-icon { margin-left: 5px; }
}

/* NAVIGATION */
.nav-menu { display: flex; gap: 20px; }
.nav-menu a {
  font-size: 0.8rem;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
}

/* 4. NAV UNDERLINE ANIMATION */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blau);
  transition: width 0.3s ease;
}
.nav-menu a:hover::after {
  width: 100%;
}
.nav-menu a:hover { color: #777; }

/* Hamburger Menu */
.hamburger { display: none; font-size: 1.5rem; cursor: pointer; }
#menu-toggle { display: none; }
@media (max-width: 768px) {
  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    flex-direction: column;
    width: 200px;
    display: none;

    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(0, 137, 208, 0.2);
    box-shadow: 0 8px 32px rgba(0, 137, 208, 0.15), 0 2px 8px rgba(0,0,0,0.1);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    z-index: 3000;
  }

  .nav-menu a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: #222;
    transition: background 0.2s, color 0.2s;
  }

  .nav-menu a:last-child {
    border-bottom: none;
  }

  .nav-menu a:hover {
    background: rgba(0, 137, 208, 0.12);
    color: var(--blau) !important;
  }

  #menu-toggle:checked + .hamburger + .nav-menu { display: flex; }
  .hamburger { display: block; }

  .nav-menu-extern {
    border-top: 1px solid rgba(0, 137, 208, 0.2) !important;
    color: var(--blau) !important;
    font-size: 0.75rem !important;
  }
}

/* Desktop: externer Link im Menü verstecken */
@media (min-width: 769px) {
  .nav-menu-extern { display: none; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 500px;
  max-height: 750px;         
  background: url("images/image-back.jpg") center/cover no-repeat;
  background-attachment: fixed; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 20px 40px 20px;
  overflow: visible;         
}

@media (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    max-height: none;
    padding: 60px 0px 30px 0px;
  }
}



.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.0);
  z-index: 1;
}

.hero-content {
  position: relative;
  width: 100%;
  max-width: 1200px;
  text-align: center;
  display: flex;
  flex-direction: column; 
  align-items: center;    
  padding: 20px;
  color: #222;
  z-index: 2;
}


.hero-title {
  font-size: 2rem;
  color: var(--blau);
  margin-bottom: 10px;
	 font-weight: 500;
  letter-spacing: 0.6px;
}

.hero-subtitle {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #555555;
  margin-bottom: 30px;
}

/* BUTTON */
.btn-spenden {
  background: var(--blau);
  color: #ffffff !important; 
  padding: 15px 40px;           
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;          
  font-weight: 700;            
  transition: color 0.3s, background 0.3s;
  display: inline-block;
  line-height: 1.2;            
  margin-top: 20px;
  margin-bottom: 60px;
	
}

.btn-spenden:hover {
  background: var(--dunkelgrau); 
  color: #ffffff !important;    
}

/* FLOATING INFO BOXEN IM HERO */
.info-floating-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  box-sizing: border-box;
}


.info-floating {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative; 
  align-items: stretch; 
}

.info-floating .info-box {
  background: var(--hellblau); 
  flex: 1 1 250px; 
  min-width: 250px;
  display: flex;
  flex-direction: column; 
  padding: 25px;           
  border-radius: 6px;      
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  color:  #6f6f71;             
  font-size: 0.9rem;       
  font-weight: 400;       
  line-height: 1.4;
}
.info-floating .info-box h3 {
  color: var(--dunkelgrau); 
  font-weight: 800;         
  font-size: 1.1rem;         
  margin-bottom: 10px;
}

.info-floating .info-box p {
  font-size: 0.85rem;        
  font-weight: 400;         
  color: var(--dunkelgrau);
  line-height: 1.5;
}

/* RESPONSIVE: Tablet */
@media (max-width: 1024px) {
  .hero-subtitle { font-size: 2.2rem; }
  .info-floating {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
  }
  .info-floating .info-box {
    width: 100%;
    flex: none;
  }
  .btn-spenden { padding: 12px 28px; font-size: 1rem; }
}

/* RESPONSIVE: Mobile – Karussell */
@media (max-width: 768px) {
  .header-inner { flex-direction: row; justify-content: space-between; }
  .hero-subtitle { font-size: 1.8rem; }

  .info-floating {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 16px;
    margin-top: 20px;
    width: 100%;
    align-items: stretch;
  }

  .info-floating::-webkit-scrollbar {
    height: 4px;
  }
  .info-floating::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.4);
    border-radius: 4px;
  }

  .info-floating .info-box {
    min-width: 75vw;
    max-width: 75vw;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

/* NEWS */
.news-section {
  max-width: 1200px;
  margin: 80px auto 70px;
  padding: 0 40px;
}

.news-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.news-header h2 {
  white-space: nowrap;
  margin: 0;
  font-size: 1.3rem;
  color: var(--blau);
  letter-spacing: 1px;
}

.news-header-line {
  display: block;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, var(--blau), transparent);
  border-radius: 2px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: start;
}

.news-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,137,208,0.15);
}

.news-card--empty {
  background: #f6f8fa;
  border: 2px dashed #d0dde8;
  box-shadow: none;
}

.news-card--empty:hover {
  transform: none;
  box-shadow: none;
}

.news-card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
}

.news-card-body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-card-date {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grau);
}

.news-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blau);
  margin: 0;
  letter-spacing: 0.3px;
}

.news-card-text {
  font-size: 0.85rem;
  color: #6f6f71;
  line-height: 1.6;
  margin: 0;
}

.news-leer {
  font-size: 0.85rem;
  color: var(--grau);
  font-style: italic;
}

@media (max-width: 768px) {
  .news-section { padding: 0 20px; margin: 50px auto 40px; }
}

/* FÖRDERUNG */
.foerderung {
  background: var(--hellblau);
  color: var(--weiss);
  padding: 70px 40px;
}

.foerderung h2 { text-align: center; margin-bottom: 50px; }

.foerder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.foerder-box {
  background: var(--grau);
  padding: 30px;
  border-radius: 6px;
  text-align: center;
  color:  #fff;             
  font-size: 0.9rem;        
  font-weight: 400;       
  line-height: 1.4;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.foerder-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  filter: invert(1) brightness(2);
}

/* HAUPT-FOOTER */
.footer-main {
  background: var(--dunkelgrau);
  color: var(--weiss);
  padding: 40px;
  text-align: center;
}

/* BLUHER DOWNLOAD-BALKEN */
.footer-downloads {
  width: 100%;
  background: var(--blau);
  display: flex;
  justify-content: center; 
  align-items: center;
  padding: 15px 40px; 
  font-size: 0.8rem;
  box-sizing: border-box;
  color: var(--weiss);
}

.footer-downloads a {
  color: var(--weiss);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-downloads a:hover {
  color: var(--orange) !important;
  text-decoration: underline;
}

.downloads-left {
  display: flex;
  align-items: center;
  gap: 15px; /* Abstand zwischen Links */
}

.download-icon {
  width: 14px;
  height: 14px;
  filter: invert(1) brightness(2);
}

/* COPYRIGHT-UNTER DEM BALKEN */
.footer-copyright {
  width: 100%;
  background: var(--weiss);
  color: var(--blau);
  text-align: center;
  font-size: 0.7rem;
  padding: 5px 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-downloads {
    flex-direction: column;
    gap: 5px;
    padding: 10px 20px;
    text-align: center;
  }
  .downloads-left {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-copyright {
    font-size: 0.65rem;
    padding: 5px 10px;
  }
}
/* 1. Farbe auf den Container setzen */
.top-bar {
  color: var(--weiss); /* Standardfarbe für alle Texte in der Top-Bar */
}

/* 2. Top-Bar-Links */
.top-bar-left a {
  color: var(--weiss) !important; /* Links immer weiß */
  text-decoration: none !important;
}

/* 3. Hover für die Links */
.top-bar-left a:hover {
  color: var(--grau) !important; /* Grau beim Hover */
  background: rgba(255,255,255,0.1) !important;
}
/* =========================
   PAGE TITLE BAR (NEU)
========================= */

.page-title-bar {
  width: 100%;
  background: var(--dunkelgrau);
  padding: 10px 40px;
  box-shadow: 0px 4px 10px 2px rgba(74, 74, 74, 0.35);
}

.page-title-bar h1 {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.8px;
}

/* =========================
   CONTENT AREA
========================= */

.page-content {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 40px;
}

.content-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 5px;
  box-shadow: 0px 4px 10px 2px rgba(74, 74, 74, 0.3);
}

@media (max-width: 768px) {
  .page-content {
    margin: 20px auto;
    padding: 0 15px;
  }
  .content-wrapper {
    padding: 20px 15px;
    border-radius: 4px;
  }
}

/* =========================
   SPENDEN – 2-SPALTEN
========================= */
.spenden-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.spenden-col p {
  margin-bottom: 4px;
  font-size: 0.95rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .spenden-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* =========================
   KONTAKT – 2-SPALTEN
========================= */
.kontakt-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.kontakt-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 4px;
}

.kontakt-adresse-box {
  background: var(--hellblau);
  border-radius: 5px;
  padding: 30px;
  box-shadow: 0px 4px 10px 2px rgba(74, 74, 74, 0.2);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kontakt-info-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.kontakt-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--dunkelgrau);
  text-transform: uppercase;
}

.kontakt-value {
  font-size: 0.95rem;
  color: #3a3a3a;
  line-height: 1.6;
}

.kontakt-value--link {
  color: var(--blau) !important;
  text-decoration: none !important;
  transition: color 0.2s;
}

.kontakt-value--link:hover {
  color: var(--orange) !important;
}

.kontakt-info-row {
  display: flex;
  gap: 40px;
}

@media (max-width: 768px) {
  .kontakt-columns {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* =========================
   KONTAKTFORMULAR
========================= */
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f6f8fa;
  padding: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 400;
  color: #3a3a3a;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
  background: #fff;
  border: none;
  border-bottom: 1px solid #3a3a3a;
  padding: 10px 0;
  font-size: 0.9rem;
  color: #3a3a3a;
  font-family: inherit;
  border-radius: 0;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--blau);
}

.form-group textarea {
  resize: vertical;
  border: none;
  border-bottom: 1px solid #3a3a3a;
}

.form-hint {
  font-size: 0.75rem;
  color: #E04562;
  background: #F9E4E8;
  padding: 3px 6px;
  display: none;
  margin-top: 2px;
}

/* Datenschutz Checkbox */
.form-group-check .check-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.8rem;
  color: #3a3a3a;
  line-height: 1.5;
}

.form-group-check .check-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #3a3a3a;
  border-bottom: 1px solid #3a3a3a;
  accent-color: var(--blau);
}

.kontakt-form .form-group-check .check-label span a,
.kontakt-form .form-group-check .check-label span a:visited {
  color: #0089d0 !important;
  text-decoration: underline !important;
  transition: color 0.2s;
}

.kontakt-form .form-group-check .check-label span a:hover,
.kontakt-form .form-group-check .check-label span a:visited:hover {
  color: #6f6f71 !important;
  text-decoration: underline !important;
}


/* Submit-Zeile */
.form-submit-row {
  display: flex;
  justify-content: flex-end;
}

.btn-kontakt {
  background: var(--blau);
  color: #ffffff;
  border: none;
  padding: 10px 24px;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-kontakt:hover {
  background: var(--dunkelgrau);
  color: #ffffff;
}

/* =========================
   BESTÄTIGUNG / FEHLER
========================= */
.bestaetigung-box {
  text-align: center;
  padding: 60px 40px;
}

.bestaetigung-smiley {
  font-size: 5rem;
  line-height: 1;
  color: var(--blau);
  margin-bottom: 20px;
}

.bestaetigung-titel {
  color: var(--blau);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.bestaetigung-text {
  color: #3a3a3a;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.fehler-box .bestaetigung-smiley {
  color: var(--grau);
}

.fehler-box .bestaetigung-titel {
  color: var(--grau);
}

/* =========================
   DATENSCHUTZ
========================= */
.datenschutz-content h2 {
  font-size: 1.5rem;
  color: var(--blau);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.datenschutz-content h3 {
  font-size: 1.05rem;
  color: var(--hellblau);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.datenschutz-content p {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 12px;
}

.datenschutz-content ul {
  margin: 8px 0 16px 24px;
  font-size: 0.85rem;
  line-height: 2;
  color: #3a3a3a;
}

.datenschutz-content a {
  color: var(--blau) !important;
  text-decoration: none !important;
}

.datenschutz-content a:hover {
  text-decoration: underline !important;
}

.datenschutz-stand {
  font-size: 0.8rem !important;
  color: #999 !important;
  margin-top: 30px !important;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

/* =========================
   IMPRESSUM
========================= */
.impressum-content p {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.8;
  color: #3a3a3a;
  margin-bottom: 20px;
}

.impressum-content strong {
  font-weight: 700;
  color: #3a3a3a;
}

.impressum-content a {
  color: var(--blau) !important;
  text-decoration: none !important;
}

.impressum-content a:hover {
  text-decoration: underline !important;
}
/* =========================
   ANIMATIONEN
========================= */

/* 1. PAGE FADE-IN & SMOOTH TRANSITION */
body {
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.page-loaded {
  opacity: 1;
}

/* 2. SCROLL-ANIMATION – von links, langsam */
.scroll-hidden {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.scroll-hidden.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   HERO TITEL ANIMATION
========================= */
@keyframes heroZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.6);
    letter-spacing: -2px;
  }
  60% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    letter-spacing: 0.8px;
  }
}

.hero-subtitle {
  animation: heroZoomIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.3s;
}
