/* Header Main Container */
.header {
    position: fixed; /* Changed from absolute to fixed for sticky behavior */
    width: 100%;
    height: 100px;
    left: 0px;
    top: 0px;
    z-index: 1000;
    transition: background 0.3s ease;
}

.header.sticky-active {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

/* image 2 - Logo */
.header-logo {
    position: absolute;
    width: 134px;
    height: 50px;
    left: 60px;
    top: 28px;
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Frame 3 - Navigation Wrapper */
.nav-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 40px;
    position: absolute;
    height: 39px;
    right: 60px;
    top: 33px;
}

/* Frame 9 - Links Container */
.nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 10px;
    width: 301px;
    height: 39px;
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* Individual Nav Items (Frame 1, 2, 3, 4) */
.nav-item {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
    height: 39px;
    flex: none;
    flex-grow: 0;
    text-decoration: none;
}

.nav-item span {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 15px;
    line-height: 19px;
    color: #FFFFFF;
}

.nav-item.active span {
    font-weight: 700;
}

.nav-item:not(.active) span {
    font-weight: 400;
    opacity: 0.8;
}

/* Frame 33 - Social Icons Wrapper */
.social-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    gap: 20px;
    width: 71px;
    height: 24px;
    flex: none;
    order: 1;
    flex-grow: 0;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
    flex-grow: 0;
    text-decoration: none;
}

.social-icon img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.15);
    opacity: 0.8;
}

/* youtube specific adjustment */
.social-icon.youtube {
    width: 27px;
    height: 20px;
}
