/* ==========================================================================
   VBA - About Us Styles (Matching code.html, DESIGN.md & screen.png)
   ========================================================================== */

/* Hero Gradient Overlay */
.hero-gradient {
    background: linear-gradient(to right, rgba(68, 42, 16, 0.95), rgba(68, 42, 16, 0.60));
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(129, 117, 107, 0.1);
}

/* Five Pillars Icon Animation */
.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: #9a460a !important;
    color: #ffffff !important;
}

/* Custom Scroll Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Real-Time Line-by-Line Scroll Reveal */
.scroll-word {
    display: inline;
    transition: none !important;
    will-change: opacity;
}

/* Material Symbols Icon Configuration */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
