/* Custom Styles for Shelly Mobus Real Estate */

:root {
    --color-midnight-900: #0F172A;
    --color-midnight-800: #1E293B;
    --color-mint-500: #34D399;
    --color-mint-400: #6EE7B7;
    --color-mint-100: #D1FAE5;
}

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

h1, h2, h3, h4, .font-serif {
    font-family: 'Playfair Display', serif;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0F172A;
}

::-webkit-scrollbar-thumb {
    background: #34D399;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6EE7B7;
}

/* Selection Color */
::selection {
    background: #34D399;
    color: #0F172A;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: opacity 0.3s ease-in-out;
}

#mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

/* Form Focus States */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-bottom: 2px solid #34D399;
}

/* Hover underline for nav links */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #34D399;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}
