html, body {
      background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
      color: white;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        height: 100%;
        margin: 0;
        padding: 0;
        background: linear-gradient(to right, #2c3e50, #38495a, #2c5364);
        color: #f1f1f1;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        overflow-x: hidden;
    }
    .hero {
      padding: 100px 0;
      text-align: left;
    }
    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
    }
    .hero p {
      font-size: 1.25rem;
      margin-bottom: 2rem;
    }
    .hero img {
      max-width: 100%;
      height: auto;
    }
    .store-buttons a {
      margin-right: 15px;
    }
    nav a.nav-link {
      color: white;
    }
    nav a.nav-link:hover {
      color: #aaa;
    }

.roadmap-modern {
    background: linear-gradient(to right, #1f2937, #2c3e50);
    color: #f1f1f1;
}

.roadmap-modern h2 {
    font-size: 2.4rem;
    font-weight: bold;
}

.roadmap-card {
    background-color: #2f3e50;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.roadmap-card:hover {
    transform: translateY(-5px);
}

.roadmap-card .card-title {
    font-weight: 600;
}

.roadmap-card .card-text {
    font-size: 0.95rem;
    color: #d1d5db;
}

.custom-navbar {
    background: linear-gradient(to right, #1f2937, #2c3e50);
    color: #f1f1f1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.custom-navbar .nav-link {
    color: #f1f1f1;
    margin-left: 1rem;
    font-weight: 500;
}

.custom-navbar .nav-link:hover {
    color: var(--primary);
}

.navbar-brand img {
    height: 48px;
    transition: all 0.2s ease;
}

.sticky-top {
    position: sticky;
    top: 0px;
}

.logo-img {
    transform: scale(2.0);       /* Faktor 1.0 = 100%, 1.4 = 140% */
    transform-origin: left center;
    transition: transform 0.2s ease;
    height: 48px;                /* Beibehaltung der Ursprungshöhe */
}

.doc-hero {
    background: linear-gradient(to right, #1f2937, #2c3e50);
}

.doc-content h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

pre {
    background-color: #111827;
    color: #f8f8f2;
    padding: 1rem;
    border-radius: 8px;
    font-family: monospace;
    overflow-x: auto;
}

.nav-link {
    color: #aaa;
    margin-bottom: 0.5rem;
}

.nav-link:hover {
    color: var(--primary);
}

.lifted-icon {
    position: relative;
    top: -2px;
}

.powered-by img {
    height: 30px;
    opacity: 1;
    transition: transform 0.2s ease;
    object-fit: contain;
}

.powered-by img:hover {
    transform: scale(1.1);
}

.powered-by-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem; /* 👈 Abstand nach unten hinzufügen */
}

.powered-by-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: #f1f1f1;
}

.powered-icon {
    height: 36px;
    width: 85px;
    transition: transform 0.2s ease;
}

.powered-icon:hover {
    transform: scale(1.1);
}

section[id]::before {
    content: "";
    display: block;
    height: 100px;         /* Höhe deiner Navbar */
    margin-top: -100px;
    visibility: hidden;
}

section[id] {
    scroll-margin-top: 1000px; /* oder Höhe deiner Navbar */
}

form .form-control {
    background-color: #1f2937;     /* Dunkler Hintergrund */
    color: #f1f1f1;                /* Helle Schrift */
    border: 1px solid #444;        /* Dezenter Rand */
    border-radius: 6px;
}

form .form-control::placeholder {
    color: #aaa;                   /* Hellerer Platzhalter */
}

form .form-control:focus {
    background-color: #2c3e50;
    border-color: var(--primary); /* Wenn du eine Akzentfarbe nutzt */
    box-shadow: none;
}

