body {
    font-family: 'Inter', sans-serif;
}
/* Custom color based on the design */
.bg-brand-brown {
    background-color: #AF510E; /* Adjust to match the exact logo/top bar color */
}
.text-brand-brown {
    color: #AF510E;
}

/* Slide in animations for hero section */
@keyframes slideInRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
.animate-slide-in-right {
    animation: slideInRight 1s ease-out forwards;
}
@keyframes slideInLeft {
    0% { transform: translateX(-100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
.animate-slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.hide-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
