
/* Custom navy color for primary elements */
.is-navy {
    background-color: #0a1f44;
    color: #ffffff;
}

/* Fixed menu column styling for desktop */
.menu-column {
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100vh;
    background-color: #0a1f44;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* Centering the navbar content at 1/3 down on desktop */
.navbar-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: calc(100vh / 3 - 80px);
}

/* Circular profile image */
.profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Navbar link styling */
.menu-list a {
    font-size: 1.1em;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
    background: none !important;
    box-shadow: none !important;
    margin: 10px 0;
}

/* Active link styling */
.menu-list a.is-active {
    color: #ffffff !important;
}

/* Full viewport height for sections */
section.section {
    min-height: 100vh;
    margin-bottom: 2rem;
}

/* Center content in About section */
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    padding-top: calc(33vh - 100px);
}

/* Styling for name and color of ADNER */
.name-title {
    font-size: 3em;
    font-weight: bold;
    text-align: left;
}

.last-name {
    color: #0a1f44;
}

/* Margin-left for main content to account for sidebar (Desktop only) */
.main-content {
    margin-left: 250px;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    section::before {
        content: '';
        display: block;
        height: 50px;
        margin-top: -50px;
    }

    /* Hide sidebar on mobile */
    .menu-column {
        display: none;
    }

    /* Remove sidebar margin for mobile */
    .main-content {
        margin-left: 0;
    }

    /* Profile image and title font adjustments */
    .profile-image {
        width: 80px;
        height: 80px;
    }

    .name-title {
        font-size: 2em;
    }

    /* Adjust padding for sections */
    section.section {
        padding: 1rem;
        margin-bottom: 1rem;
    }

    /* Increase navbar item spacing on mobile */
    .navbar-menu .navbar-item {
        padding: 1rem 1.5rem;
        font-size: 1.1em;
    }

    /* Sticky positioning for mobile navbar */
    .navbar.is-hidden-tablet {
        position: sticky;
        top: 0;
        z-index: 999;
        width: 100%;
        background-color: #0a1f44;
    }

}

/* Style unordered lists with bullet points */
ul {
    list-style-type: disc; /* Use discs (default bullets) */
    padding-left: 20px; /* Add padding to indent the bullet points */
}

/* Prevent bullet points in the navbar */
.menu-list ul, 
.menu-list li {
    list-style-type: none; /* Remove bullets in the navbar */
    padding-left: 0; /* Remove indentation */
}
