/* Desktop related */
.header-container {
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.header-nav-items {
    font-weight: bold;
    margin-right: 0px;
    margin-left: 32px;
    text-decoration: none;
    color: #333;
}

.header-image {
    height: 50px;
    vertical-align: middle;
}

/* Mobile related */
.hamburger-menu {
    display: none;
}

.nav-links {
    display: flex;
}

.mobile-nav-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    opacity: 0;
    filter: blur(7px);
    scale: 1.2;
    visibility: hidden;
    transition: visibility 0.5s, opacity 0.5s ease, filter 0.5s ease, scale 0.7s ease;
    z-index: 1000; /* Make sure it's above other content */
}

.mobile-nav-popup.show {
    display: block;
    opacity: 1;
    scale: 1.0;
    filter: blur(0px);
    visibility: visible;

}

.mobile-nav-popup.blur {
    filter: blur(2px); /* Apply blur to the popup when it's shown */
}

.mobile-nav-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.9); /* Semi-transparent white */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.mobile-nav-items {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding-top: 16px;
    margin-top: 12px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 12px;
    text-decoration: none; /* Removes underline */
    color: #333;
}

.mobile-nav-items:active {
    color: #011936;
}

.close-nav {
    position: absolute;
    top: 8px;
    right: 16px;
    padding-bottom: 32px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: gray;
    margin-left: 28px; /* Adjust the margin as needed */
    margin-bottom: 32px;
}

.blur {
    filter: blur(2px);
}


/* CSS rules for the hamburger-nav triggered blur container */
.content-container {
    transition: filter 0.5s ease-in-out; /* Add a smooth transition effect */
    /* Add any other styles you want for the content container */
}

