/* Custom Styles for Portage Lakes Eagles */

/* Base Settings */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #022c22; /* Forest 900 */
    color: #f8fafc; /* Offwhite */
}

/* Typography Utilities */
.font-serif {
    font-family: 'Cinzel', serif;
}

.font-sans {
    font-family: 'Lato', sans-serif;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.reveal-on-scroll {
    opacity: 0.01; /* Ensure it doesn't flash if JS fails */
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.1s;
}

/* Staggered Delays */
.delay-100 { animation-delay: 0.2s; }
.delay-200 { animation-delay: 0.3s; }
.delay-300 { animation-delay: 0.4s; }

/* Navbar Glass Effect */
.nav-scrolled {
    background-color: rgba(2, 44, 34, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

/* Gold Gradient Text Utility */
.text-gradient-gold {
    background: linear-gradient(to right, #fbbf24, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #022c22;
}

::-webkit-scrollbar-thumb {
    background: #065f46;
    border-radius: 5px;
}

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

/* Mobile Menu Transitions */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Custom Button Hover Glow */
.btn-glow:hover {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.5);
}
