:root {
  --primary-blue: #1e3a5f;
  --secondary-blue: #2563eb;
  --accent-green: #22c55e;
  --highlight-yellow: #fbbf24;
  --bg-color: #f8fafc;
  --text-dark: #0f172a;
  --text-grey: #64748b;
  --white: #ffffff;
  --radius: 16px;
  --shadow-soft: 0 10px 40px -10px rgba(30, 58, 95, 0.08);
  --shadow-hover: 0 25px 50px -12px rgba(30, 58, 95, 0.15);
  --container-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--bg-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand-name, .cta-button, .name-tag, .submit-btn { 
  font-family: 'Poppins', sans-serif;
  color: var(--primary-blue); 
  font-weight: 700; 
  line-height: 1.2; 
}

img { max-width: 100%; display: block; }
a { text-decoration: none; transition: all 0.3s ease; }
ul { list-style: none; }

.container { 
  max-width: var(--container-width); 
  margin: 0 auto; 
  padding: 0 20px; 
}

/* --- Animationen --- */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.fade-right { transform: translateX(-30px); }
.fade-left { transform: translateX(30px); }
.zoom-in { transform: scale(0.95); }
.reveal.active.fade-right, .reveal.active.fade-left { transform: translateX(0); }
.reveal.active.zoom-in { transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }


/* --- Header & Nav --- */
.main-header {
  position: sticky; top: 0; z-index: 1000; padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.header-container { display: flex; align-items: center; justify-content: space-between; }

.logo-container { 
  display: flex; 
  align-items: center; 
  gap: 15px; 
  z-index: 1001;
  margin-right: auto; /* Schiebt alles rechts davon nach rechts */
  padding-right: 20px;
}

.logo { 
  width: 132px; 
  height: 132px; 
  border-radius: 12px;
  /* border: entfernt */
  object-fit: cover; 
}

.brand-name { font-weight: 800; font-size: 1.2rem; color: var(--primary-blue); letter-spacing: -0.5px; }


.main-nav ul { display: flex; gap: 30px; align-items: center; }
.main-nav a { 
  color: var(--text-dark); font-weight: 600; font-size: 0.95rem; 
  position: relative;
}
.main-nav a:not(.nav-cta):hover { color: var(--secondary-blue); }
.main-nav a.nav-cta {
  padding: 10px 20px; background: var(--secondary-blue); color: white; border-radius: 50px;
}
.main-nav a.nav-cta:hover { background: var(--primary-blue); box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3); }


/* Mobile Menü Icon */
.menu-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 1002;
}
.menu-toggle span {
  width: 25px; height: 3px; background: var(--primary-blue); border-radius: 3px; transition: all 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }


/* --- Hero Section --- */
.hero {
  position: relative; min-height: 85vh; 
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: white; padding: 120px 20px 80px;
  background: url('img/Kopf.JPG') no-repeat center top / cover;
  background-attachment: fixed;
  overflow: hidden;
}

@media (hover: none) { .hero { background-attachment: scroll; } }

.hero-overlay {
  position: absolute; top:0; left:0; width:100%; height:100%;
  background: linear-gradient(to bottom, rgba(30, 58, 95, 0.8), rgba(2, 6, 23, 0.7));
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; width: 100%; }
.hero-title { font-size: clamp(2.2rem, 5vw, 4.2rem); margin-bottom: 20px; color: white; text-shadow: 0 4px 15px rgba(0,0,0,0.3); letter-spacing: -1px; }
.hero-subline { font-size: clamp(1rem, 2vw, 1.3rem); margin-bottom: 40px; color: #e0f2fe; max-width: 650px; margin: 0 auto 40px; font-weight: 300; }
.cta-button {
  display: inline-block; padding: 16px 40px; border-radius: 50px;
  font-weight: 700; font-size: 1.05rem; position: relative; overflow: hidden; letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cta-button.primary { background: var(--highlight-yellow); color: var(--primary-blue); box-shadow: 0 4px 25px rgba(250, 204, 21, 0.4); }
.cta-button:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(250, 204, 21, 0.6); }
.pulse-anim { animation: pulse 2s infinite; }


/* --- Über Uns --- */
.ueber-uns { padding: 80px 0; }
.section-intro { text-align: center; margin-bottom: 50px; max-width: 800px; margin-left: auto; margin-right: auto; }
.section-intro h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 15px; }
.lead-text { font-size: 1.2rem; color: var(--secondary-blue); font-weight: 600; }

.content-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

