@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}

.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

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

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

.section-divider {
    position: relative;
    height: 1px;
    background: rgba(197, 160, 89, 0.2);
    margin: 4rem auto;
    max-width: 200px;
}

.section-divider::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 4px;
    background: #c5a059;
    border-radius: 50%;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.animate-shimmer {
    animation: shimmer 2.5s infinite;
}

.hero-text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}


/* PREMIUM SCROLLBAR STYLING */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f8f4f1;
}
::-webkit-scrollbar-thumb {
    background: #8ba892;
    border-radius: 10px;
    border: 2px solid #f8f4f1;
}
::-webkit-scrollbar-thumb:hover {
    background: #c5a059;
}

/* For Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #8ba892 #f8f4f1;
}

