/* Custom Styles for Troy Knight Real Estate */

/* Base Typography */
body {
    font-family: 'Outfit', sans-serif;
}

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

/* Custom Colors */
:root {
    --burgundy: #7D1C2E;
    --blush: #FADADD;
}

/* Geometric Clip Paths */
.clip-diagonal-right {
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
}

.clip-diagonal-left {
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

/* Form Focus Styles */
input:focus, textarea:focus, select:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 1px var(--burgundy);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #5a121f;
}
