* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

h2 {
    font-family: 'Crimson Text', serif;
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    margin-bottom: 2.5rem;
    color: #333333;
    line-height: 1.4;
}

.map-frame {
    width: 100%;
    height: 70vh;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#map {
    height: 100%;
    width: 100%;
    filter: grayscale(100%) contrast(1.2);
}

/* Leaflet customizations */
.leaflet-popup-content-wrapper {
    background-color: #ffffff;
    color: #000000;
    border-radius: 4px;
    border: 1px solid #000000;
    box-shadow: none;
}

.leaflet-popup-tip {
    background-color: #ffffff;
    border: 1px solid #000000;
}

.leaflet-popup-close-button {
    color: #000000 !important;
}

.popup-content {
    font-family: inherit;
    padding: 0.5rem;
}

.popup-location {
    margin: 0.5rem 0;
}

.popup-name {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.popup-address {
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 0.25rem;
}

.popup-status {
    font-size: 0.8rem;
    color: #333333;
}

.popup-divider {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 0.75rem 0;
}

/* Minimalist markers */
.minimalist-marker {
    width: 12px;
    height: 12px;
    background-color: #000000;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Numbered markers for multiple locations */
.marker-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.numbered-marker {
    width: 24px;
    height: 24px;
    background-color: #000000;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .map-frame {
        height: 60vh;
    }
    
    body {
        padding: 1rem;
    }
} 