html {
    background: #191226;
    box-sizing: border-box;
}

/* body {
    width: 100%;
    max-width: 1440px;
    padding: 36px;
} */

body {
    max-width: 1440px;
    width: 100vw;
    margin: 0 auto;
    padding: 36px;
    overflow-x: hidden; /* Ensures no horizontal scrolling */
    box-sizing: border-box;
}
@media (max-width: 480px) {
    body {
        padding: 28px;
    }
}

/* Navbar Styling */

header.navbar-container {
    width: 100%;
    position: sticky;
    top: 36px;
    /* padding-top: 24px; */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;

}
.navbar-brand {
    text-decoration: none;

}
.navbar-brand h1 {
    color: #F4F3C6;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    text-shadow: 0px 0px 12px #F4F3C6;
    text-decoration: none;
}

.nav-links a {
    color: #F4F3C6;
    text-decoration: none;
    margin-left: 24px;
}

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

/* Hamburger Menu Button */
.hamburger {
    display: none;
    font-size: 15px;
    background: none;
    color: #F4F3C6;
    border: none;
    cursor: pointer;
}

/* Navbar Overlay Styling */
.overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background-color: #191226;
    overflow-x: hidden;
    transition: width 0.4s ease;
    z-index: 1000;
    box-shadow: -4px 0px 48px 0px #F4F3C6;
}

.overlay.active {
    width: 80%;
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.overlay-content a {
    color: #F4F3C6;
    font-size: 15px;
    margin: 1rem; /* ADJUST ----------- */
    text-decoration: none;
    transition: color 0.3s ease;
}

.overlay-content a:hover {
color: #ff4cc3;
}

/* Close Button in Overlay */
.closebtn {
    position: absolute;
    top: 20px;
    right: 35px;
    font-size: 2rem;
    color: #F4F3C6;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 780px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

/* Imprint */
footer {
    position: fixed;
    bottom: 0;
    left: 36px;  /* Match body padding */
    right: 36px; /* Match body padding */
    font-size: 13px;
    color: #F4F3C644;
    display: flex;
    justify-content: space-between;
    padding-bottom: 24px;
}

footer a {
    color: #F4F3C644;
    text-decoration: none;
}

footer a:hover {
    color: #F4F3C6;
    text-decoration: underline;
}

.footer-info {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.imprint {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.imprint h2 {
    font-size: 18px;
    margin-bottom: 12px;
}

.imprint h3 {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.4;
    margin-bottom: 4px;
}

.imprint p {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.4;
}

@media (max-width: 480px) {
    /* Reduce body padding on mobile */
    body {
        padding: 28px;
    }
    /* Footer 100% of body width, account for body padding */
    footer {
        left: 28px;  /* Match body padding for mobile */
        right: 28px; /* Match body padding for mobile */
    }
}
