﻿/*
 🎨 Primary Palette

Navy Blue #1A2A44 → strong, professional, trustworthy (main header/nav background)

Emerald Green #2E7D5F → money/wealth association (accents, buttons)

Cool Gray #E6E9EF → clean background, modern feel

White #FFFFFF → main content background for clarity

🎨 Secondary Accents

Gold #D4AF37 → luxury, prosperity (highlight numbers, key CTAs)

Dark Charcoal #2B2B2B → text color for good readability

*/

.custom-navbar {
    position: relative;
}

.main-menu-container-web {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    background-color: #1A2A44 ;
    padding: 16px 8px;
}


.main-menu-wrapper,
.user-section {
    flex: 1 1 0;
    display: flex;
    align-items: center;
}

.site-logo {
    flex: 0 0 auto;
    margin: 0;
    font-family: "Aref Ruqaa", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px !important;
    color: #FFFFFF;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none; /* So clicks pass through if needed */
}

.main-menu-wrapper {
    justify-content: flex-start;
}

.user-section {
    justify-content: flex-end;
}

.main-menu {
    color: white;
    text-align: center;
}

    .main-menu li {
        margin: 0 24px;
    }

        .main-menu li:first-child {
            margin-right: 0;
        }

        .main-menu li a {
            color: #FFFFFF;
            font-size: 18px !important;
            text-decoration: none;
            font-size: 32px;
        }

        .main-menu li:last-child {
            margin-right: auto;
        }

.user-container {
    cursor: pointer;
}

.user-info-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
}

.user-container img {
    width: 60px;
    margin: 0 16px;
}

.user-info-data {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #FFFFFF;
}

.user-actions-box {
    position: absolute;
    left: 8px;
    top: 100px;
    width: 450px;
    transition: opacity ease-in-out 150ms;
}

    .user-actions-box.hide {
        opacity: 0;
        pointer-events: none;
        transition: opacity ease-in-out 150ms;
    }

.user-actions-inner-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #FFFFFF;
    gap: 32px;
    height: 100%;
    padding: 4px 20px;
    border-radius: 8px;
    /*    border: 1px solid #D4B483;*/
    /*    border-width: 0.01em;*/
    box-shadow: 11px 8px 23px -3px rgba(0,0,0,0.09);
    -webkit-box-shadow: 11px 8px 23px -3px rgba(0,0,0,0.09);
    -moz-box-shadow: 11px 8px 23px -3px rgba(0,0,0,0.09);
}

.user-actions-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.user-actions-logo {
    font-family: "Aref Ruqaa", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 22px !important;
    color: #D4B483;
}



.user-actions-body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding-bottom: 40px;
}

    .user-actions-body div {
        color: #333333;
    }

    .user-actions-body img {
        width: 120px;
        margin-left: 16px;
    }

.user-actions-name {
    font-weight: bolder;
}

.user-actions-title {
}

.main-menu-container-mob {
    display: none;
}

.menu-box-mob {
    display: none;
}

@media (max-width: 991px) {
    .main-menu-container-web {
        display: none;
    }

    .main-menu-container-mob {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        background-color: #1A2A44 ;
        padding: 16px 8px;
        display: block;
    }

    .toggle-menu {
        margin-left: auto;
        cursor: pointer;
        z-index: 2;
    }

        .toggle-menu img {
            width: 20px;
        }

    .site-logo-mob {
        flex: 0 0 auto;
        margin: 0;
        font-family: "Aref Ruqaa", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 20px !important;
        color: #FFFFFF;
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        pointer-events: none;
    }

    .user-container-mob {
    }


    .menu-box-mob {
        background-color: #FAFAF7;
        /*background-color:#D4B483;*/
        position: absolute;
        z-index: 1000000000000;
        min-width: 100vw;
        max-width: 100vw;
        min-width: 100vw;
        min-height: 100vh;
        max-height: 100vh;
        height: 100vh;
        top: 0;
        right: -100%;
        display: flex;
        flex-direction: column;
        transition: right ease-in-out 200ms
    }

    .menu-box-mob-show {
        right: 0;
        transition: right ease-in-out 200ms
    }

    .menu-mob-header {
        display: flex;
        flex-direction: column;
        background-color: #3C6E47;
        padding: 8px 16px;
        margin-bottom: 32px;
    }

    .menu-box-header-first-row {
        display: flex;
        flex-direction: row;
        margin-bottom: 32px;
        justify-content: space-between;
    }

    .site-logo-mob-menu {
        font-family: "Aref Ruqaa", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 30px !important;
        color: #FADA5E;
        line-height: 24px
    }

    .user-actions-close img {
        width: 20px;
    }

    .menu-box-header-second-row {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 32px;
        color: #F1F3F2
    }

        .menu-box-header-second-row img {
            width: 80px;
            margin-left: 16px;
        }

    .menu-box-header-second-user-data-box {
    }

    .menu-mob-user-info-name {
    }

    .menu-mob-body {
    }

        /* Side menu styles for .menu-mob-body ul */
        .menu-mob-body ul {
            list-style: none;
            padding: 0;
            margin: 0;
            overflow: hidden;
        }

            .menu-mob-body ul li {
                width: 100%;
                padding: 0;
                margin: 0;
            }

                .menu-mob-body ul li:not(:last-child) {
                    border-bottom: 1px solid #fada5ead;
                }

                .menu-mob-body ul li a,
                .menu-mob-body ul li form a {
                    display: block;
                    width: 100%;
                    padding: 16px 20px;
                    color: #333333;
                    text-decoration: none;
                    font-size: 1.1rem;
                    background: transparent;
                    transition: background 0.2s, color 0.2s;
                }

                    .menu-mob-body ul li a:hover,
                    .menu-mob-body ul li form a:hover {
                        /*                        background: #f5f5f5;*/
                        color: #333333;
                        text-decoration: none;
                        border-radius: 0;
                    }

                .menu-mob-body ul li form {
                    margin: 0;
                    padding: 0;
                }
}
