/* Custom Styles beyond Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    /* Subtle texture if needed, otherwise clean color */
    background-color: #FDFBF9;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F4EBE4;
}
::-webkit-scrollbar-thumb {
    background: #C05640;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a04330;
}

/* Animation Utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Map Embed Styling */
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 1.5rem;
    filter: grayscale(20%) contrast(1.1);
}
