/* css/style.css */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h5 {
    font-family: 'Manrope', sans-serif;
}

.nav-link {
    transition: all 0.2s ease;
}

.nav-link:hover {
    background-color: #006287;
    color: #e7f4ff;
    border-radius: 0.5rem;
}

#map-modal.hidden {
    display: none;
}

#map-modal:not(.hidden) {
    display: flex;
}

/* Animacje Fade-In */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, visibility 0.8s;
    will-change: opacity, transform, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

/* Płynne przewijanie do kotwic */
html {
    scroll-behavior: smooth;
}

/* Hamburger menu dla wersji mobilnej */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out, padding 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
