/* Social Bar Styles */
.social-bar {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    padding: 8px 0;
    color: white;
}

.social-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Contact Info */
.contact-info {
    display: flex;
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.info-item i {
    font-size: 0.9rem;
}

.info-item:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    color: white;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .social-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 8px;
    }

    .info-item {
        justify-content: center;
    }
}

/* Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-bar {
    animation: fadeInDown 0.5s ease-out;
} 