:root {
  --main-color: white;
  /* Tomato Red */
  --accent-color: #d6e8d5;
  /* Lime Green */
  --background-color: rgb(231, 223, 223);
  /* Ghost White */
  --text-color: #333333;
  /* Dark Gray */
  --highlight-color: #FFD700;
  /* Gold */
  --button-color: #d6e8d5;
  --active-color: #c6d88d;
  --super-active-color: #268b92;
  --close-color: black;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  /* base size for the whole document */
}

/* Language Selector Styles */
.language-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  padding-right: 1rem;
}

.language-selector .lang-link {
  text-decoration: none;
  color: var(--text-color);
  padding: 6px 10px;
  border-radius: 4px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.language-selector .lang-link:hover {
  background-color: var(--accent-color);
  color: var(--super-active-color);
}

.language-selector .lang-link.active {
  background-color: var(--accent-color);
  font-weight: 600;
  color: var(--super-active-color);
}

.language-selector .lang-divider {
  color: #ddd;
  font-weight: 300;
}

@media (max-width: 600px) {
  .language-selector {
    font-size: 0.8rem;
    padding-right: 0.5rem;
    gap: 4px;
  }
  
  .language-selector .lang-link {
    padding: 4px 6px;
  }
}

.css-tabs {
  max-width: 600px;
  margin: 1.5rem auto;
  font-family: inherit;
  margin: 1.5rem 0.7rem;
}

.css-tabs input[type="radio"] {
  display: none;
}

.css-tabs .tabs-nav {
  display: flex;
  gap: 0.25rem;
  border-bottom: 2px solid #e5e5e5;
}

.css-tabs .tab-labels {
  display: flex;
  justify-content: left; /* Zentriert die Tabs */
  gap: 8px;
  margin-bottom: -1px; /* Sorgt für einen nahtlosen Übergang zum Inhalt */
}

.css-tabs .tab-label {
  padding: 12px 24px;
  cursor: pointer;
  background: #f1f3f5; /* Ein etwas weicheres Grau */
  border: 1px solid #e9ecef;
  border-bottom: none;
  border-radius: 12px 12px 0 0; /* Schönere Rundungen */
  font-weight: 500;
  color: #333333;
  transition: all 0.2s ease;
  text-align: center;
  box-shadow: none; /* Wir entfernen den alten Schatten für einen flacheren Look */
}

.css-tabs .tab-label:hover {
  background: #e9ecef;
  color: var(--super-active-color);
}

.css-tabs .tab-labels .tab-label {
  font-weight: normal;
  cursor: pointer;
  background: #f3f6fa;
  border-color: #e6edf3;
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.02);
  padding: 0.5rem 0.9rem;
  border-radius: 6px 6px 0 0;
  transition: background .15s, color .15s, box-shadow .15s;
}

/* focus style for keyboard users */
.css-tabs .tab-label:focus {
  outline: 2px solid rgba(59, 130, 246, 0.35);
  outline-offset: 3px;
  border-radius: 6px 6px 0 0;
}

/* Aktive/Ausgewählte Tab-Styles */
#tab-team:checked ~ .tab-labels label[for="tab-team"],
#tab-catering:checked ~ .tab-labels label[for="tab-catering"],
#tab-about-us:checked ~ .tab-labels label[for="tab-about-us"] {
  background: #fff;
  color: var(--super-active-color);
  font-weight: 600;
  border-top: 3px solid var(--super-active-color); /* Deine Markenfarbe als Akzent-Linie */
  border-color: #e0e0e0 #e0e0e0 transparent #e0e0e0; /* Rahmen nur unten offen */
  padding-top: 10px; /* Gleicht die 3px border aus, damit die Höhe gleich bleibt */
}

.css-tabs .tabs-panels {
  /* border: 1px solid #e0e0e0; */
  padding: 1rem;
  border-radius: 0 6px 6px 6px;
  background: none;
}

.css-tabs .panel {
  display: none;
}

#tab-team:checked~.tabs-panels #panel-team,
#tab-catering:checked~.tabs-panels #panel-catering,
#tab-about-us:checked~.tabs-panels #panel-about-us {
  display: block;
}

/* Responsive: stack labels on small screens */
@media (max-width: 520px) {
  .css-tabs .tabs-nav {
    flex-direction: column;
  }

  .css-tabs .tabs-nav label {
    border-radius: 6px;
  }
}

