/* Custom Styles for Afrah Est. */

:root {
    --primary-color: #0D1B2A;
    --secondary-color: #C9A227;
    --accent-color: #F4F4F4;
    --text-dark: #333333;
    --text-light: #FFFFFF;
}

body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

/* Hero Section Overlay */
.hero-overlay {
    background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.5));
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
}
::-webkit-scrollbar-thumb:hover {
    background: #b08d1f;
}

/* Animations Utility */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
