/* Custom styles for the Editorial Real Estate Theme */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0A192F;
    color: #E6F1FF;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0A192F;
}
::-webkit-scrollbar-thumb {
    background: #112240;
    border: 1px solid #64FFDA;
}
::-webkit-scrollbar-thumb:hover {
    background: #64FFDA;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 1s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

/* Form Focus Styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 1px #64FFDA;
}

/* Navbar Glass Effect */
.nav-scrolled {
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.7);
}
