:root {
    /* Brand colors */
    --bs-primary: #E34234;
    --bs-primary-2: #FAD9D7;
    --bs-secondary: #BEBEC7;
    --bs-success: #2ec4b6;
    --bs-danger: #e63946;
    --bs-background: #D9D9D9;

    /* Typography */
    --bs-body-font-family: 'Inter', system-ui, sans-serif;
    --bs-body-font-size: 1rem;
    --bs-body-line-height: 1.6;

    /* Layout */
    --bs-border-radius: 0.75rem;
    --bs-border-radius-sm: 0.5rem;
    --bs-border-radius-lg: 1rem;

    /* Links */
    --bs-link-color: var(--bs-primary);
    --bs-link-hover-color: #3c096c;

    /* Background */
    --bs-body-bg: #D9D9D9;
    --bs-body-color: #E34234;
}


.app-wrapper {
    max-width: 520px;   /* mobile feel */
    width: 100%;
    min-height: 100vh;
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.08);
}

.barDiv {
    background-color: var(--bs-primary);

}

.barDiv i {
    align-self: center;
    color: var(--bs-background);
    font-size: 2.35rem;
}

.verLogText {
    font-family: Texturina, "Grenze Gotisch",'Lato','Oswald','Montserrat', sans-serif;
    font-size: 0.45rem;
    letter-spacing: 0.1rem;
}

.titleDiv h6 {
    font-size: 1.14rem;
}

.nav-pills {
    background-color: var(--bs-secondary);
    position: absolute;   /* removes it from normal flow */
    bottom: 5%;            /* sticks to bottom */
    left: 0;
    width: 85%;
    max-width: 520px;
    color: white;
    z-index: 1000;        /* ensures it stays on top */
}

.nav-pills i {
    font-size: 1.15rem;
    font-weight: bolder;
}

@media (min-width: 521px) { /* tablets and up */
    .nav-pills {
        position: absolute;   /* footer sticks at page bottom, scrollable */
        bottom: 5%;
        left: 50%;
        transform: translateX(-55%); /* center in viewport */
        max-width: 500px;     /* match your mobile wrapper width */
        border-radius: 12px 12px 0 0;
        box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
        margin-left: auto;
        margin-right: auto;
    }
}

