/* Footer Styling */
footer {
    background-color: #5F07B3;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    flex-shrink: 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
    gap: 20px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

footer .container {
    padding: 0 20px;
    text-align: center;
}

footer p {
    display: block;
    margin: 5px 0;
    text-align: center;
}

.mailing-list-link {
    display: inline-block;
    background: #008DBB;
    color: white;
    padding: 8px 18px;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 500;
    margin-top: 8px;
    transition: background 0.2s, color 0.2s;
}
.mailing-list-link:hover {
    background: #006d91;
    color: #fff;
}

/* Social Media Icons */
.social-media {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-media a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #008DBB;
}

.footer-info-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1em;
    margin-bottom: 8px;
}

.footer-divider {
    margin: 0 10px;
    color: #fff;
    opacity: 0.5;
    font-weight: 400;
}

.footer-cta-line {
    margin: 8px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-links-line {
    margin: 8px 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-links-line a {
    color: #fff;
    margin: 0 10px;
    text-decoration: underline;
    font-size: 0.98em;
    opacity: 0.9;
    transition: color 0.2s;
}
.footer-links-line a:hover {
    color: #008DBB;
    opacity: 1;
}

@media (min-width: 769px) {
    .footer-content {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
        gap: 60px;
        text-align: left;
    }
    .social-media {
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        gap: 12px;
    }
    .footer-info-line {
        flex-direction: row;
        justify-content: center;
        font-size: 1.05em;
    }
    .footer-cta-line, .footer-links-line {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }
    .footer-main {
        align-items: center;
        text-align: center;
    }
    .social-media {
        flex-direction: row;
        justify-content: center;
        margin-top: 10px;
        gap: 18px;
    }
    .footer-info-line {
        flex-direction: column;
        gap: 2px;
        font-size: 0.98em;
        text-align: center;
    }
    .footer-divider {
        display: none;
    }
    .footer-cta-line, .footer-links-line {
        text-align: center;
    }
} 