/* Custom CSS for Atris Property Services */

/* Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Brand Colors */
:root {
    --primary: #231F20;
    --accent: #F7931E;
    --secondary: #FBB03B;
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    color: var(--primary);
}

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

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

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

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

.animate-fade-in-up.delay-1s {
    animation-delay: 0.5s;
}

/* Container */
.container {
    @apply px-4 mx-auto;
    max-width: 1280px;
}