/* Footer Styles */

/* Partners Section */
.partners-section {
    background-color: white;
    padding: 3rem 0;
    text-align: center;
}

.partners-title {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--color-primary-text);
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.partners-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.partner-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.7rem;
    color: #004070;
    font-weight: bold;
}

/* Fix for Starlink Logo Size */
.partner-group img {
    max-width: 150px;
    /* Constrain width */
    height: auto;
    margin-top: 0.5rem;
}

/* Constrain other partner logos */
.partners-logos>img {
    max-height: 60px;
    width: auto;
}

/* Social & Links Bar */
.social-links-bar {
    background-color: #8B7355;
    /* Brown */
    color: white;
    padding: 1rem 0;
}

.bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons img,
.social-icons svg {
    /* filter: brightness(0) invert(1);  Not needed for SVGs with fill="white" */
}

.footer-links {
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-links a {
    color: #e5e7eb;
    margin: 0 0.5rem;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

/* Member School Bar */
.member-school-bar {
    background-color: #004070;
    /* Deep Blue */
    color: white;
    padding: 2rem 0;
    text-align: center;
    font-size: 0.8rem;
}

.member-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.member-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 300;
}

.member-info img {
    height: 40px;
}

.trademarks {
    font-size: 0.7rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .bar-container {
        flex-direction: column;
        gap: 1rem;
    }

    .partners-logos {
        flex-direction: column;
    }

    .member-info {
        flex-direction: column;
    }
}
