/*#region COLOR & FONT VARIABLES */
:root {
    --footer-bg: black;
    --footer-text: white;
    --footer-link-hover-opacity: 0.6;

    --footer-menu-font-size: 1.2rem;
    --footer-copy-font-size: 1rem;

    --footer-font-family: 'Bavista Soulare', sans-serif; /* main site font */
    --footer-copy-font-family: sans-serif; /* normal font for © line */
}
/*#endregion COLOR & FONT VARIABLES */


/*#region FOOTER */
/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 2rem 0;
    width: 100%;
    text-align: center;
    flex-shrink: 0;
    font-family: var(--footer-font-family);
    padding-bottom: 6rem; /* add room for the centered button */
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

/* Footer brand/logo */
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

/* If using WP custom logo, keep it from getting huge */
.footer-brand .custom-logo {
    max-height: 60px;
    width: auto;
    height: auto;
}

/* Fallback text logo if no image logo is set */
.footer-logo-fallback {
    font-family: 'Algerian', var(--header-font, serif);
    font-size: 1.4rem;
    color: var(--footer-text);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-nav-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-direction: row; /* stays horizontal always */
    flex-wrap: wrap;     /* allows graceful wrapping if screen is tiny */
}

.footer-nav-items li a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: var(--footer-menu-font-size);
    transition: opacity 0.2s ease;
}

.footer-nav-items li a:hover {
    opacity: var(--footer-link-hover-opacity);
}

.footer-copy {
    margin-top: 1.5rem;
    font-size: var(--footer-copy-font-size);
    opacity: 0.8;
    font-family: var(--footer-copy-font-family); /* ← normal font ONLY HERE */
}

.footer-social {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
}

.footer-social .social-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    aspect-ratio: 1/1;
    opacity: 0.9;
    transition: opacity 0.25s ease, transform 0.2s ease;
}

.footer-social .social-icon img:hover {
    opacity: 1;
    transform: scale(1.12);
}

.footer-logo-img {
    max-height: 100px;
    width: auto;
    height: auto;
    opacity: 0.95;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-logo-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/*#endregion FOOTER */


/*#region RESPONSIVE FOOTER */
/* ============================
   RESPONSIVE FOOTER
   ============================ */
@media (max-width: 900px) {
    .footer-inner {
        padding: 0 1rem;
    }

    .footer-nav-items {
        gap: 1rem;
    }
}
/*#endregion RESPONSIVE FOOTER */