/* Topbar Styles */
.topbar {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c4b6e 100%);
    color: #ffffff;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 36px;
}

/* Contact Information - Left Side */
.topbar-contact {
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #e8f1ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a {
    color: #e8f1ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover,
.contact-item a:hover {
    color: #ffffff;
}

.contact-item svg {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.contact-item:hover svg {
    opacity: 1;
}

/* Social Media Icons - Right Side */
.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1); /* Makes icons white */
}

.social-icons a:hover img {
    transform: scale(1.15);
}

/* Responsive Design */
@media (max-width: 900px) {
    /* Hide topbar completely on mobile - info moved to mobile menu */
    .topbar {
        display: none;
    }
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

@media (max-width: 480px) {
    .topbar {
        display: none;
    }
}

/* Integration with existing header */
.topbar {
    position: relative;
    z-index: 100;
}

.main-header {
    border-top: none;
}

/* Ensure proper spacing */
body {
    padding-top: 0;
}

/* Remove sticky adjustments since topbar is no longer sticky */

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .topbar {
        background: linear-gradient(135deg, #0f1a2b 0%, #1a2537 100%);
    }
}