/* Menu Bar Styles */
.menu-bar {
    background-color: #000000;
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.hamb-left {
    height: clamp(15px,2vw,20px);
    width: auto;
    padding-left: clamp(2vw,10vw,5vw);
    position:absolute;
    left: 0px;
}

.logo {
    height: clamp(45px,5vw,60px) !important;
    width: auto !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding-top: 5px !important;
}

#logoClickable {
    height: clamp(45px,5vw,60px) !important;
    width: auto !important;
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    padding-top: 5px !important;
}

.fullscreen-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.97);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
}

.fullscreen-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.fullscreen-menu.hidden {
    opacity: 0;
    pointer-events: none;
}

.close-menu {
    position: absolute;
    top: 5vw;
    right: 5vw;
    font-size: 3rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.menu-items a {
    color: #fff;
    font-size: clamp(30px,4vw,40px);
    text-decoration:none;
    font-family: 'Georgia', sans-serif;
    transition: transform 0.2s;
}

.menu-items a:hover {
    transform: scale(1.05);
} 