/**
 * Google Maps Platzhalter Styling
 * DSGVO-konform - lädt nur nach Einwilligung
 */

.google-maps-placeholder {
    position: relative;
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.google-maps-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.google-maps-placeholder-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 30px;
    color: white;
}

.google-maps-placeholder-icon {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.google-maps-placeholder h3 {
    margin: 0 0 15px 0;
    font-size: 24px;
    font-weight: 400;
    font-family: 'Jura', Arial, sans-serif;
}

.google-maps-placeholder p {
    margin: 0 0 20px 0;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
}

.google-maps-placeholder-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Jura', Arial, sans-serif;
}

.google-maps-placeholder-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.google-maps-placeholder-link {
    display: block;
    margin-top: 15px;
    color: white;
    font-size: 12px;
    text-decoration: underline;
    opacity: 0.8;
}

.google-maps-placeholder-link:hover {
    opacity: 1;
}

/* Wenn Maps aktiv sind */
.google-maps-active iframe {
    border: none;
    border-radius: 4px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .google-maps-placeholder {
        height: 300px;
    }
    
    .google-maps-placeholder-content {
        padding: 20px;
    }
    
    .google-maps-placeholder-icon {
        font-size: 48px;
    }
    
    .google-maps-placeholder h3 {
        font-size: 20px;
    }
}
