/**
 * Marea Blu Custom Google Maps Styles
 */

/* Map Container */
.map-section {
    width: 100%;
    height: 100%;
}
.marea-blu-custom-map {
    overflow: hidden;
    position: relative;
    max-height: 400px;
}
@media (min-width: 480px){
    .marea-blu-custom-map{
        max-height: 500px;
    }
}
@media (min-width: 768px){
    .marea-blu-custom-map{
        max-width: calc(100% - 30px);
        left: 20px;
    }
}
@media (min-width: 992px){
    .marea-blu-custom-map{
        max-height: 900px;
        left: unset;
        max-width: unset;
    }
}
@media (min-width: 1200px){
    .marea-blu-custom-map{
        max-height: 1000px;
    }
}
/* Custom Map Labels */
.custom-map-label {
    position: absolute;
    background: transparent !important;
    color: #000;
    padding: 0;
    border-radius: 0;
    font-size: 13px;
    font-weight: 600;
    border: none;
    box-shadow: none;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    text-align: left;
}

.marea-blu-label {
    background: rgba(0, 0, 0, 0.8) !important;
    color: white !important;
    border: none;
    font-size: 13px;
    padding: 4px 8px;
    font-weight: 700;
    border-radius: 12px;
    text-shadow: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Mobile-specific positioning for Marea Blu label */
@media (max-width: 360px) {
    .marea-blu-label {
        transform: translateX(-120%);
        left: 50% !important;
        top: -100px !important;
        text-align: center;
    }
}

/* Pulsing animation for Marea Blu marker */
.marea-blu-pulse-overlay {
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(255, 107, 107, 0.4);
    border: 2px solid rgba(255, 107, 107, 0.6);
    pointer-events: none;
    z-index: 999;
    animation: pulse-marker 2s ease-in-out infinite;
}

@keyframes pulse-marker {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.2;
    }
}



.gmnoprint button, .gmnoprint span, .gmnoprint a{
    display: none !important ;
}



/* Map Loading State */
.marea-blu-custom-map::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #7dd3c0;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1000;
}

.marea-blu-custom-map.loaded::before {
    display: none;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .custom-map-label {
        font-size: 12px;
    }

    .marea-blu-label {
        font-size: 12px;
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .custom-map-label {
        font-size: 11px;
    }

    .marea-blu-label {
        font-size: 11px;
        padding: 2px 5px;
    }
}

/* Container Wrapper for Better Integration */
.marea-blu-map-wrapper {
    margin: 0;
    position: relative;
}

.marea-blu-map-wrapper.full-width {
    margin-left: -20px;
    margin-right: -20px;
}

/* Map Overlay Elements */
.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    z-index: 1000;
    max-width: 250px;
}

.map-overlay h4 {
    color: #7dd3c0;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.map-overlay p {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

/* Custom Marker Animation */
.marker-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Dark Mode Support */
/* @media (prefers-color-scheme: dark) {
    .map-overlay {
        background: rgba(45, 45, 45, 0.95);
    }
    
    .map-overlay h4 {
        color: #7dd3c0;
    }
    
    .map-overlay p {
        color: #ccc;
    }

    .custom-map-label {
        background: rgba(45, 45, 45, 0.95);
        color: #fff;
    }
}  */ 
