/* ══════════════════════════════════════════
   FOOTER SECTION
   ══════════════════════════════════════════ */

.site-footer {
    background-color: #2d4263; /* Deep Blue from reference image */
    color: #fff;
    padding: 3vw 0 1vw; /* Very compact height */
    font-family: var(--font-body, 'Montserrat', sans-serif);
}

.footer-container {
    max-width: 85vw; /* Aligned with homepage sections */
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1.2fr 1fr;
    gap: 4vw;
}

.footer-events-page {
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1.3fr;
}

.footer-logos-wrap {
    display: flex;
    align-items: center;
    gap: 1.5vw;
    margin-bottom: 1.5vw;
}

.footer-logo {
    height: 4.5vw;
    width: auto;
    object-fit: contain;
}

.footer-description {
    font-size: 0.95vw;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.8vw;
    max-width: 100%;
}

.footer-socials {
    display: flex;
    gap: 0.8vw;
}

.footer-social-link {
    width: 2.2vw;
    height: 2.2vw;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d4263;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--theme-accent, #d8b750);
    transform: translateY(-0.2vw);
    color: #fff;
}

.footer-social-link svg {
    width: 1vw;
    height: 1vw;
}

.footer-title {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.4vw;
    color: #fff;
    margin-bottom: 1.8vw;
    font-weight: 500; /* Increased slightly for better hierarchy in Montserrat */
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8vw;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1vw;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6vw;
}

.footer-links a::before {
    content: '›';
    font-size: 1.2vw;
    font-weight: 700;
    color: #fff;
}

.footer-links a:hover {
    color: var(--theme-accent, #d8b750);
    padding-left: 0.3vw;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1vw;
    margin-bottom: 1.2vw;
}

.footer-contact-icon {
    width: 1vw;
    height: 1vw;
    color: #fff;
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 0.95vw;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Map Column */
.footer-map-wrap {
    border: 3px solid #fff;
    border-radius: 0.4vw;
    overflow: hidden;
}

.footer-map-wrap iframe {
    width: 100%;
    height: 9vw;
    display: block;
}

/* ════════════ FOOTER BOTTOM ════════════ */
.footer-bottom {
    grid-column: 1 / -1; /* Centers perfectly across all columns */
    margin-top: 2.5vw;
    padding-top: 1.5vw;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    width: 100%;
}

.footer-copyright {
    font-size: 0.85vw;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02vw;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2.5vw;
    right: 2.5vw;
    width: 3.2vw;
    height: 3.2vw;
    background: #d4af37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5vw 1.5vw rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top:hover {
    transform: translateY(-0.4vw);
    background: #b8860b;
}

.back-to-top svg {
    width: 1.5vw;
    height: 1.5vw;
}

/* ════════════ RESPONSIVE ════════════ */
@media (max-width: 960px) {
    .site-footer { padding: 10vw 0 5vw; }
    .footer-container {
        max-width: 90vw;
        grid-template-columns: 1fr;
        gap: 8vw;
    }
    .footer-logo { height: 16vw; }
    .footer-description { font-size: 4vw; margin-bottom: 6vw; }
    .footer-social-link { width: 11vw; height: 11vw; }
    .footer-social-link svg { width: 5.5vw; height: 5.5vw; }
    .footer-title { font-size: 6.5vw; margin-bottom: 5vw; }
    .footer-links a { font-size: 4.2vw; 
    gap: 2vw;}
    .footer-links li { margin-bottom: 3vw; }
    .footer-contact-text { font-size: 4.2vw; }
    .footer-contact-item { margin-bottom: 4vw; }
    .footer-contact-icon { width: 5vw; height: 5vw; }
    .footer-map-wrap { border-width: 2px; }
    .footer-map-wrap iframe { height: 55vw; }
    .footer-bottom { margin-top: 8vw; padding-top: 6vw; }
    .footer-copyright { font-size: 3.2vw; line-height: 1.6; }
    .back-to-top { width: 12vw; height: 12vw; bottom: 6vw; right: 6vw; }
    .back-to-top svg { width: 6vw; height: 6vw; }

      .footer-links a::before {
        font-size: 14px;
    }
}
