/* Header overrides with !important */
header {
    padding: 1.5rem 0 !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
    background-color: rgba(26, 26, 26, 0) !important;
    border-bottom: none !important;
}

header.scrolled {
    background-color: rgba(26, 26, 26, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    padding: 1rem 0 !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(51, 51, 51, 0.5) !important;
}

body {
    padding-top: 80px !important;
}

.header-container {
    padding: 0 1rem !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
    justify-content: flex-start !important;
}

.logo {
    gap: 0.6rem !important;
    margin-right: 3rem !important;
}

.logo img {
    width: 52px !important;
    height: auto !important;
}

.logo span {
    font-weight: 600 !important;
    font-size: 1.6rem !important;
}

.header-right {
    gap: 2rem !important;
    margin-left: auto !important;
}

.header-icons, 
.social-icons {
    display: flex !important;
    gap: 1rem !important;
}

.header-icons a img,
.social-icons a img {
    width: 28px !important;
    height: 28px !important;
    object-fit: contain !important;
}

.user-button {
    padding: 0.7rem 1.4rem !important;
    border-radius: 4px !important;
    font-size: 1.1rem !important;
}

.user-button img {
    width: 14px !important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    body {
        padding-top: 70px !important;
    }
    
    .header-container {
        padding: 0 0.75rem !important;
    }
    
    .logo {
        margin-right: 1.5rem !important;
    }
    
    .header-right {
        gap: 1rem !important;
    }
    
    .header-icons, 
    .social-icons {
        gap: 0.75rem !important;
    }
    
    .user-button {
        padding: 0.6rem 1rem !important;
    }
} 