/* Logo styling - smaller and baseline aligned */
.logo a img {
    height: 26px !important;
    filter: grayscale(100%) brightness(0.9);
    transform: translateY(1px);
    margin-right: 6px;
}

/* Social Icons - Centered in Header Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 12px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.social-icons li {
    display: flex;
    margin: 0;
    padding: 0;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    color: var(--primary);
    border-radius: 6px;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.social-icons a:hover {
    background-color: var(--tertiary);
    opacity: 1;
    transform: translateY(-2px);
}

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

/* Ensure proper spacing on mobile */
@media screen and (max-width: 768px) {
    .social-icons {
        position: static;
        transform: none;
        gap: 8px;
        margin: 8px auto;
    }
    
    .social-icons svg {
        width: 20px;
        height: 20px;
    }
}
