/* ===== FOOTER STYLES ===== */
footer {
    background: var(--primary-green);
    color: white;
    padding: 4rem 3rem 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* GRID LAYOUT */
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr 1.2fr;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

/* MAP */
.footer-map {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* BRAND */
.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}

.footer-text {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* SOCIAL */
.footer-social {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: white;
    font-size: 1.6rem;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: var(--gold-accent);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

/* LINKS & CONTACT */
.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.4rem;
    color: var(--gold-accent);
    letter-spacing: 0.8px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

/* Links (Pages) */
.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;       
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

/* Contact text + links */
.footer-contact p,
.footer-contact a {
    color: white;
    font-size: 1.2rem;         
    line-height: 1.7;
    opacity: 0.95;
    text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-links a:hover,
.footer-contact a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* COPYRIGHT */
.copyright {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.75;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-map {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links,
    .footer-contact {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .footer-links a,
    .footer-contact p,
    .footer-contact a {
        font-size: 1.05rem;
    }
}
