/* ===== Dark Mode Basis ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0a0f1a;   /* dunkler Hintergrund */
  color: #e0e0e0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== Header ===== */
.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Logo | Navi | Login */
  align-items: center;
  background-color: #111827;
  padding: 15px 30px;
  border-bottom: 2px solid #14a6ff;
}

/* Logo links */
.brand {
  justify-self: start;
}
.brand img {
  height: 150px;
  display: block;
}

/* Navi mittig */
.links {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.links a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
}
.links a:hover {
  background-color: #14a6ff;
  color: #0a0f1a;
}

/* Login rechts */
.login {
  justify-self: end;
}
.login a {
  color: #e0e0e0;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
}
.login a:hover {
  background-color: #14a6ff;
  color: #0a0f1a;
}

/* ===== Hauptbereich ===== */
.content {
  flex: 1; /* schiebt Footer nach unten */
  padding: 40px 20px;
  text-align: center;
}

/* ===== Footer ===== */
.footer {
  background-color: #111827;
  color: #b0b0b0;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #14a6ff;
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  color: #14a6ff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}
.footer-links a:hover {
  text-decoration: underline;
}    



h1 {
  color: #f57c00; /* Orange */
}
        
strong {
  display: block;
  margin-top: 15px;
 }


 .service-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.btn {
  background: linear-gradient(135deg, #14a6ff, #0b7cd5);
  color: #0a0f1a;
  padding: 14px 36px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(20, 166, 255, 0.6);
  transition: all 0.3s ease;
  min-width: 250px;
  text-align: center;
  user-select: none;
}

.btn:hover, 
.btn:focus {
  background: #0b7cd5;
  color: #e0e0e0;
  box-shadow: 0 6px 18px rgba(20, 166, 255, 0.9);
  transform: translateY(-3px);
  outline: none;
  cursor: pointer;
}

