/* Custom styles for Seyer Realty */

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

/* Custom animation for fade-in */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Form focus styles */
input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

/* Button hover effects */
button,
a {
    transition: all 0.3s ease;
}

/* Card hover effects */
.group:hover .group-hover\:bg-gold-500 {
    background-color: #f59e0b;
}

.group:hover .group-hover\:text-white {
    color: #ffffff;
}

.group:hover .group-hover\:text-stone-300 {
    color: #d1d5db;
}

/* Mobile menu transition */
#mobile-menu {
    animation: fadeIn 0.3s ease-out;
}

/* Text selection color */
::selection {
    background-color: #fef3c7;
    color: #0f172a;
}
