/* Location Section - 3x2 Grid Layout */
.location__grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto;
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto;
}

/* Location info kombiniert mit Details */
.location__combined-card {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Grid-Spalten für Links/Rechts Layout */
.location__left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.location__right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location__card {
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.95) 0%,
        rgba(30, 30, 30, 0.9) 100%);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: var(--spacing-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.location__card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, 
        rgba(25, 25, 25, 0.98) 0%,
        rgba(35, 35, 35, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Card variants */
.location__card--vip {
    border-color: rgba(0, 0, 0, 0.6);
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.95) 0%,
        rgba(30, 20, 25, 0.9) 100%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.location__card--vip:hover {
    border-color: rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, 
        rgba(25, 20, 22, 0.98) 0%,
        rgba(35, 25, 30, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.location__card--accessibility {
    border-color: rgba(34, 197, 94, 0.6);
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.95) 0%,
        rgba(20, 30, 25, 0.9) 100%);
    box-shadow: 
        0 8px 32px rgba(34, 197, 94, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.location__card--accessibility:hover {
    border-color: rgba(34, 197, 94, 0.8);
    background: linear-gradient(135deg, 
        rgba(20, 25, 22, 0.98) 0%,
        rgba(25, 35, 30, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.location__card--map {
    border-color: rgba(77, 166, 255, 0.6);
    background: linear-gradient(135deg, 
        rgba(20, 20, 20, 0.95) 0%,
        rgba(20, 25, 30, 0.9) 100%);
}

/* Card header */
.location__card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.location__icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
}

.location__card-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* Card content */
.location__card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.location__item {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 0.85rem;
    line-height: 1.4;
}

.location__item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--color-primary);
    transform: translateX(2px);
}

.location__item strong {
    color: #ffffff;
    font-weight: 700;
    display: block;
    margin-bottom: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
    font-size: 0.9rem;
}

.location__recommendation {
    border-left-color: var(--color-secondary);
    background: rgba(255, 193, 7, 0.15);
}

.location__recommendation:hover {
    border-left-color: var(--color-secondary);
    background: rgba(255, 193, 7, 0.2);
}

/* Address card specific styles */
.location__address {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-style: normal;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location__address strong {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

/* Map card specific styles */
.location__map {
    border-radius: 8px;
    overflow: hidden;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 500px;
    min-height: 500px;
}

.location__map iframe {
    width: 100%;
    height: 100%;
    display: block;
    filter: saturate(0.8) contrast(1.1);
}

/* Map card nimmt mehr Platz ein */
.location__card--map {
    min-height: 550px;
}

/* Navigation wrapper styling */
.location__navigation-wrapper {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: var(--spacing-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.location__map-section,
.location__floorplan-section {
    flex: 1;
}

.location__section-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-align: center;
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Lageplan Styling */
.location__floorplan {
    border-radius: 10px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.location__floorplan-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    border-radius: 10px 10px 0 0;
}

.location__floorplan-info {
    padding: var(--spacing-md);
    text-align: center;
}

.location__floorplan-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .location__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: var(--spacing-md);
    }
    
    .location__card {
        padding: var(--spacing-md);
        min-height: auto;
    }
    
    .location__card-header h3 {
        font-size: 1rem;
    }
    
    .location__item {
        padding: var(--spacing-xs);
        font-size: 0.8rem;
    }
    
    .location__item strong {
        font-size: 0.85rem;
    }
    
    .location__map {
        height: 400px;
        min-height: 400px;
    }
    
    .location__card--map {
        grid-column: 1;
        min-height: 450px;
    }
}

/* Tablet responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .location__grid {
        gap: var(--spacing-md);
    }
    
    .location__card {
        min-height: 260px;
    }
}