/* Shared Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Scrolled State */
.site-header.scrolled {
    height: 60px;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.site-header.theme-dark.scrolled {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    box-shadow: none;
}

.site-header.theme-light.scrolled {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0) 100%);
    /* backdrop-filter: blur(10px); */
    /* -webkit-backdrop-filter: blur(10px); */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1232px;
    margin: 0 auto;
    height: 100%;
    padding: 0 20px;
    transition: all 0.3s ease;
}

/* Theme Specific Borders */
.theme-dark .header-inner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.theme-light .header-inner {
    border-bottom: 1px solid rgba(0, 85, 255, 0.1);
}

.site-header.scrolled .header-inner {
    border-bottom: none;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 197px;
    transition: width 0.3s ease;
}

.site-header.scrolled .logo img {
    width: 160px;
}

/* Nav Links */
.nav-link-custom {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.theme-dark .nav-link-custom {
    color: #FFFFFF;
}

.theme-light .nav-link-custom {
    color: #333333;
}

.theme-light .nav-link-custom.fw-medium {
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .site-header {
        padding: 0;
    }
}
