@font-face {
    font-family: "Maharlika";
    src: url("./assets/fonts/maharlika/Maharlika-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Amoresa";
    src: url("./assets/fonts/amoresa/Amoresa.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap");

* {
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
    width: 100vw;
    justify-items: center;
    align-content: center;
    background-color: white;
    background-size: cover;
    font-family: "Sansation", sans-serif;
}

body.menu-open {
    overflow: hidden;
}

.cms {
    height: 90vh;
    width: 90vw;
    display: flex;
}

.sidemenu {
    width: 20%;
    border-radius: 20px;
    background-color: #dce0d9;
    color: #1a1f16;
    padding-left: 20px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
}
.sidemenu a {
    color: #1a1f16;
    font-size: 20px;
    text-decoration: none;
}

.links,
.logout {
    width: 100%;
    align-content: center;
    height: 70vh;
    margin-left: -20px;
}
.links i,
.logout i {
    font-size: 25px;
    margin-right: 10px;
    text-align: left;
    margin-left: 20px;
}
.links p,
.logout p {
    display: flex;
    align-items: center;
    padding: 15px 0px;
    height: 15px;
    margin: 5px 0;
}
.links p span,
.logout p span {
    background: transparent;
    width: 10px;
    height: 40px;
    border-radius: 0 80% 80% 0;
}
.links a,
.logout a {
    transition: linear;
}
.links a:hover .material-symbols-outlined,
.logout a:hover .material-symbols-outlined {
    font-variation-settings: "FILL" 1;
}
.links a:hover span,
.logout a:hover span {
    background-color: #1a1f16;
}
.links p:hover,
.logout p:hover {
    font-weight: 700;
}

.logout {
    height: 15px;
    margin-bottom: 30px;
}

.mainpage {
    width: 80%;
    height: 85vh;
    background-color: #dce0d9;
    border-radius: 20px;
    padding: 20px 30px;
    margin-left: 20px;
    overflow-y: auto;
}

.boxes {
    display: flex;
    justify-content: space-evenly;
    margin-top: 50px;
}

.total-income,
.expenses,
.current-orders,
.total-orders {
    text-align: center;
    width: 20%;
    padding: 20px 0;
    border-radius: 20px;
    border: solid black 2px;
}
.total-income i,
.expenses i,
.current-orders i,
.total-orders i {
    font-size: 30px;
}
.total-income h2,
.expenses h2,
.current-orders h2,
.total-orders h2 {
    margin-top: 10px;
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 1100;
    background-color: #1a1f16;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: background-color 0.2s ease;
}

.menu-toggle .material-symbols-outlined {
    font-size: 24px;
}

.menu-toggle:hover {
    background-color: #2c3e50;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease;
    z-index: 1050;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidemenu.mobile-active {
    transform: translateX(0);
}

/* Responsive Layout */
@media (max-width: 1200px) {
    .cms {
        width: 95vw;
    }
}

@media (max-width: 1024px) {
    body {
        height: auto;
        min-height: 100vh;
    }

    .cms {
        width: 95vw;
        height: auto;
        flex-wrap: wrap;
        gap: 20px;
    }

    .sidemenu {
        width: 30%;
        min-width: 220px;
        border-radius: 16px;
        margin-left: 0;
        margin-bottom: 10px;
        padding: 18px;
    }

    .links,
    .logout {
        height: auto;
        margin-left: 0;
    }

    .mainpage {
        width: calc(70% - 10px);
        margin-left: 0;
        height: auto;
        min-height: 70vh;
        border-radius: 16px;
        padding: 20px;
    }

    .boxes {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: flex-start;
    }

    .total-income,
    .expenses,
    .current-orders,
    .total-orders {
        width: calc(50% - 12px);
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 2.5vw 0;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        gap: 1.6vw;
        padding: 2.8vw 3.6vw;
        border-radius: 2.4vw;
    }

    .menu-toggle .material-symbols-outlined {
        font-size: 6vw;
    }

    .cms {
        width: 100%;
        height: auto;
        flex-direction: column;
        gap: 3vw;
    }

    .sidemenu {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 70vw;
        max-width: 80vw;
        border-radius: 0;
        padding: 18vw 6vw 6vw 6vw;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1090;
        overflow-y: auto;
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.2);
    }

    .sidemenu h2 {
        font-size: 4.4vw;
        margin-bottom: 4vw;
    }

    .links,
    .logout {
        margin-left: 0;
    }

    .links a,
    .logout a {
        font-size: 4vw;
    }

    .links i,
    .logout i {
        font-size: 4.6vw;
        margin-right: 2.4vw;
        margin-left: 0;
    }

    .links p,
    .logout p {
        padding: 3.5vw 0;
    }

    .links p span,
    .logout p span {
        height: 9vw;
    }

    .mainpage {
        width: 80vw;
        margin: 0 auto;
        border-radius: 4vw;
        padding: 4.5vw;
        background-clip: padding-box;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 3.5vw;
    }

    .filter-controls,
    .action-buttons {
        width: 100%;
        flex-wrap: wrap;
        gap: 3vw;
    }

    .filter-controls select,
    .action-buttons button,
    .action-buttons a {
        flex: 1 1 100%;
    }

    .boxes {
        flex-direction: column;
        gap: 3.5vw;
        align-items: stretch;
    }

    .total-income,
    .expenses,
    .current-orders,
    .total-orders {
        width: 100%;
        padding: 4vw 0;
        border-radius: 4vw;
    }

    .total-income i,
    .expenses i,
    .current-orders i,
    .total-orders i {
        font-size: 5vw;
    }

    .total-income h2,
    .expenses h2,
    .current-orders h2,
    .total-orders h2 {
        font-size: 5.2vw;
    }
}

@media (max-width: 480px) {
    .menu-toggle {
        top: 3vw;
        left: 3vw;
        padding: 2.4vw 3.2vw;
        border-radius: 2vw;
    }

    .sidemenu {
        width: 76vw;
        padding: 18vw 6vw 6vw 6vw;
    }

    .sidemenu h2 {
        font-size: 4.2vw;
    }

    .links a,
    .logout a {
        font-size: 3.8vw;
    }

    .links i,
    .logout i {
        font-size: 4.4vw;
        margin-right: 2vw;
    }

    .mainpage {
        padding: 5vw;
        border-radius: 4vw;
    }

    .total-income,
    .expenses,
    .current-orders,
    .total-orders {
        padding: 4.2vw 0;
        border-radius: 4vw;
    }

    .total-income i,
    .expenses i,
    .current-orders i,
    .total-orders i {
        font-size: 5.4vw;
    }

    .total-income h2,
    .expenses h2,
    .current-orders h2,
    .total-orders h2 {
        font-size: 5.4vw;
    }
}
/*# sourceMappingURL=styles.css.map */
