* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Bahnschrift, sans-serif;
    background: #eeeff4;
    overflow: hidden;
}

.home-layout {
    display: flex;
    height: 100dvh;
    width: 100%;
}
.seo-heading {
    position:absolute;
    left:-9999px;
}
.home-header {
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    display: none;
    background: white;
    overflow: hidden;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.header-logo img {
    width: 28px;
    height: 28px;
}

.header-logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.open-sidebar-btn{
    display: flex;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    background: rgba(52, 71, 103, 0.82);
    border-radius: 360px;
    justify-content: center;
    justify-items: center;
    align-items: center;
}
.open-sidebar-btn img{
    width: 15px;
    height: 15px;
}
.open-sidebar-btn:hover{
    background: rgb(52, 71, 103);
}

.sidebar {
    width: 260px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 25px 15px;
    background: #344767;
    position: relative;
    overflow: hidden;
}

.sidebar::after {
    content: "";
    position: absolute;
    top: 20%;
    right: -60px;
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.sidebar::before {
    content: "";
    position: absolute;
    bottom: 10%;
    left: -70px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}




.sidebar-logo-container {
    text-align: center;
    animation: fadeInUp 0.6s ease both;

}
.sidebar-logo {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 2px 6px rgba(255,255,255,0.2));
}

.site-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 10px;
}
.site-tagline {
    font-size: 0.85rem;
    color: #cac9c9;
    font-style: italic;
    margin-top: 4px;
    font-weight: 600;
}
.sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 13px;
    z-index: 1;
    animation: fadeInUp 0.6s ease both;
    overflow-y: auto;
}
#minimumSidebarMenu{
    display: none;
}
#fullSidebarMenu{
    display: flex;
}

.menu-item {
    color: #d1d1d1;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.menu-item:hover, .menu-item.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Main Content */
.home-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    position: relative;
}

@media (max-width: 900px) {
    body{overflow: auto;}

    .home-header{display: flex; padding: 14px 18px;}

    .home-content{padding: 24px; width: 100%; }

    .sidebar{
        width: fit-content;
        height: 100%;
        min-height: 100dvh;
        position: fixed;
        z-index: 2000;
        padding: 25px 7px;
        transform: translateX(-100%);
        transition: transform 220ms ease;
        will-change: transform;
        justify-content: flex-start;

    }

    .sidebar.is-open {
        transform: translateX(0);
    }



    .sidebar-logo,
    .site-name,
    .site-tagline {
        display: none;
    }
    .menu-item{ gap: 7px; padding: 7px 7px; }

    .sidebar-menu{ align-content: flex-start; justify-content: flex-start; justify-items: flex-start;}
    .sidebar-menu a{
        display: flex;
        flex-direction: column;
        font-size: 11px;
        font-weight: 600;
    }

    #fullSidebarMenu{display: none;}

    #minimumSidebarMenu{display: flex;}

}

@media (max-width: 600px) {
    .home-header {
        display: flex;
        padding: 12px 12px;
    }

    .header-logo-text {
        font-size: 16px;
    }

    .home-content {
        padding: 14px;
    }



}