/* Allgemein */
body {
    background-color: #f8f9fa;
    font-family: "Segoe UI", "Helvetica Neue", sans-serif;
    color: #212529;
}

/* Logo */
header img {
    max-height: 80px;
    margin-bottom: 20px;
}

.hero {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 0.75rem 2rem rgba(0,0,0,0.05);
  }
  

/* Hauptüberschrift */
h1, h2, h3 {
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

/* Schritt-Karten */
.card.upgrade-card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
    border: none;
    border-radius: 0.75rem;
}

.card.upgrade-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.1);
}

/* Bild in Cards */
.card.upgrade-card img {
    max-height: 120px;
    object-fit: contain;
}

/* Footer */
footer {
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
}

/* Kontaktformular */
form label {
    font-weight: 500;
}

form .btn {
    min-width: 150px;
}

/* Buttons überall */
.btn {
    border-radius: 0.5rem;
    font-weight: 500;
}

/* Link-Styling */
a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.card {
    border-radius: 1rem;
    border: none;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: scale(1.01);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

h1, h2 {
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.btn {
    border-radius: 0.6rem;
    font-weight: 500;
}

.btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
  }
  .btn-primary:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
  }
  
  html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  
  body > .container {
    flex: 1; /* damit der Footer ganz unten bleibt */
  }
  