/*! public/css/home/areas.css */

/* ---------------------------------------------------------
   🗺 Areas Section
--------------------------------------------------------- */
#areas {
    background-color: var(--color-background-lighter);
    padding-top: 4rem;
    padding-bottom: 4rem;
    text-align: center;
}

#areas h2 {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

#areas .areas-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
}

/* Map Wrapper */
#areas .map-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

/* Google Map */
#areas iframe {
    border: 0;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 1000px;
    height: 500px;
    min-height: 300px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: box-shadow .3s ease;
}

/* hover effect */
#areas iframe:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

/* Mobile */
@media (max-width: 576px) {
    #areas iframe {
        height: 320px;
    }
}
