html, body {
    height: 100%;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    background-color: #111;
    color: #eee;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

main {
    flex: 1;
}

header, footer {
    background: #040404;
    padding: 1em 0;
}

/* Footer stays at bottom */
footer {
    text-align: center;
    font-size: 0.9em;
	color: #ffffff;
}


/* Nav styles */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1em;
}

a {
    color: #ddd;
    text-decoration: none;
}

a:hover {
    color: #fff;
}
.test {
    background-color: #040404;
}

.navbar {
    background-color: #040404;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container-fluid {
    display: flex;
    align-items: center; /* <-- Vertically center logo and links */
    justify-content: space-between;
    min-height: 50px; /* optional: set height */
}

.nav-logo {
    height: 48px;
    max-width: 200px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-family: sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #fff;
}