/* =============================================
   FOOTER STYLES
   Dark Footer (V1, V5, About) + Light Footer (V4)
   ============================================= */

/* ---- Dark Footer ---- */
.footer-dark {
    padding: 3rem 5%;
    background: var(--black);
    border-top: 1px solid var(--light-gray);
}

body.theme-cinematic .footer-dark {
    padding: 3rem 4%;
    background: var(--void);
    border-top: 1px solid var(--graphite);
}

.footer-dark .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-dark .footer-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-dark .footer-logo img {
    height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

body.theme-cinematic .footer-dark .footer-logo img {
    height: 36px;
    filter: brightness(0) invert(1);
    opacity: 0.35;
}

.footer-dark .footer-logo:hover img {
    opacity: 1;
}

body.theme-cinematic .footer-dark .footer-logo:hover img {
    opacity: 0.7;
}

.footer-dark .footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-dark .footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

body.theme-cinematic .footer-dark .footer-links a {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    font-weight: 400;
}

.footer-dark .footer-links a:hover {
    color: var(--green-primary);
}

body.theme-cinematic .footer-dark .footer-links a:hover {
    color: var(--signal);
}

.footer-dark .footer-right {
    color: var(--text-muted);
    font-size: 0.85rem;
}

body.theme-cinematic .footer-dark .footer-right {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.8rem;
}

/* ---- Light Footer (V4) ---- */
.footer-light {
    padding: 3rem 4%;
    background: var(--stone-50);
    border-top: 1px solid var(--stone-200);
}

.footer-light .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.footer-light .footer-logo img {
    height: 36px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-light .footer-logo:hover img {
    opacity: 1;
}

.footer-light .footer-center {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.footer-light .footer-center a {
    color: var(--stone-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-light .footer-center a:hover {
    color: var(--eg-green);
}

.footer-light .footer-right {
    color: var(--stone-400);
    font-size: 0.85rem;
}

/* Cinematic footer center (same layout as light) */
body.theme-cinematic .footer-dark .footer-content {
    position: relative;
}

body.theme-cinematic .footer-center {
    display: flex;
    gap: 2rem;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

body.theme-cinematic .footer-center a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    transition: color 0.3s;
}

body.theme-cinematic .footer-center a:hover {
    color: var(--signal);
}
