/* src/styles/components/header.css */
header {
    background-color: var(--primary-dark);
    color: white;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center; /* Center the content */
    align-items: center;
}

.nav-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: whitesmoke;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-weight: 700;
}

.nav-links a:hover {
    background-color: var(--secondary-dark);
}

.nav-links a.active {
    background-color: var(--secondary-dark);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: whitesmoke;
    transition: all 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.github-btn {
    background-color: #171515;
}

.github-btn:hover {
    background-color: #2b2a2a;
}

.linkedin-btn {
    background-color: #0077B5;
}

.linkedin-btn:hover {
    background-color: #0069a0;
}

/* Responsive adjustments */
@media screen and (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links {
        justify-content: center;
    }
}