/* Custom styles that complement Tailwind */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&display=swap');

body {
    font-family: 'Raleway', sans-serif;
    scroll-behavior: smooth;
}

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

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

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

::-webkit-scrollbar-thumb {
    background: #b45309;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #92400e;
}

/* Animation for property cards */
@property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Custom button animation */
.btn-hover-animation {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-hover-animation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #92400e;
    border-radius: 9999px;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.btn-hover-animation:hover::after {
    transform: scaleY(1);
}