blockquote {
  margin-top: 30px; padding: 25px; background: white;
  border-left: 5px solid var(--highlight-yellow); font-style: italic; font-size: 1.1rem;
  border-radius: 0 12px 12px 0; box-shadow: var(--shadow-soft);
}

.team-images { 
  display: flex; 
  justify-content: center; 
  gap: 30px; 
  flex-wrap: wrap; 
}

.img-wrapper { 
  text-align: center; 
  position: relative;
  width: 180px; 
}

/* Rechteckige Bilder für Über Uns */
.img-wrapper img {
  display: block;
  margin: 0 auto;
  width: 160px;          
  height: 220px;         
  border-radius: 12px; /* Eckig mit leicht abgerundeten Ecken */
  border: 4px solid white;
  box-shadow: var(--shadow-hover); 
  background: #e2e8f0; 
  object-fit: cover;     
  object-position: center top; 
  transition: transform 0.4s ease;
}

.img-wrapper:hover img { transform: scale(1.05); }
.float-anim { animation: float 6s ease-in-out infinite; }
.delay-2 { animation-delay: 1.5s; }

.name-tag { 
  display: block; 
  margin: -20px auto 0; 
  position: relative; 
  z-index: 2;
  font-weight: 700; 
  color: var(--primary-blue); 
  background: white; 
  padding: 8px 16px; 
  border-radius: 25px; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
  width: max-content;
  font-size: 0.9rem; 
  border: 2px solid #f1f5f9;
}


/* --- Team Cards --- */
.team-section { padding: 60px 0 100px; background: var(--bg-color); }
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px; margin-top: 40px;
}
.team-card {
  background: white; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-soft); text-align: center;
  transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.03);
  display: flex; flex-direction: column;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }

.card-img-top {
  width: 100%; height: 350px; 
  background: #f1f5f9;
  position: relative; overflow: hidden;
}
.card-img-top img {
  width: 100%; height: 100%; 
  object-fit: cover; 
  object-position: top center;
  transition: transform 0.5s ease;
}
.team-card:hover .card-img-top img { transform: scale(1.03); }

