.header-bar {
    height: var(--header-height);
    display: flex;
    align-items: stretch;
    transition: height 0.1s ease, background-color 0.1s ease;
}

.header-bar.scrolled {
    height: 70px;
    transition: height 0.2s ease, background-color 0.2s ease;
}

.header-logo {
    color: inherit;
    text-decoration: none;
}

.header-logo img {
    height: clamp(40px, 10vw, 80px);
    width: auto;
    transition: height 0.1s ease;
}

.header-bar.scrolled .header-logo img {
    height: 40px;
    transition: height 0.2s ease;
}

.fixed-top.border-bottom {
    border-bottom-color: var(--gray) !important;
}

.menu-logo {
    color: inherit;
    text-decoration: none;
}

.menu-logo img {
    height: clamp(60px, 15vw, 150px);
    width: auto;
    filter: brightness(0) invert(1);
}

/* Full Screen Menu Overlay */
.full-screen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.94);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    color: #fff;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.full-screen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 40px;
    right: 40px;
    cursor: pointer;
    padding: 10px;
}

.menu-close svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.menu-links a {
    transition: opacity 0.3s;
}

.menu-links a:hover {
    opacity: 0.7;
}

.social-icons a {
    transition: transform 0.3s;
    display: flex;
    align-items: center;
}

.social-icons svg {
    width: 32px;
    height: 32px;
    stroke-width: 1.5;
}

.social-icons a:hover {
    transform: translateY(-5px);
}


.header-logo:hover {
    color: inherit;
    text-decoration: none;
}
