/**
 * Location Screen CSS
 * 
 * Professionelles, modernes Design mit großzügigem Whitespace.
 * Inspiriert von Magic UI Design-Prinzipien für ein hochwertiges Erscheinungsbild.
 */

/* Page Container - Hauptcontainer mit maximaler Breite und seitlichen Abständen */
.location-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Breadcrumb Navigation */
.location-breadcrumb {
    font-family: var(--font-family-primary);
    font-size: 0.95rem;
    color: #1A1A1A;
    padding: 40px 0 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-breadcrumb-link {
    color: #1A1A1A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-breadcrumb-link:hover {
    color: #000000;
    text-decoration: underline;
}

.location-breadcrumb-separator {
    color: #1A1A1A;
    opacity: 0.5;
}

.location-breadcrumb-current {
    color: #000000;
    font-weight: 600;
}

/* Page Title - große, prominente Überschrift */
.location-page-title {
    font-family: var(--font-family-primary);
    font-size: 4rem;
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin: 0 0 80px 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Venue Card - elegante Karte mit Venue-Informationen */
.location-venue-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 70px 60px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 80px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.location-venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.location-venue-card:hover::before {
    left: 100%;
}

.location-venue-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.location-venue-name {
    font-family: var(--font-family-primary);
    font-size: 3.5rem;
    font-weight: 900;
    color: #000000;
    margin: 0 0 30px 0;
    letter-spacing: -0.02em;
    line-height: 1;
}

.location-venue-address {
    font-family: var(--font-family-primary);
    font-size: 1.4rem;
    color: #1A1A1A;
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Map Wrapper - Google Maps Container */
.location-map-wrapper {
    margin: 80px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-map-wrapper:hover {
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

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

/* Parking Card - Information über Parkmöglichkeiten */
.location-parking-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 70px 60px;
    border-radius: 20px;
    margin: 80px 0 100px 0;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.location-parking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.location-parking-card:hover::before {
    left: 100%;
}

.location-parking-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.location-section-title {
    font-family: var(--font-family-primary);
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 30px 0;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.location-parking-description {
    font-family: var(--font-family-primary);
    font-size: 1.25rem;
    color: #1A1A1A;
    line-height: 2;
    margin: 0;
    text-align: center;
    font-weight: 500;
}

/* Responsive Design */

/* Mobile (< 576px) */
@media (max-width: 575px) {
    .location-page-container {
        padding: 0 20px;
    }

    .location-breadcrumb {
        padding: 25px 0 20px 0;
        font-size: 0.85rem;
    }

    .location-page-title {
        font-size: 2.5rem;
        margin: 0 0 50px 0;
    }

    .location-venue-card {
        padding: 40px 30px;
        margin-bottom: 50px;
        border-radius: 16px;
    }

    .location-venue-name {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

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

    .location-map-wrapper {
        margin: 50px 0;
        border-radius: 16px;
    }

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

    .location-parking-card {
        padding: 40px 30px;
        margin: 50px 0 70px 0;
        border-radius: 16px;
    }

    .location-section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .location-parking-description {
        font-size: 1.05rem;
        line-height: 1.8;
    }
}

/* Tablet (576px - 768px) */
@media (min-width: 576px) and (max-width: 767px) {
    .location-page-container {
        padding: 0 35px;
    }

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

    .location-page-title {
        font-size: 3rem;
        margin: 0 0 60px 0;
    }

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

    .location-venue-name {
        font-size: 2.8rem;
    }

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

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

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

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

    .location-section-title {
        font-size: 1.9rem;
    }

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

/* Small Desktop (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .location-page-container {
        max-width: 800px;
        padding: 0 50px;
    }

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

/* Medium Desktop (1024px - 1440px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .location-page-container {
        max-width: 900px;
    }

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

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

    .location-page-title {
        font-size: 4.5rem;
        margin: 0 0 90px 0;
    }

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

    .location-venue-name {
        font-size: 4rem;
    }

    .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-section-title {
        font-size: 2.4rem;
    }

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