/* Map Section */
.map-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #5A3D6B 0%, #8B5FBF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

/* Map Card - Single Beautiful Card */
.map-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-height: 500px;
}

/* Details Section - Left Side */
.map-details {
    padding: 2.5rem 2rem;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.map-section .section-title {
    color: var(--deep-purple);
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.map-subtitle {
    color: rgba(42, 42, 42, 0.7);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Purple Divider Line */
.purple-divider {
    width: 100%;
    max-width: 200px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep-purple) 0%, var(--medium-lavender) 100%);
    margin-bottom: 1.5rem;
    border-radius: 2px;
    align-self: center;
}

.venue-name {
    color: var(--deep-purple);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-align: center;
}

.venue-address {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Map Embed - Right Side */
.map-embed-wrapper {
    position: relative;
    height: 100%;
}

.map-embed {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
}

.map-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.map-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: var(--deep-purple);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(100, 78, 124, 0.2);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    justify-content: center;
}

.map-button span {
    position: relative;
    z-index: 1;
}

.map-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.map-button:hover::before {
    width: 300px;
    height: 300px;
}

.map-button:hover {
    background: var(--medium-lavender);
    color: var(--dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(100, 78, 124, 0.4);
}

.map-button-secondary {
    background: rgba(177, 156, 217, 0.15);
    border: 2px solid var(--deep-purple);
    color: var(--deep-purple);
    box-shadow: 0 4px 12px rgba(100, 78, 124, 0.2);
}

.map-button-secondary:hover {
    background: var(--deep-purple);
    color: white;
    border-color: var(--deep-purple);
}

/* Responsive */
@media (max-width: 992px) {
    .map-card {
        grid-template-columns: 1fr;
        max-height: none;
    }
    
    .map-details {
        padding: 2rem 1.5rem;
        order: 1;
        text-align: center;
    }
    
    .map-actions {
        justify-content: center;
    }
    
    .map-embed-wrapper {
        order: 2;
    }
    
    .map-embed {
        min-height: 350px;
        height: 350px;
    }
    
    .map-section .section-title {
        font-size: 2rem;
    }
    
    .venue-name {
        font-size: 1.4rem;
    }
    
    .venue-address {
        font-size: 0.95rem;
    }
    
    .map-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .map-button {
        width: 100%;
        justify-content: center;
    }
}
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .map-button {
        width: 100%;
        justify-content: center;
    }
}
