/** FOOTER **/

/* Footer Styling */
#row-footer {
    background-color: var(--lime);
    color: black;
    padding: 30px 0;
    font-size: 15px;
    font-family:"Stratos Light";
}

/* General Footer Column Styling */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px; /* Adds spacing between items */
}

/* Footer Links */
.footer-column a {
    color: black;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

/* Social Media Links */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Social Icons & Text Alignment */
.social-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

.footer-icon {
    width: 18px; /* Small size */
    height: auto;
}

/* Footer Contact Info */
.footer-column p {
    margin: 0;
    font-size: 15px;
}

/* Responsive: Stack Footer Items on Small Screens */
@media (max-width: 767px) {
    #row-footer .row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-social {
        align-items: center;
    }

    .page-broadband #row-footer{
        display:none;
    }
}
