﻿@import url('../fontsAndColors.css');


/*!* ---------------------- *!*/
/*!*     GG logo figure     *!*/
/*!* ---------------------- *!*/
.footer-figure .footer-image {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1); /* make logo white-like if dark bg */
}

.app-footer {
    background: var(--gg-olive);
    color: #fff;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}



/* Footer Text */
.footer-text {
    text-align: center;
    flex: 1;
    font-family: 'PrimaryFont', serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-text p {
    margin: 0.25rem 0;
}

.instagram-p {
    font-weight: 500;
}

.instagram-p a {
    color: var(--gg-coral);
    text-decoration: none;
    margin-left: 0.25rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.instagram-p a:hover {
    color: var(--gg-sun);
}

.instagram-icon {
    margin-right: 0.25rem;
    vertical-align: middle;
    font-size: 1.2rem;
}

/*!* ---------------------- *!*/
/*!*    Methodical logo     *!*/
/*!* ---------------------- *!*/

#methodicalSection {
    text-align: center;
    flex: 0 0 auto;
}

#methodicalSection h3 {
    font-family: 'PrimaryFontBold', serif;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
    color: var(--gg-cream);
}

#methodicalFigure img {
    max-width: 140px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(0) invert(1); /* optional if logo is dark */
}

/* Bottom bar (optional modern touch) */
.app-footer::after {
    content: "";
    display: block;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 2rem;
    padding-top: 1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .footer-body {
        flex-direction: column;
        text-align: center;
    }

    .footer-figure .footer-image {
        margin-bottom: 1rem;
    }

    #methodicalSection {
        margin-top: 1.5rem;
    }
}
