/* CSS Document */
/*    
    FOOTER
*/
footer, footer > * {
    width: 100%;
    display: flex;
    padding: 1rem;
}
footer {
    color: black;
    flex-direction: column;
}
.footerMeet {
    flex-direction: column;
    border: 0.5rem solid #0b5394;
    border-radius: 1rem;
    align-items: center;
}
.footerSocial * {
    color: #0b5394;
}
.footerSocial {
    justify-content: center;
    gap: 1rem;
}
footer ion-icon {
    font-size: 2rem;
}
.footerMeetText {
    text-align: justify;
}
.footerMeetText h2 {
    text-align: center;
    padding-bottom: 1rem;
}
#adminButton {
    justify-content: flex-end;
    padding: 0;
    font-size: x-small;
}
@media (min-width: 1000px) {
    footer {
        align-items: center;
    }
    .footerMeet {
        flex-direction: row;
        width: 60%;
    }
    .footerMeetPhoto img {
        height: 50vh;
        width: auto;
    }
    .footerMeetText {
        padding-left: 1rem;
    }
}
/* Footer Styles */
.site-footer {
    background-color: var(--color-primary);
    color: var(--color-background);
    padding: var(--spacing-3xl) 0;
    margin-top: var(--spacing-3xl);
}
.footer-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}
.about-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}
.about-image {
    width: 100%;
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}
.about-text h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}
.about-text p {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-background);
    opacity: 0.9;
}
.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-social .social-link {
    color: var(--color-background);
    font-size: 1.5rem;
    transition: transform var(--transition-fast);
}
.footer-social .social-link:hover {
    transform: translateY(-3px);
}
/* Responsive Footer */
@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 250px 1fr;
    }
}
@media (max-width: 768px) {
    .about-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }
    .footer-social {
        flex-wrap: wrap;
    }
}
/* Footer Animations */
.about-section {
    animation: fadeIn 0.6s ease-out forwards;
}
.footer-social .social-link {
    animation: fadeIn 0.6s ease-out forwards;
}
.footer-social .social-link:nth-child(2) {
    animation-delay: 0.2s;
}
.footer-social .social-link:nth-child(3) {
    animation-delay: 0.4s;
}
.footer-social .social-link:nth-child(4) {
    animation-delay: 0.6s;
}