/* main container */
.main-container {
    min-height: 100dvh;
    max-height: 100dvh;
    width: 100%;
    margin: 0;
}

.main-content {
    background: var(--background-color);
    display: flex;
    max-height: 100dvh;
    /* height: 100%; */
}


/* sidebar */
.sidebar {
    /* background-color:  var(--primary-color); */
    background-image: linear-gradient(var(--primary-color), #2c5a6d9c), url('https://i.pinimg.com/1200x/5a/b7/bd/5ab7bd4fe49ce3b06596af4ca519593d.jpg');
    flex: 1;
    min-height: 100dvh
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    height: 100%;
}

.sidebar-header {
    text-align: center;
    margin: 0 8px 8px 8px;
}

.site-footer {
    text-align: center;
    justify-self: flex-end;
    width: 100%;
    font-size: small;
}

.header-title {
    font-size: 32px;
}

.content-container {
    background: #111;
    width: 100%;
}

.content {
    flex: 4;
    overflow-y: scroll;
}

/* menu container */

.menu-container {
    flex: 8;
    display: flex;
    flex-direction: column;
    padding: 16px 16px;
    gap: 16px;
}

.menu-container a {
    color: var(--menu-link);
    text-decoration: none;
    font-weight: bold;
}

.menu-container a:hover {
    color: var(--menu-link-hover);
    text-decoration: none;
    font-weight: bold;
}

.menu-container a:active {
    color: var(--menu-link-hover);
    text-decoration: none;
    font-weight: bold;
}

.menu-container ul {
    list-style: none;
    padding: 0;
}

.social-links {
    font-size: 24px;
}

.social-links ul {
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 16px;
    height: 100%;
    margin: 0;
}

/* navigation menu */

#nav-toggle {
    display: none;
}

.nav-menu {
    display: block;
}

.nav-menu ul {
    display: flex;
    flex-direction: column;
    margin: 0;
    gap: 8px;
}

.nav-menu li {
    background: #00000080;
}

.nav-menu li a {
    width: 100%;
    height: 100%;
    display: inline-block;
    padding: 8px;
}


/* @media screen and (max-width: 1024px) {
    .menu-container {
        flex-direction: row-reverse;
        justify-content: space-between;
        vertical-align: middle;
        padding: 32px 64px;
    }
    .social-links {
        font-size: 32px;
    }

    .nav-menu ul {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 16px;
        height: 100%;
    }
} */

/* footer */
.footer-container {
    height: 10dvh;
    background: #333;
    width: 100%;
    display: block;
}

/* utils */

.hr-style {
    margin: 0 48px;
}

.line-breaker {
    border: 1px solid #fff;
    width: 100%;
    height: 4px;
}