﻿/* ==========================
   Footer Layout
   ========================== */

.site-footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--color-border-subtle);
    background: var(--color-bg);
    color: var(--color-text);
    padding: 1.75rem 0 1.25rem;
    margin-top: 3rem;
}

.site-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr) minmax(0, 2fr);
    gap: 1.25rem;
    align-items: center;
}

/* ==========================
   Email (left)
   ========================== */

.site-footer-left a {
    color: var(--color-accent-cool); /* teal on cream — 4.5:1 */
    text-decoration: none;
    font-size: 0.95rem;
}

    .site-footer-left a:hover {
        text-decoration: underline;
    }

/* ==========================
   Booking link (center)
   ========================== */

.site-footer-center a {
    color: var(--color-accent); /* Raw sienna = primary CTA */
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
}

    .site-footer-center a:hover {
        text-decoration: underline;
    }

/* ==========================
   Optional links (right)
   ========================== */

.site-footer-right {
    text-align: right;
}

.site-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

    .site-footer-links a {
        color: var(--color-accent-soft); /* lighter raw sienna */
        text-decoration: none;
        font-size: 0.9rem;
    }

        .site-footer-links a:hover {
            text-decoration: underline;
        }

/* ==========================
   Bottom copyright strip
   ========================== */

.site-footer-bottom {
    max-width: 1100px;
    margin: 1rem auto 0;
    padding: 0 1.25rem;
    font-size: 0.8rem;
    text-align: center;
    color: var(--color-text-muted);
}

/* ==========================
   Mobile
   ========================== */

@media (max-width: 768px) {
    .site-footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer-right {
        text-align: center;
    }

    .site-footer-links {
        justify-content: center;
    }
}
