/* Account */
:root {
    --gray-bg: #272727;
    --dark-bg: #303d49;
    --medium-bg: #334d66;
    --light-bg: #f8f8f8;
    --accent-bg: #8b99e1;
    --accent-color: #334d66;
}
*{
    font-family: "articulat-heavy-cf", sans-serif;
    font-weight: 900;
    font-style: normal;
}
p{
    font-weight: 500;
}

h3 h4{
    font-weight: 700;
}
/* navbar */
.navbar{
    position: fixed;
    top: 0;
    height: 100px;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 40px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    background-color: var(--dark-bg);
    color: white;
    float: right;
    z-index: 1001;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin-right: 40px;
}

.navbar ul li {
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
    margin-left: 20px;
    transition: background-color 0.5s ease;
}

.navbar ul li:hover {
    color: #ffffff;
    background-color: var(--medium-bg);
    cursor: pointer;
    transition: background-color 0.5s ease;
}

.navbar ul li a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: color 0.5s ease;
}

.navbar .logo {
    height: 40px;
    margin-left: 40px;
}

/* side menu */
.side-menu{
    text-align: center;
    display: block;
    position: fixed;
    top: 100px;
    left: 0px;
    width: 300px;
    height: calc(100vh - 100px);
    padding-top: 20px;
    background-color: #272727;
    color:#efefef;
    box-shadow: 0 0 10px rgba(0,0,0,0.8);
    overflow-y: auto;
    z-index: 1000;
    opacity: 1;
    transition: left 0.5s ease, opacity 0.5s ease, width 0.5s ease, height 0.5s ease;
}

.side-button{
    display: block;
    margin: 0;
    width: 100%;
    padding: 10px;
    background-color: inherit;
    color: #ffffff;
    text-decoration: none;
    box-shadow: none;
    border: none;
}

.side-button:hover{
    background-color: #373e40;
    color: white;
    cursor: pointer;
}

/* content */
.content{
    position: fixed;
    top: 100px;
    left: 300px;
    right: 0;
    height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    transition: left 0.5s ease;
}
.Hamburger-Side-Menu-Icon{
    position: absolute;
    top: 15px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.5s ease;
}
@media (max-width: 1200px) {
    .side-menu {
        left: -250px;
    }
    
    .side-menu * {
        opacity: 0;
        transition: opacity 0.5s ease;
    }
    
    .side-menu:hover * {
        opacity: 1;
    }
    
    .side-menu:hover {
        left: 0;
    }
    .content {
        left: 50px;
    }
}
@media (max-width: 768px) {
    .navbar {
        height: 80px;
        padding: 10px;
        margin-bottom: 20px;
    }

    .navbar ul {
        margin-right: 20px;
    }

    .navbar ul li {
        padding: 5px 10px;
        margin-left: 10px;
    }

    .navbar .logo {
        height: 30px;
        margin-left: 20px;
    }
    @keyframes bobbing {
        0% { height: 30px; }
        50% { height: 40px; }
        100% { height: 30px; }
    }

    .side-menu {
        top: 80px;
        height: 40px;
        width: 100vw;
        left: 0;
        opacity: 1;
        overflow: hidden;
        animation: bobbing 4s infinite ease-in-out;
        transition: height 1s ease;
    }

    .side-menu:hover{
        opacity: 1;
        animation: none;
        height: fit-content;
        
    }
    .content {
        top: 100px;
        left: 0;
        right: 0;
        padding-top: 20px;
    }
}

