#locationSection {
    background-color: var(--white);
    text-align: center;
    display: flex;
}

#locationColumn {
    box-sizing: border-box;
    padding: 40px 20px;
    width: 100%;
    max-width: 800px;
    margin: auto;
}

#locationMap {
    margin: 24px 0;
}

#locationMap img {
    width: 100%;
    height: auto;
    display: block;
}

#zoneLegend {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0 0 28px;
}

.zone-item {
    border-top: 2px solid var(--gold);
    padding: 12px 8px 0;
    text-align: left;
}

.zone-number {
    display: block;
    color: var(--dark-rose);
    font-weight: bold;
    text-transform: uppercase;
}

.zone-description {
    display: block;
    color: var(--dark-green);
}

.zone-translation {
    display: block;
    color: var(--dark-green);
    font-family: "NotoSerif", serif;
    font-size: 0.95rem;
    opacity: 0.8;
}

#locationFooter {
    min-height: 55svh;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    background:
      linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 50%),
      url("/src/location-img.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bottom-text {
    box-sizing: border-box;
    padding: 32px 20px 40px;
    width: 100%;
    text-align: center;
}

@media (max-width: 640px) {
    #zoneLegend {
        grid-template-columns: 1fr;
    }
}
