/* main container */

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

#content {
    background: var(--background-color);
    display: block;
}

/* sidebar */
.sidebar {
    background: var(--primary-color); /*#222; */
    flex: 1;
    min-height: auto;
    height: 100%;
}

.header-image {
    margin-top: 0;
}

.header-image img {
    margin-top: 32px;
    width: 64px;
}

.site-footer {
    font-size: small;
    display: none;
}

.sidebar-content {
    /*padding: 8px;*/
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    height: 100%;
    /*text-align: center;*/
    /*margin: 8px;*/
}

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

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

.header-title {
    display: inline;
    font-size: 24px;
}

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

.content {
    flex: 8;
}

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

/* @media screen and (max-width: 1024px) and (min-width: 640px) {
    .header-image {
        margin-top: 0;
    }
    .header-image img {
        margin-top: 32px;
        width: 64px;
    }
    .header-title {
        display: inline;
    }
    .main-content {
        display: block;
    }
    .content {
        flex: 8;
    }
    .sidebar {
        flex: 12;
        height: auto;
    }
} */

/* @media screen and (max-width: 639px) and (min-width: 320px) {
    .sidebar-content {
        flex-direction: row;
    }

    .sidebar-header {
        flex: 1;
    }
} */

/* menu container */

.menu-container {
    flex: 8;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    padding: 32px 64px;
    gap: 16px;
/* 
    flex-direction: row-reverse;
    justify-content: space-between;
    vertical-align: middle;
    padding: 32px 64px; */
}

.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: 32px;
}

.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: row;
    margin: 0;
    gap: 16px;
    height: 100%;
    align-items: center;
    justify-content: center;

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

.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;
}