/* OCG Customs — Custom Styles */

/* Scroll-triggered fade-up already handled in HTML via JS */

/* Smooth focus styles */
a:focus-visible, button:focus-visible {
    outline: 2px solid #C9A227;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Selection color */
::selection {
    background: rgba(201, 162, 39, 0.3);
    color: #0A1628;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0A1628;
}
::-webkit-scrollbar-thumb {
    background: #C9A227;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #E2C05A;
}

/* Image loading placeholder */
img {
    background: linear-gradient(135deg, #152540 0%, #1a2d4a 100%);
    min-height: 100px;
}

/* Subtle entrance animation for hero elements */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content > * {
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
}

.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }

.hero-stats .stat-card {
    animation: slideInLeft 0.6s ease forwards;
    opacity: 0;
    transform: translateX(20px);
}

.hero-stats .stat-card:nth-child(1) { animation-delay: 0.3s; }
.hero-stats .stat-card:nth-child(2) { animation-delay: 0.4s; }
.hero-stats .stat-card:nth-child(3) { animation-delay: 0.5s; }
.hero-stats .stat-card:nth-child(4) { animation-delay: 0.6s; }

/* Print styles */
@media print {
    nav, .mobile-menu, .hero-buttons, .cta-box a { display: none; }
    body { color: #000; background: #fff; }
    .hero { background: #f5f5f5; min-height: auto; padding: 40px 0; }
}
