/* Custom Styles for Florenz Karte */

/* Font Family Setup */
body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Map Container Styling */
#map {
    z-index: 1;
}

/* Custom Leaflet Popup Styling */
.leaflet-popup-content-wrapper {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.leaflet-popup-content {
    margin: 15px;
    font-family: 'Open Sans', sans-serif;
}

.leaflet-popup-content h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.leaflet-popup-content p {
    margin: 5px 0;
    color: #374151;
    line-height: 1.6;
}

/* Custom Marker Icons */
.custom-marker {
    background-color: #2563eb;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Link Hover Effects */
a {
    transition: color 0.3s ease;
}

/* Card Hover Effects */
.hover\:shadow-lg {
    transition: box-shadow 0.3s ease;
}

/* Mobile Menu Animation */
#mobile-menu {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    nav, footer {
        display: none;
    }
    
    #map {
        height: 400px;
    }
}

