/* Top Bar Contact & Social Styles */

.angie-top-bar-wrapper {
    background-color: rgb(11, 19, 60); /* Deep blue background */
    width: 100%;
    z-index: 9999;
    padding: 10px 0;
    font-family: Arial, Helvetica, sans-serif; /* Fallback, usually inherits from theme */
}

.angie-top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Left side: Logo & Slogan */
.angie-top-bar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.angie-top-bar-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.angie-top-bar-logo-link:hover {
    opacity: 0.8;
}

.angie-top-bar-logo {
    max-height: 40px;
    width: auto;
    display: block;
}

.angie-top-bar-slogan {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-left: 15px;
}

/* Right side: Email & Social */
.angie-top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.angie-top-bar-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #F84365;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.angie-top-bar-email i {
    font-size: 16px;
}

.angie-top-bar-email:hover {
    opacity: 0.8;
}

.angie-top-bar-social {
    display: flex;
    gap: 12px;
}

.angie-top-bar-social a {
    color: #F84365;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.angie-top-bar-social a:hover {
    transform: translateY(-2px);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .angie-top-bar-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .angie-top-bar-left, 
    .angie-top-bar-right {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .angie-top-bar-slogan {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-left: 0;
        padding-top: 10px;
    }
}