/* Niestandardowe style i animacje */
body {
    font-family: 'Manrope', sans-serif;
    color: #334155; /* Użycie nowego koloru tekstu */
}

/* Klasa do animacji pojawiania się elementów */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Delikatny cień pod nawigacją po scrollu */
.scrolled-nav {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

/* Styl mapy Google (szary filtr dla estetyki) */
.map-container iframe {
    filter: grayscale(20%) contrast(1.1);
    border-radius: 0.5rem;
}

/* Scrollbar dla modala */
.modal-scroll::-webkit-scrollbar {
    width: 8px;
}
.modal-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.modal-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}