/* Layout: Body + Footer immer unten */
html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

.nav-custom {
    background-color: #f2f2f2;
    /* leicht dunkler als weiß */
    border-bottom: 2px solid #d9d9d9;
    /* dezente, schöne Kante */
}

.footer-custom {
    background-color: #f2f2f2;
    /* passend */
    border-top: 2px solid #d9d9d9;
    /* passend */
    padding: 10px 0;
}

/* Begrüßungs-Styles (für index.html) */
.welcome-block {
    text-align: center;
    margin-top: 40px;
}

.welcome-main {
    font-size: 2.1rem;
    font-weight: 700;
    color: #333;
}

.welcome-sub {
    font-size: 1.3rem;
    margin-top: -5px;
    color: #555;
}

/* Große Buttons auf der Index */
/* Große Buttons auf der Index */
.big-menu-btn {
    width: 320px;
    padding: 16px 20px;
    font-size: 1.25rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background-color: #0d6efd;
    color: white;
    text-decoration: none;

    display: grid;
    grid-template-columns: 40px 1fr;
    /* ICON | RESTPLATZ */
    align-items: center;

    transition: transform .15s, background-color .15s;
}

/* ICON BLOCK links */
.big-menu-btn i {
    font-size: 1.4rem;
    width: 40px;
    /* feste Breite = Icon-Zone */
    text-align: left;
    /* bleibt links */
}

/* TEXT perfekt zentriert NUR im Restbereich */
.big-menu-btn .btn-text {
    text-align: center;
    width: 100%;
}

.big-menu-btn:hover {
    transform: translateY(-3px);
    background-color: #0b5ed7;
}


/* Abstand unter den Buttons, damit sie nicht am Footer kleben */
.menu-container {
    margin-top: 35px;
    margin-bottom: 40px;
    /* <-- hinzugefügt */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}


/* Einheitliche Icon-Größe */
.big-menu-btn i,
.nav-link i {
    font-size: 1.4rem;
}

/* Footer-Links schöner darstellen */
.footer-links a {
    color: #444;
    font-weight: 500;
    text-decoration: none;
    margin: 0 4px;
    /* kleinerer Abstand */
    transition: color 0.2s, opacity 0.2s;
}

.footer-links a:hover {
    color: #0d6efd;
    opacity: 0.9;
    text-decoration: underline;
}

/* Trennzeichen zwischen Links */
.footer-sep {
    color: #666;
    margin: 0 3px;
    /* kleiner Abstand */
    font-weight: 600;
    opacity: 0.7;
}

/* Footer Größen & Harmonie */
.footer-custom {
    font-size: 0.95rem;
}

.footer-custom .text-muted {
    font-size: 0.85rem;
}