header {
    position: sticky;
    color: #fff;
    top: 0;
    z-index: 1000;
}
.siteHeader {
    position: sticky;
    top: 0;
    z-index: 9999;
    isolation: isolate;
    backdrop-filter: saturate(120%) blur(6px);
    background: #5a0e1f79;
    border-bottom: 1px solid rgb(255 255 255 / 12%);
}
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0; 
    width: min(1200px, 100% - 40px);
    margin-inline: auto;
}

.brandLogo {
    height: 40px;
    width: 50px;
    margin-right: auto;
}
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 15px;
    display: flex; 
    align-items: center;
}

.nav-links .nav-logo {
    height: 30px;
    width: auto; 
    margin-right: 10px; 
    border: 2px solid rgb(255 255 255 / 12%);
    border-radius: 15px;
    box-shadow: 0 10px 8px rgba(14, 14, 14, 0.2);
}

.nav-links a {
    color: #fff;
    text-decoration: none;
}

.nav-links a:hover {
    padding: 10px;
    background-color: #5a0e1e;
    border: none;
    border-radius: 5px;
}

        /* Mobile Styles */
.menu-toggle {
    display: none; 
}

@media (max-width: 768px) {
    .nav-links {
        display: none; 
        flex-direction: column;
        position: absolute; 
        top: 60px; 
        right: 0; 
        background-color: #333; 
        width: 200px;
        z-index: 1000; 
        padding: 10px 0; 
    }
    .nav-logo {
    height: 40px; 
    width: auto; 
    margin-right: 10px; 
    border: 2px solid rgb(255 255 255 / 12%);
    border-radius: 15px;
    box-shadow: 0 10px 8px rgba(14, 14, 14, 0.2);
  }
    .nav-links.active {
        display: flex; 
        top: 100%;
    }

    .menu-toggle {
        display: flex; 
        flex-direction: column;
        cursor: pointer; 
    }

    .bar {
        height: 3px; 
        width: 25px; 
        background-color: #fff; 
        margin: 3px 0; 
    }
    .brandLargeLogoLanding {
        height: 40px; 
        width: auto;
    }
}

.nav-links li {
    text-align: left; 
    padding: 10px 15px; 
}

.drawer {
    position: fixed; 
    top: 91px; 
    right: 0; 
    bottom: 0; 
    width: min(84vw, 250px); 
    transform: translateX(100%); 
    transition: transform .25s ease; 
    backdrop-filter: saturate(120%) blur(6px);
    background: #5a0e1f79;;
    border-left: 1px solid rgb(255 255 255 / 12%);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    display: grid;
    align-content: start;
    gap: 4px;
    padding: 16px;

}

.drawer-links {
    display: flex;
    gap: 23px;
    flex-direction: column;
}

.drawer-buttons {
    display: flex;
    flex-direction: row; 
    align-items: center; 
    gap: 23px; 
}

.drawer-links a:hover {
            padding: 10px;
            background-color: #5a0e1e;
            border: none;
            border-radius: 5px;
        }

.overlay {
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: rgba(0, 0, 0, 0.5); 
    display: none; 
    z-index: 9997; 
}

.overlay.active {
    display: block; 
}