/* ════════════════════════════════════════════════════════════
   location.css — Página de Ubicación
   ════════════════════════════════════════════════════════════ */

.location-wrap {
    max-width: 900px;
    margin: 2rem auto 4rem;
    padding: 0 1.25rem;
}

.location-wrap h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--accent, #C9A84C);
    margin-bottom: 0.25rem;
}

.location-intro {
    font-size: 0.88rem;
    color: rgba(240,236,228,.7);
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.location-map {
    width: 100%;
    aspect-ratio: 16 / 7;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    margin-bottom: 1.75rem;
}
.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.location-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.location-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 1.5rem;
}
.location-card h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: .04em;
    margin-bottom: 0.9rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    color: #f0ece4;
}
.location-card h2 i { color: var(--accent, #C9A84C); }
.location-card p { color: rgba(240,236,228,.8); font-size: .9rem; line-height: 1.6; margin-bottom: .75rem; }
.location-muted { color: rgba(240,236,228,.55); }

.location-cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--accent, #C9A84C);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 600;
}
.location-cta:hover { text-decoration: underline; }

.location-hours { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.location-hours li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: .875rem;
    color: rgba(240,236,228,.8);
    padding-bottom: .5rem;
    border-bottom: 1px dashed rgba(255,255,255,.08);
}
.location-hours li:last-child { border-bottom: none; padding-bottom: 0; }
.location-hours-day { font-weight: 600; color: #f0ece4; }

@media (max-width: 640px) {
    .location-cards { grid-template-columns: 1fr; }
}
