/* Grundlayout */
body {
    background-color: #0a192f;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* Footer */
.bg-dark-blue {
    background-color: #08162b !important;
}

/* Navbar */
.navbar {
    background-color: rgba(8, 22, 43, 0.7); /* leicht transparent */
    transition: background-color 0.5s ease;
    z-index: 1000;
}

/* Welcome Section mit Bild und Verlauf */
.welcome-section {
    position: relative;
    height: 400px;
    background: url("https://florian-schildt.de/florian_wartung.jpg") center 85% / cover no-repeat;
    overflow: hidden;
}

.welcome-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.5) 70%,
        rgba(12, 34, 61, 1) 100%
    );
    z-index: 1;
}

.welcome-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-section h1,
.welcome-section p {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

/* Contentbereich */
section.bg-dark {
    background-color: #0c223d !important;
}

/* Tabellen – modern und angepasst ans Farbschema */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #0c223d;
    color: #ffffff;
    border: 1px solid #1a2c42;
    font-size: 0.95rem;
}

.custom-table th,
.custom-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #1a2c42;
}

.custom-table thead th {
    background-color: #08162b;
    color: #aad3ff;
    font-weight: 600;
    border-bottom: 2px solid #1a2c42;
}

.custom-table tbody tr:hover {
    background-color: #112c47;
    transition: background-color 0.3s ease;
}

.custom-table a {
    color: #aad3ff;
    text-decoration: none;
}

.custom-table a:hover {
    text-decoration: underline;
}