blockquote.quote {
  font-style: italic;
  line-height: 1.45;
  color: #2b2b2b;

  background: #fff8f3;
  /* subtle warm background */
  border-left: 4px solid #c94c4c;
  /* accent color */
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  border-radius: 4px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

blockquote.quote p {
  margin: 0;
  /* remove default paragraph spacing inside the quote */
}

/* Small screens */
@media (max-width: 600px) {
  blockquote.quote {
    padding: 0.75rem 1rem;
  }
}

blockquote {
  font-weight: 100;
  line-height: 1.4;
  position: relative;
  margin: auto;
  font-size: larger;
  /* padding: .5rem; */
}

blockquote:before,
blockquote:after {
  position: absolute;
  color: #f1efe6;
  width: 4rem;
  height: 4rem;
}

blockquote:before {
  content: '“';
  left: -5rem;
  top: -2rem;
}

blockquote:after {
  content: '”';
  right: -5rem;
  bottom: 1rem;
}

cite {
  line-height: 3;
  text-align: left;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  /* Bildquelle */
  background-image: url('bilder/260203/pizza/margerita_mit_splash.png');

  /* Positionierung: Rechts unten fixieren */
  background-repeat: no-repeat;
  background-position: right bottom;

  /* Die Magie: Auf kleinen Screens 70%, auf großen maximal eine feste Pixelzahl */
  background-size: clamp(300px, 70%, 1000px);
}

#tab-about-us:checked~.page-bg {
  /* Change the background properties here */
  background-image: url('me.png');
  /* Replace with your desired image path */
  background-size: 40%;
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  /* You can also change position, size, etc. if needed */
  background-position: center right;
  margin: auto;
  margin-right: 3rem;
  /*background-size: cover; */
}


.info-list {
  display: grid;
  gap: 12px; /* Abstand zwischen den Kärtchen */
  margin-top: 1.5rem;
}

.info-item {
  display: flex;
  /* padding: 15px; */
  margin: 0;
  border-radius: 8px;
}

/* Jeder zweite Eintrag bekommt einen ganz zarten grünen Schimmer (dein --accent-color) */
.info-item:nth-child(even) {
  background-color: rgba(214, 232, 213, 0.3); 
}

.info-item:hover {
  transform: translateX(5px); /* Kleiner "Slide-In" Effekt beim Drüberfahren */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-color: var(--accent-color);
}

.info-label {
  flex: 0 0 160px; /* Feste Breite für die Beschriftung */
  font-weight: 600;
  color:black;
  background: url('pizza.png') left center no-repeat;
  background-size: 22px;
  padding-left: 35px; /* Mehr Platz für das Icon */
}

.info-value {
  flex: 1;
  font-weight: 400;
  color: #555;
  border-left: 1px solid #eee; /* Trennlinie zwischen Label und Wert */
  /* padding-left: 15px; */
}

