/* Map Styles für FusionFitness Ulmen
 * Enthält Styling für Google Maps und Platzhalter
 */

/* Grundlegendes Map Styling */
.map-section {
    margin-bottom: 4rem;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
    margin-top: 2rem;
}

/* Desktop-Darstellung */
@media (min-width: 992px) {
    .map-container {
        grid-template-columns: 6fr 4fr;
        grid-template-rows: 1fr;
        min-height: 450px;
    }
}

/* Map-Responsive Container */
.map-responsive {
    position: relative;
    width: 100%;
    /* height: 450px; */
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Map-Info-Bereich */
.map-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.5rem;
    height: 100%;
}

.map-address {
    background-color: rgba(42, 42, 42, 0.7);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-directions {
    background-color: rgba(42, 42, 42, 0.7);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-responsive iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 0;
}

/* Map Placeholder Styles */
.map-placeholder {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #1e1e1e; /* Dunklerer Hintergrund */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    z-index: 10;
    overflow: hidden;
}

.placeholder-content {
    text-align: center;
    padding: 2rem;
    max-width: 90%;
}

.placeholder-content i {
    font-size: 3rem;
    color: #ffcc00; /* var(--primary) */
    margin-bottom: 1rem;
}

.placeholder-content h3 {
    color: #ffffff; /* var(--light-text) */
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.placeholder-content p {
    color: #aaaaaa; /* var(--gray-text) */
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.placeholder-content .btn {
    margin-bottom: 2rem;
}

.placeholder-content .location-info {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 5px;
    border-left: 3px solid #ffcc00; /* var(--primary) */
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.placeholder-content .btn-primary {
    background-color: #ffcc00; /* var(--primary) */
    color: #121212; /* var(--dark-bg) */
    border: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.2);
}

.placeholder-content .btn-primary:hover {
    background-color: #ffdd33; /* var(--hover) */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 204, 0, 0.3);
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .placeholder-content {
        padding: 1.5rem;
    }
    
    .placeholder-content i {
        font-size: 2.5rem;
    }
    
    .placeholder-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .placeholder-content {
        padding: 1rem;
    }
    
    .placeholder-content i {
        font-size: 2rem;
    }
    
    .placeholder-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .placeholder-content p {
        margin-bottom: 1.5rem;
    }
}
