/**
 * Location Screen CSS (screen-location)
 * Mobile-first: Basis-Styles für kleine Viewports; größere Breakpoints per min-width.
 */

.location-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: var(--font-family-primary);
}

.location-breadcrumb {
    font-size: 0.85rem;
    color: var(--color-text-light);
    padding: 25px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-breadcrumb-link {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-breadcrumb-link:hover {
    color: var(--color-text-primary);
    text-decoration: underline;
}

.location-breadcrumb-separator {
    color: var(--color-text-light);
    opacity: 0.5;
}

.location-breadcrumb-current {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semibold);
}

.location-venue-card {
    background: linear-gradient(145deg, var(--color-white) 0%, var(--color-bg-light) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 50px;
    box-shadow: var(--surface-shadow-glass);
    border: 1px solid var(--color-border-light-mode-lighter);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-venue-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--surface-shadow-glass-hover);
}

.location-venue-address {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 0;
    font-weight: var(--font-weight-medium);
}

.location-map-wrapper {
    margin: 50px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-elevation-surface-hover);
    border: 1px solid var(--color-border-light-mode-lighter);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-map-wrapper:hover {
    box-shadow: var(--shadow-modal);
    transform: translateY(-3px);
}

.location-map-iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: 0;
}

.location-parking-card {
    background: linear-gradient(145deg, var(--color-white) 0%, var(--color-bg-light) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    margin: 50px 0 70px 0;
    box-shadow: var(--surface-shadow-glass);
    border: 1px solid var(--color-border-light-mode-lighter);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-parking-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--surface-shadow-glass-hover);
}

.location-parking-description {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin: 0;
    text-align: center;
    font-weight: var(--font-weight-medium);
}

@media (min-width: 600px) {
    .location-page-container {
        max-width: 800px;
        padding: 0 50px;
    }

    .location-breadcrumb {
        padding: 30px 0 25px 0;
        font-size: 0.95rem;
    }

    .location-venue-card {
        padding: 50px 40px;
        margin-bottom: 60px;
    }

    .location-venue-address {
        font-size: 1.25rem;
    }

    .location-map-wrapper {
        margin: 60px 0;
    }

    .location-map-iframe {
        height: 450px;
    }

    .location-parking-card {
        padding: 50px 40px;
        margin: 60px 0 80px 0;
    }

    .location-parking-description {
        font-size: 1.15rem;
        line-height: 2;
    }
}

@media (min-width: 1024px) {
    .location-page-container {
        max-width: 900px;
        padding: 0 60px;
    }

    .location-breadcrumb {
        padding: 40px 0 30px 0;
    }

    .location-venue-card {
        padding: 70px 60px;
        margin-bottom: 80px;
        border-radius: 20px;
    }

    .location-venue-address {
        font-size: 1.4rem;
    }

    .location-map-wrapper {
        margin: 80px 0;
        border-radius: 20px;
    }

    .location-map-iframe {
        height: 500px;
    }

    .location-parking-card {
        padding: 70px 60px;
        margin: 80px 0 100px 0;
        border-radius: 20px;
    }

    .location-parking-description {
        font-size: 1.25rem;
    }
}

.schema-data-hidden {
    display: none;
}

@media (min-width: 1440px) {
    .location-page-container {
        max-width: 1000px;
        padding: 0 80px;
    }

    .location-venue-card {
        padding: 80px 70px;
        margin-bottom: 90px;
    }

    .location-venue-address {
        font-size: 1.5rem;
    }

    .location-map-wrapper {
        margin: 90px 0;
    }

    .location-map-iframe {
        height: 550px;
    }

    .location-parking-card {
        padding: 80px 70px;
        margin: 90px 0 110px 0;
    }

    .location-parking-description {
        font-size: 1.3rem;
    }
}
