/* Custom styles for the top contact bar */

/* 1. Main Container Styling (Dark Background and Height) */
#top-contact-bar {
    background-color: #2b353a;
    color: #ffffff;
    padding: 10px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* 2. Content Alignment (Using Flexbox) */
.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    /* KEY CHANGE: Push all content to the right */
    justify-content: flex-end; 
    align-items: center;
}

/* New wrapper to combine contact info and social links */
.right-aligned-content {
    display: flex;
    align-items: center;
    /* Add space between the contact info block and the social links block */
    gap: 25px; 
}


/* 3. Contact Information Styling */
.contact-info {
    display: flex;
    align-items: center;
    gap: 25px; /* Space between the phone and email links */
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.contact-link:hover {
    color: #cccccc;
}

.contact-link i {
    margin-right: 5px;
}

/* 4. Social Links Styling */
.social-links {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between social icons */
}

.social-icon {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #cccccc;
}