/* ========================================
   Location section — "Gdje nas naći"
   ======================================== */

.location {
    background-color: var(--white);
}

.location__header {
    text-align: center;
    margin-bottom: 40px;
}

.location__label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 8px;
}

.location__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--dark-brown);
}

.location__subtitle {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--warm-gray);
    margin-top: 10px;
    font-style: italic;
}

.location__stops {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 36px;
}

.location__stop {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(61, 46, 35, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location__stop:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(61, 46, 35, 0.1);
}

.location__stop-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold-accent);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.location__stop-place {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--dark-brown);
    margin-bottom: 4px;
}

.location__stop-date {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gold-accent);
    letter-spacing: 0.03em;
    margin-bottom: 6px;
}

.location__stop-zip {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--warm-gray);
}

.location__map {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(61, 46, 35, 0.08);
}

.location__map iframe {
    width: 100%;
    height: 300px;
    border: none;
    display: block;
}

.location__cta {
    text-align: center;
    margin-top: 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--deep-taupe);
}

/* Mobile */
@media (max-width: 768px) {
    .location__stops {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 8px;
    }

    .location__map {
        margin: 0 16px;
        border-radius: 12px;
    }

    .location__map iframe {
        height: 240px;
    }
}
