/**
 * [STYLE: FOOTER BLOCK]
 * Focus: High Contrast, Massive Logo, Clean Right-Alignment
 */

.c-footer {
    /* Uses official brand colors */
    background-color: var(--color-tiber, #003238);
    color: var(--color-mystic, #E6ECEF);
    padding: 5rem 0 4rem 0; /* Heavy top padding for breathing room */
    margin-top: auto; /* Pushes footer to the bottom of the page */
}

.c-footer__layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

/* --- LEFT: LOGO --- */
.c-footer__brand a {
    font-family: var(--font-headline);
    font-size: 5.5rem; /* Massive, matching the Hero section */
    line-height: 0.85; /* Tight line-height for Cord font */
    color: var(--color-mystic, #E6ECEF);
    text-decoration: none;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.c-footer__brand a:hover {
    opacity: 0.8;
}


/* --- RIGHT: NAV & SOCIALS --- */
.c-footer__meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Pushes everything to the right edge */
    gap: 1.5rem;
}

/* 1. Navigation Menu */
.c-footer__nav {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.c-footer__nav a {
    font-family: var(--font-headline);
    font-size: 1.2rem;
    color: var(--color-mystic, #E6ECEF);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.c-footer__nav a:hover {
    color: var(--color-tahiti-gold, #F0821A); /* Nice interactive hover color */
}

/* 2. Social Media Circles */
.c-footer__socials {
    display: flex;
    gap: 0.8rem;
}

.c-footer__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--color-mystic, #E6ECEF); /* White circle */
    color: var(--color-tiber, #003238); /* Cuts the dark background through the icon */
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.c-footer__icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.c-footer__icon:hover {
    transform: scale(1.15) translateY(-2px); /* Physical "pop" on hover */
}


/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .c-footer__layout {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 2.5rem;
    }
    
    .c-footer__brand a {
        font-size: 4rem; /* Shrink logo slightly for mobile */
    }
    
    .c-footer__meta {
        align-items: center; /* Centers everything on mobile */
    }
    
    .c-footer__nav {
        justify-content: center;
    }
}