/* style.css - Minimal Custom Styles */

/* Hero Slider Fade Animation */
.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease-in-out;
}
.hero-slide.opacity-100 {
    opacity: 1;
    pointer-events: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #1a2a4a;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #e8782a;
}

/* Keyframes for reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrollbar for Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #1a2a4a #f1f5f9;
}

/* Lightbox overlay */
#lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}
#lightbox.active {
    display: flex;
}
#lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

/* Loader (optional, not used initially but included for completeness) */
.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #e8782a;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}