/**
 * OpenStreetMap Styles
 */

/* Map Container */
.ostro-map-wrapper {
    width: 100%;
    height: 900px;
    position: relative;
    overflow: hidden;
}

.ostro-map {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Gray/Light Brown Overlay on Map Tiles */
.ostro-map .leaflet-tile {
    filter: grayscale(100%) brightness(0.92) contrast(1.05);
}

/* Custom Marker/Pin */
.ostro-custom-marker {
    position: relative;
    width: auto;
    height: auto;
    z-index: 650 !important;
}

.ostro-marker-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateX(30px);
    margin-top: 15px;
}

.ostro-marker-text {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    font-weight: normal;
    color: #ffffff;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
    margin-bottom: -18px;
    position: relative;
    z-index: 2;
}

.ostro-marker-arrow {
    width: auto;
    height: 60px;
    position: relative;
    z-index: 1;
    margin-left: -10px;
}

.ostro-marker-arrow img {
    height: 100%;
    width: auto;
    display: block;
    filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
}

/* Responsive */
@media (max-width: 768px) {
    .ostro-map-wrapper {
        height: 800px;
    }
    
    .ostro-marker-text {
        font-size: 20px;
    }
    
    .ostro-marker-arrow {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .ostro-map-wrapper {
        height: 600px;
    }
    
    .ostro-marker-text {
        font-size: 16px;
    }
    
    .ostro-marker-arrow {
        height: 35px;
    }
}

/* Leaflet Controls Styling */
.ostro-map .leaflet-control-zoom {
    margin-top: 350px !important;
}

.ostro-map .leaflet-control-zoom a {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
}

.ostro-map .leaflet-control-attribution {
    background-color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
}

/* Responsive zoom control position */
@media (max-width: 768px) {
    .ostro-map .leaflet-control-zoom {
        margin-top: 350px !important;
    }
}

@media (max-width: 480px) {
    .ostro-map .leaflet-control-zoom {
        margin-top: 250px !important;
    }
}
