/* Base Fade In Animation (On Load) */
.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

/* Scroll Reveal Animation */
.reveal {
    animation: slideUpFade 1s ease-out forwards;
}

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

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

.gallery-item {
    transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* Scrollbar styling for a premium feel */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: #D4AF37; 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8962e; 
}