/* Contact Strip Styling */
.contact-strip {
    position: fixed;  /* Stays at the bottom of the viewport */
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333; /* Use a subtle color, like a dark gray */
    color: #fff;
    display: flex;  /* Flexbox for alignment */
    justify-content: center;  /* Align items closer together */
    align-items: center;  /* Vertically center align items */
    padding: 5px 0px;  /* Padding around the strip */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    gap: 10px;  /* Control the space between flex items */
    font-size: 0.8rem;
}

.contact-link {
    color: #fff; /* Ensure links are readable */
    text-decoration: none;
    margin: 0 5px;  /* Reduced margin to bring elements closer */
    font-size: 0.8rem;
}

.contact-link:hover {
    color: #ffcc00; /* Change color on hover for better user experience */
}

.contact-link i {
    margin-right: 3px; /* Reduced space between icon and text */
}

/* Mobile View Styling */
@media (max-width: 768px) {
    .contact-strip {
       padding: 5px 0px;
       flex-wrap: wrap; /* Wrap items if they don't fit on small screens */
    }
    .contact-link {
        margin: 3px 0; /* Reduced margin for even closer alignment on mobile */
        font-size: 0.8rem;
    }
}

