﻿/* Update the header height */

:root {
    --navbar-height: 60px;
}



.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF; /* White background for navbar */
    color: #2b0f4c;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    z-index: 1000;
    height: var(--navbar-height);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow to ensure visibility */
    box-sizing: border-box; /* Ensure padding is included in total width/height */
}

.navbar-brand {
    font-size: 1.4rem;
    font-weight: bold;
}

    .navbar-brand > a {
        text-decoration: none !important;
        cursor: pointer !important;
        color: black;
    }

.navbar-menu {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1rem;
    box-sizing: border-box; /* Ensure padding is included in total width/height */
}

.navbar-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex: 1;
}

    .navbar-links li {
        margin-left: 20px;
        padding: 0px 0 10px 10px;
    }

    .navbar-links a {
        color: #2b0f4c;
        text-decoration: none;
        font-size: 1em;
    }


/* Responsive Design */
@media (max-width: 768px) {
    .navbar-links {
        display: none; /* Hide menu links on mobile */
        position: absolute;
        top: var(--navbar-height);
        right: 0;
        background: #FFFFFF;
        width: 100%;
        z-index: 1000;
        box-sizing: border-box;
        max-height: 0; /* Start with height of 0 */
        overflow: hidden; /* Hide overflow when collapsed */
        padding-bottom: 10px;
    }

        .navbar-links.active {
            display: flex;
            flex-direction: column;
            max-height: 300px; /* Adjust height as needed */
            padding-right: 40px;
            align-items: flex-end;
        }

    .button-group {
        display: none; /* Hide buttons on mobile */
    }

    .hamburger-menu {
    }

    .navbar-menu {
        justify-content: flex-end; /* Move hamburger menu to the right */
    }
}




.cta-button {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background: #FF5733; /* Vibrant Orange for buttons */
    background: #007bff; /* Vibrant Orange for buttons */
    color: #FFFFFF; /* White text for buttons */
    text-decoration: none;
    border-radius: 5px;
    padding: 0.75rem 1.5rem;
    max-width: 82%;
}

.get-started .cta-button {
    margin: 0;
    padding: 10px 18px;
    font-size: 0.85rem;
}




    /* FROM MBV7.htm */
    /************************************/









.container {
    width: 95%;
    display: flex;
    flex-direction: row;
}






.hamburger-menu {
    display: flex; /* Hide hamburger menu by default */
    flex-direction: column;
    cursor: pointer;
}

    .hamburger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        background: #2b0f4c;
        margin: 3px 0;
        transition: 0.3s;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg);
        position: absolute;
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg);
        position: absolute;
    }



/* Responsive Design */
@media (max-width: 768px) {
    .navbar-links {
        display: none; /* Hide menu links on mobile */
        position: absolute;
        top: var(--navbar-height);
        right: 0;
        background: #FFFFFF;
        width: 100%;
        z-index: 1000;
        box-sizing: border-box;
        max-height: 0; /* Start with height of 0 */
        overflow: hidden; /* Hide overflow when collapsed */
        padding-bottom: 10px;
    }

        .navbar-links.active {
            display: flex;
            flex-direction: column;
            max-height: 300px; /* Adjust height as needed */
            padding-right: 40px;
            align-items: flex-end;
        }

    .button-group {
        display: none; /* Hide buttons on mobile */
    }

    .hamburger-menu {
    }

    .navbar-menu {
        justify-content: flex-end; /* Move hamburger menu to the right */
    }



}



/* Add this to your existing CSS */

/* Style for GET STARTED link */




/* Desktop: Place "GET STARTED" to the left of the hamburger menu */
.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 1rem;
}








/* Ensure hamburger menu is always visible */
.hamburger-menu {
    display: flex; /* Hide by default */
    flex-direction: column;
    cursor: pointer;
    z-index: 1001; /* Ensure it's on top of other elements */
    margin-left: 20px;
}

/* Keep the hamburger menu on the right on all screen sizes */
.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Move items to the right */
    width: 100%;
    font-size: 1rem;
}

/* Navbar links container should not spread across the header */
.navbar-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

/* Mobile - Style the navbar links when hamburger is active */
@media (max-width: 768px) {
    .navbar-links {
        display: none; /* Hide menu links on mobile */
        position: absolute;
        top: var(--navbar-height);
        right: 0;
        background: #FFFFFF;
        width: 100%;
        z-index: 1000;
        box-sizing: border-box;
        max-height: 0;
        overflow: hidden;
    }

        .navbar-links.active {
            display: flex;
            flex-direction: column;
            max-height: 300px;
            padding: 10px 0;
            padding-right: 40px;
            align-items: flex-end;
        }

    .button-group {
        display: none; /* Hide buttons on mobile */
    }

    .hamburger-menu {
        margin-left: 20px; /* Space between hamburger and links */
    }

    .navbar-menu {
        justify-content: flex-end; /* Keep hamburger menu to the right */
    }
}

/* Desktop Layout */
@media (min-width: 768px) {
    /* Ensure "GET STARTED" stays to the left of the hamburger menu on desktop */
    .get-started {
        display: flex; /* Make visible */
    }

    /* Ensure links don't spread out, adjust the layout */
    .navbar-links {
        display: flex;
        margin-left: 20px;
        flex-grow: 1; /* Allow space between logo and hamburger */
    }

    /* Keep the hamburger menu always visible */
    .hamburger-menu {
    }
}


/* Ensure hamburger menu is always visible */
.hamburger-menu {
    flex-direction: column;
    cursor: pointer;
    z-index: 1001; /* Ensure it's on top of other elements */
}

/* Keep the hamburger menu on the right on all screen sizes */
.navbar-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Move items to the right */
    width: 100%;
    font-size: 1rem;
}

/* Navbar links container should not spread across the header */
.navbar-links {
    list-style: none;
    display: none; /* Hide menu links by default */
    margin: 0;
    padding: 0;
}

    /* Style the navbar links when hamburger is active */
    .navbar-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--navbar-height);
        right: 0;
        background: #FFFFFF;
        width: 100%;
        z-index: 1000;
        box-sizing: border-box;
        max-height: 300px; /* Adjust height as needed */
        padding: 10px 0;
        padding-right: 40px;
        align-items: flex-end;
    }

/* Hide buttons on all screen sizes */
.button-group {
    display: none;
}


@media (min-width: 0px) and (max-width: 99999px) {
    .hamburger-menu #hamburger-menu {
        display: flex; /* Hide hamburger menu by default */
    }
}

@media (min-width: 768px)  {
    .hamburger-menu #hamburger-menu {
        display: flex; /* Hide hamburger menu by default */
    }
}

.navbar .container {
    align-items: center;
    width: 100%;
}