.card-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; align-items: center; }
.card-body h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--primary-blue); }
.job-title {
  display: inline-block; padding: 4px 12px; border-radius: 20px;
  font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 0.5px;
}
.gf-badge { background: #dcfce7; color: #166534; }
.leiter-badge { background: #dbeafe; color: #1e40af; }
.assi-badge { background: #ffedd5; color: #9a3412; }
.card-body p { color: var(--text-grey); font-size: 0.95rem; }


/* --- Leistungen --- */
.leistungen { padding: 80px 0; background: white; }
.leistungen h2 { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
.leistungen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }

.leistungs-card {
  background: var(--bg-color); padding: 40px 30px; border-radius: 24px;
  position: relative; overflow: hidden; transition: all 0.4s ease;
}
.leistungs-card:hover { transform: translateY(-10px); background: #f0f9ff; }
.card-bg-icon {
  position: absolute; top: -10px; right: -10px; font-size: 8rem; opacity: 0.05;
  transform: rotate(15deg); transition: 0.5s;
}
.leistungs-card:hover .card-bg-icon { opacity: 0.1; transform: rotate(0deg) scale(1.1); }
.icon-circle {
  width: 60px; height: 60px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 2rem; margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.leistungs-card h3 { font-size: 1.8rem; margin-bottom: 5px; }
.sub-h3 { text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; color: var(--text-grey); margin-bottom: 25px; font-weight: 600; }

.check-list li { margin-bottom: 12px; padding-left: 25px; position: relative; font-size: 0.95rem; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-green); font-weight: 900; }
.blue-card { border-bottom: 4px solid var(--secondary-blue); }
.green-card { border-bottom: 4px solid var(--accent-green); }


/* --- Warum Wir --- */
.warum-wir { padding: 80px 0; }
.warum-wir h2 { text-align: center; font-size: 2.5rem; margin-bottom: 50px; }
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.usp-item { 
  text-align: center; padding: 25px; border-radius: var(--radius); background: white; 
  box-shadow: var(--shadow-soft); transition: all 0.3s ease; 
}
.usp-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.usp-icon { font-size: 2.5rem; margin-bottom: 15px; display: inline-block; }


/* --- Preise --- */
.preise { padding: 80px 0; background: linear-gradient(to bottom, var(--bg-color), white); text-align: center; }
.preis-highlight {
  position: relative; max-width: 500px; margin: 40px auto 0; padding: 40px 30px;
  border-radius: 24px; background: white; box-shadow: 0 20px 60px -10px rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.1);
}
.badge {
  position: absolute; top: -12px; right: 20px; background: var(--highlight-yellow); color: var(--primary-blue);
  padding: 6px 14px; border-radius: 20px; font-weight: 800; text-transform: uppercase; font-size: 0.75rem;
  box-shadow: 0 4px 10px rgba(250, 204, 21, 0.3); letter-spacing: 1px;
}
.preis-check { background: #f0fdf4; color: #15803d; padding: 15px; border-radius: 12px; margin-top: 25px; font-size: 0.9rem; }
.check-list-center { list-style: none; text-align: left; display: inline-block; margin: 20px 0; }
.check-list-center li { padding-left: 25px; position: relative; margin-bottom: 8px; font-size: 1rem; }
.check-list-center li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-green); font-weight: bold; }


/* --- Kontakt Formular --- */
.kontakt {
  padding: 80px 0;
  background: #1e3a5f;
  background: radial-gradient(circle at top right, #2563eb 0%, #1e3a5f 70%);
  color: white;
}
.kontakt h2 { color: white; text-align: center; margin-bottom: 10px; font-size: 2.2rem; }
.kontakt-sub { text-align: center; color: #cbd5e1; margin-bottom: 40px; font-size: 1.05rem; }

.kontakt-formular {
  background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  padding: 40px; border-radius: 24px; max-width: 650px; margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.2); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}
.kontakt-formular h3 { color: white; margin-bottom: 25px; font-size: 1.3rem; text-align: center; }

.checkbox-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 25px; }
.custom-checkbox {
  display: flex; align-items: center; padding: 12px; background: rgba(255, 255, 255, 0.05);
  border-radius: 10px; cursor: pointer; transition: all 0.2s ease; border: 1px solid transparent; color: #e2e8f0; font-size: 0.9rem;
}
.custom-checkbox:hover { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.3); }
.custom-checkbox input { display: none; }
.checkmark {
  height: 20px; width: 20px; min-width: 20px; background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px; margin-right: 10px; position: relative; transition: background 0.2s;
}
.custom-checkbox input:checked ~ .checkmark { background-color: var(--accent-green); }
.checkmark:after {
  content: ""; position: absolute; display: none; left: 7px; top: 3px; width: 5px; height: 10px;
  border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.custom-checkbox input:checked ~ .checkmark:after { display: block; }

.input-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.input-group label { display: block; margin-bottom: 6px; font-size: 0.85rem; font-weight: 600; color: #e2e8f0; margin-left: 4px; }
.input-group input, .input-group textarea {
  width: 100%; padding: 14px; border-radius: 10px; border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2); color: white; font-size: 0.95rem;
  font-family: 'Inter', sans-serif; transition: all 0.3s ease;
}
.input-group input:focus, .input-group textarea:focus {
  background: rgba(0, 0, 0, 0.4); border-color: var(--secondary-blue); outline: none;
}
.input-group textarea { height: 120px; resize: none; }

.datenschutz-check { margin-bottom: 20px; font-size: 0.85rem; color: #cbd5e1; display: flex; align-items: center; gap: 10px; }
.datenschutz-check a { color: var(--highlight-yellow); text-decoration: underline; }

.submit-btn {
  display: block; width: 100%; padding: 16px; border-radius: 12px; border: none;
  background: linear-gradient(135deg, var(--secondary-blue) 0%, #3b82f6 100%);
  color: white; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  cursor: pointer; box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4); transition: all 0.3s ease;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5); }
.versprechen { text-align: center; margin-top: 20px; font-size: 0.8rem; color: #94a3b8; opacity: 0.8; }


/* --- Google Review & WhatsApp Section --- */
.google-review-section { padding: 50px 20px; text-align: center; background: #f1f5f9; }
.google-review-section h2 { font-size: 1.8rem; margin-bottom: 10px; }
.google-review-btn {
  display: inline-flex; align-items: center; justify-content: center; width: 100%; max-width: 320px;
  margin: 20px auto 10px; padding: 14px 24px; font-size: 1rem; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, #fbbc05, #f59e0b); border-radius: 50px;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3); transition: transform 0.2s ease;
}
.google-review-btn:hover { transform: translateY(-3px); }
.review-hint { display: block; font-size: 0.8rem; color: #94a3b8; }


.whatsapp-cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  text-align: center;
  color: white;
}

.whatsapp-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.whatsapp-icon-big {
  font-size: 4rem;
  margin-bottom: 20px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-cta-section h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 15px;
}

.whatsapp-cta-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.whatsapp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: white;
  color: #25D366;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.whatsapp-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #f0f9ff;
}

.whatsapp-cta-btn .wa-icon {
  font-size: 1.5rem;
}


/* --- Footer --- */
footer { background: #020617; color: #64748b; padding: 40px 0; border-top: 1px solid #1e293b; font-size: 0.9rem; }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-nav a { color: #94a3b8; margin-left: 25px; transition: color 0.2s; }
.footer-nav a:hover { color: white; }


/* --- Mobile Anpassungen --- */
@media (max-width: 900px) {
  .hero-title { font-size: 3rem; }
  .content-split { grid-template-columns: 1fr; }
  .team-images { margin-top: 30px; }
}

@media (max-width: 768px) {
  
  .menu-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; width: 100%; 
    background: white; border-top: 1px solid #e2e8f0;
    padding: 20px; display: none; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .main-nav.active { display: block; animation: slideDown 0.3s ease forwards; }
  @keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
  
  .main-nav ul { flex-direction: column; gap: 15px; align-items: flex-start; }
  .main-nav a { display: block; font-size: 1.1rem; padding: 5px 0; }
  .main-nav a.nav-cta { width: 100%; text-align: center; margin-top: 10px; }

  
  .hero { min-height: 100vh; padding-top: 100px; background-position: 25% center; }
  .hero-title { font-size: 2.5rem; line-height: 1.1; }
  
 
  .checkbox-group, .input-row { grid-template-columns: 1fr; }
  .kontakt-formular { padding: 25px 20px; }
  .footer-content { flex-direction: column; text-align: center; gap: 15px; }
  .footer-nav a { margin: 0 10px; display: inline-block; }
  
  
  /* Mobile Logo Anpassung */
  .logo-container {
    padding-right: 10px;
  }
  
  .brand-name {
    font-size: 1rem;
  }
  
  .logo {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .hero-subline { font-size: 1rem; }
  .cta-button { width: 100%; text-align: center; padding: 15px 20px; font-size: 0.95rem; }
  .ueber-uns h2 { font-size: 1.8rem; }
  .leistungs-card { padding: 30px 20px; }
  .card-bg-icon { display: none; } 
  
  
  .team-images { 
    flex-direction: row;  
    gap: 15px;            
    justify-content: center;
  }
  
  .img-wrapper { 
    width: auto;         
    flex: 0 0 auto;
  }
  
  .img-wrapper img { 
    width: 110px; 
    height: 150px; 
    border: 3px solid white;
    border-radius: 12px;
  }

  .name-tag {
    font-size: 0.75rem;   
    padding: 6px 10px;
    margin-top: -15px;
  }
  
  
  .logo-container {
    gap: 8px;
  }
  
  .brand-name {
    font-size: 0.85rem;
  }
  
  .logo {
    width: 70px;
    height: 70px;
  }
}


/* =========================
   BASIS
   ========================= */

:root {
  --primary: #1f2937;      /* dunkles Grau */
  --accent: #2563eb;       /* modernes Blau */
  --bg: #f3f4f6;           /* helles Grau */
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Inter, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* =========================
   HEADER
   ========================= */

.site-header {
  background: linear-gradient(135deg, var(--primary), #000);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.site-header h1 {
  margin: 0;
  font-size: 2.4rem;
  letter-spacing: -0.5px;
}

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

.content {
  max-width: 900px;
  margin: -40px auto 60px;
  padding: 0 20px;
}

.impressum {
  background: var(--card);
  padding: 40px;
  border-radius: 14px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.06),
    0 4px 10px rgba(0, 0, 0, 0.04);
}

/* =========================
   TYPOGRAFIE
   ========================= */

.impressum h2 {
  margin-top: 40px;
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: var(--primary);
}

.impressum h2:first-of-type {
  margin-top: 0;
}

.impressum p {
  margin-bottom: 18px;
  color: var(--text);
}

.impressum strong {
  font-weight: 600;
}

/* =========================
   LINKS
   ========================= */

a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* =========================
   FOOTER
   ========================= */

.site-footer {
  background: #111827;
  color: #d1d5db;
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
}

.site-footer a {
  color: #e5e7eb;
  margin: 0 8px;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 600px) {
  .site-header {
    padding: 40px 15px;
  }

  .site-header h1 {
    font-size: 1.9rem;
  }

  .impressum {
    padding: 25px;
  }
}

/* =========================
   PRINT (RECHTSSICHER)
   ========================= */

@media print {
  header,
  footer {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000;
    font-size: 12pt;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
  }

  .impressum {
    box-shadow: none;
    padding: 0;
  }
}