.contact-section {
  margin-top: 2rem;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.contact-section .cta-button {
  margin: 0;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: var(--button-color);
  color: var(--text-color);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-size: 1rem;
  font-family: inherit;
}

.download-button:hover {
  background-color: var(--active-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.download-button i {
  font-size: 1.1em;
}

/* attention-grabbing contact button fixed to bottom center */
.contact-button {
  position: fixed;
  left: 60%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 1100;

  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: #111;
  background: linear-gradient(90deg, #ff416c 0%, #ff8a00 50%, #ffd200 100%);
  box-shadow: 0 10px 30px rgba(255, 138, 0, 0.18), 0 3px 8px rgba(0, 0, 0, 0.18);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform .18s cubic-bezier(.2, .9, .2, 1), box-shadow .18s, filter .18s;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, box-shadow;
  animation: float 3s ease-in-out infinite, pulse-glow 1.8s ease-in-out infinite;
}

/* small arrow that nudges to the right */
.contact-button::after {
  content: '@';
  display: inline-block;
  margin-left: .4rem;
  font-size: 1.05em;
  transform-origin: 50% 50%;
  animation: arrow-nudge 1.4s ease-in-out infinite;
}

/* hover / active / focus */
.contact-button:hover,
.contact-button:focus {
  transform: translateX(-50%) scale(1.04);
  box-shadow: 0 18px 40px rgba(255, 138, 0, 0.26), 0 6px 16px rgba(0, 0, 0, 0.2);
  outline: none;
  filter: saturate(1.06);
}

.contact-button:active {
  transform: translateX(-50%) scale(.98);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

/* keyboard focus ring */
.contact-button:focus-visible {
  box-shadow: 0 12px 30px rgba(255, 138, 0, 0.22), 0 0 0 4px rgba(255, 138, 0, 0.12);
}

/* animations */
@keyframes float {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

@keyframes pulse-glow {
  0% {
    filter: drop-shadow(0 6px 18px rgba(255, 138, 0, 0.12));
  }

  50% {
    filter: drop-shadow(0 12px 34px rgba(255, 138, 0, 0.22));
  }

  100% {
    filter: drop-shadow(0 6px 18px rgba(255, 138, 0, 0.12));
  }
}

@keyframes arrow-nudge {
  0% {
    transform: translateX(0);
    opacity: 0.95;
  }

  50% {
    transform: translateX(6px);
    opacity: 1;
  }

  100% {
    transform: translateX(0);
    opacity: 0.95;
  }
}

/* responsive: reduce size on very small screens */
@media (max-width: 420px) {
  .contact-button {
    bottom: 12px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }

  .contact-button::after {
    margin-left: .35rem;
  }
}

.quote {
  font-size: 1.2rem;
  margin: 1rem;
  font-style: italic;
}

.author {
  text-align: right;
  margin-right: 2rem;
  font-size: 1rem;
  font-weight: bold;
}

/* --- Impressum Footer Styling --- */
#site-footer {
  /* Fixed position am unteren Rand des Viewports */
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;

  /* Dunkler Hintergrund */
  background-color: #222;
  padding: 10px 20px;
  z-index: 1000;
  /* Stellt sicher, dass er über dem Inhalt liegt */
  text-align: center;
}

/* Stil für den Impressum-Link */
.impressum-link {
  color: #fff;
  /* Weiße Schrift für den Kontrast */
  text-decoration: none;
  font-size: 0.9em;
  padding: 5px 10px;
  display: inline-block;
}

.impressum-link:hover {
  text-decoration: underline;
}

.cta-button {
  display: inline-block;
  background-color: var(--super-active-color);
  /* Pizza-Rot */
  color: #ffffff !important;
  padding: 14px 28px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--super-active-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-text {
  display: block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #555;
}

.carousel-container {
  position: relative;
  width: 90%; /* Increased for better mobile visibility */
  max-width: 500px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  /* Ensure the container itself has a solid background while loading */
  background-color: #f0f0f0; 
}

.insta-slider {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.insta-item {
  min-width: 100%;
}

.insta-item a {
  display: block;
  text-decoration: none;
  overflow: hidden; /* Keeps the zoom effect inside the rounded corners */
}

.slider-img:hover {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

.slider-img {
  width: 100%;
  /* This forces all images (portrait or landscape) into a perfect square */
  aspect-ratio: 1 / 1; 
  
  /* This crops the image to fill the square without stretching */
  object-fit: cover; 
  
  /* Ensures the 'meat' of the photo (the pizza) stays centered */
  object-position: center; 
  
  display: block;
  transition: opacity 0.3s ease;
}

/* Navigation Buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

/* Dots Navigation */
.dots-container {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.4);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.insta-cta {
  margin-top: 2rem;
  padding: 2rem;
  text-align: center;
  background: #f9f9f9;
  /* Dezenter Hintergrund */
  border-radius: 12px;
}

.insta-cta p {
  font-weight: bold;
  margin-bottom: 1rem;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white !important;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insta-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(188, 24, 136, 0.4);
}

.insta-link i {
  font-size: 1.4rem;
}

/* Page-BG auf Mobile ausblenden */
@media (max-width: 768px) {
  .page-bg {
    display: none !important;
  }
}

/* Page-BG auf Mobile ausblenden */
/* @media (max-width: 768px) {
    .page-bg {
        display: none !important;
    }
} */

#site-header header {
  display: flex;
  justify-content: left;
  /* Zentriert das Logo */
  padding: 20px;
}

.shop-icon {
  /* Skaliert das Bild auf 80% der Bildschirmbreite bei kleinen Geräten */
  width: 80%;

  /* Verhindert, dass das Logo auf riesigen Bildschirmen gigantisch wird */
  /* Setze hier die reale Breite deines Logos ein, z.B. 300px oder 400px */
  max-width: 350px;

  /* Sorgt dafür, dass die Proportionen beim Skalieren erhalten bleiben */
  height: auto;

  /* Verbessert die Darstellung beim Skalieren */
  display: block;
}

/* Optional: Auf sehr kleinen Handys etwas mehr Platz geben */
@media (max-width: 480px) {
  .shop-icon {
    width: 90%;
  }
}

p,
.lead,
.info-value {
  /* Erlaubt Zeilenumbrüche innerhalb von Wörtern, wenn nötig */
  overflow-wrap: break-word;
  word-wrap: break-word;
  /* max-width: 70%; */

  /* Verhindert, dass der Text den Container verlässt */
  word-break: normal;
}

.lead {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  text-align: left;
  /* oder justify, falls gewünscht */
}

* {
  box-sizing: border-box;
}

.info-item {
  /* Erlaubt dem Inhalt, auf mehrere Zeilen zu gehen */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 5px;
  width: 100%;
}

.info-label.info-value {
  /* Das ist die Klasse, die du im HTML für die Kursinhalte nutzt */
  display: inline-block;
  max-width: 90%;

  /* Der entscheidende Teil: */
  overflow-wrap: break-word;
  /* Bricht lange Wörter */
  white-space: normal;
  /* Erlaubt normale Zeilenumbrüche */
  line-height: 1.4;
  /* Bessere Lesbarkeit bei Mehrzeiligkeit */
}

/* Speziell für den ersten Punkt, falls er immer noch zickt */
.info-list li {
  overflow: hidden;
  /* Sicherung nach außen */
}

@media (max-width: 480px) {
  .tab-label {
    font-size: 0.85rem;
    /* Etwas kleinere Schrift */
    padding: 10px 5px;
    /* Weniger seitlicher Abstand */
    flex: 1;
    /* Alle Labels nehmen gleich viel Platz ein */
    text-align: center;
  }

  .tab-labels {
    display: flex;
    justify-content: space-between;
    gap: 2px;
  }
}

/* Highlight Box Styling */
.highlight-box {
  background-color: var(--active-color);
  border-left: 4px solid var(--accent-color);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  align-items: center;
  width: 90%;
}

.highlight-box p {
  margin: 0;
  color: var(--text-color);
  font-weight: bold;
  text-align: center;
  align-items: center;
}

/* Modal Hintergrund */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

/* Modal Box */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.close-modal {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
  color: #888;
}

/* Form Styling */
.form-group {
  margin-bottom: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row .form-group {
  flex: 1;
}

#contactForm label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 0.9em;
  text-align: left;
  /* Sorgt dafür, dass die Beschriftung im Formular linksbündig bleibt */
  color: var(--text-color);
}

#contactForm .cta-button {
  animation: none;
  /* Verhindert das "Hüpfen" im Formular */
  width: 100%;
  /* Macht den Button im Formular schön breit */
  margin-top: 20px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  box-sizing: border-box;
}

input:focus {
  border-color: #e63946;
  outline: none;
}

@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

input[readonly] {
  background-color: #f5f5f5;
  cursor: not-allowed;
  border-color: #eee;
  color: #666;
}

/* Optimierung für die schmalen Reihen im Modal */
@media (max-width: 400px) {
  .form-row {
    flex-direction: row;
    /* Behält PLZ/Stadt nebeneinander auch auf Mobile */
    flex-wrap: wrap;
  }
}

/* Markiert ungültige Felder, wenn der User bereits interagiert hat */
input:focus:invalid {
  border-color: #ff4d4d;
  box-shadow: 0 0 5px rgba(255, 77, 77, 0.2);
}

/* Stil für den Upload-Bereich */
.upload-wrapper {
  background: #f9f9f9;
  border: 1px dashed #ccc;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

#kitchen_img {
  font-size: 0.8rem;
}

/* Mobile Optimierung für das Formular */
@media (max-width: 480px) {
  .modal-content {
    width: 95%;
    margin: 2% auto;
    padding: 20px;
    max-height: 95vh;
    overflow-y: auto;
    /* Erlaubt Scrollen innerhalb des Modals auf kleinen Handys */
  }

  input,
  select,
  textarea {
    font-size: 16px;
    /* Verhindert das automatische Zoomen bei iOS */
    padding: 15px;
    /* Größere Touch-Fläche */
  }

  .form-row {
    flex-direction: column;
    /* Stapelt Felder auf Mobile */
    gap: 0;
  }

  .form-row .form-group {
    width: 100% !important;
    /* Überschreibt die 30%/70% Aufteilung */
  }
}

/* Animation für die Modals */
.modal-content {
  background-color: #fff;
    margin: 2% auto; /* Kleinerer Abstand nach oben auf Mobile */
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    
    /* SCROLL-LOGIK */
    max-height: 90vh;    /* Maximal 90% der Bildschirmhöhe */
    overflow-y: auto;    /* Zeigt Scrollbar nur wenn nötig an */
    scrollbar-width: thin; /* Schicke, schmale Scrollbar für Firefox */
}
.modal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-content::-webkit-scrollbar-thumb {
    background-color: var(--super-active-color);
    border-radius: 10px;
}

@keyframes slideIn {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.honeypot-field {
  display: none !important;
  visibility: hidden;
}

/* Fix für Mobile: Verhindert, dass das Modal hinter der Tastatur verschwindet */
@media (max-width: 600px) {
  .modal-content {
    padding: 20px;
    margin: 10px auto;
    width: 95%;
  }
}

#workshop-details, #oven-question-container {
    transition: all 0.3s ease-in-out;
}

.impressum-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    line-height: 1.6;
    color: #2d3436; /* Dein dunkles Grau */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Oder deine gewählte Font */
}

.impressum-container h1, .impressum-container h2 {
    color: #d35400; /* Dein Teigtraum-Orange/Braun */
    margin-top: 1.5em;
}

#impressum-footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #eee;
}