/* ==========================================================================
   Public Site — Shared Styles
   Loaded globally via base.html. Do NOT duplicate in individual templates.
   ========================================================================== */

/* Dot-grid pattern overlay */
.dot-grid {
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 32px 32px;
}

/* Hero entrance animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-animate { opacity: 0; animation: fadeInUp 0.7s ease-out forwards; }
.hero-animate-1 { animation-delay: 0.1s; }
.hero-animate-2 { animation-delay: 0.3s; }
.hero-animate-3 { animation-delay: 0.5s; }
.hero-animate-4 { animation-delay: 0.7s; }
.hero-animate-5 { animation-delay: 0.9s; }

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.stagger-child {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-on-scroll.is-visible .stagger-child { opacity: 1; transform: translateY(0); }
.animate-on-scroll.is-visible .stagger-1 { transition-delay: 0.1s; }
.animate-on-scroll.is-visible .stagger-2 { transition-delay: 0.2s; }
.animate-on-scroll.is-visible .stagger-3 { transition-delay: 0.3s; }
.animate-on-scroll.is-visible .stagger-4 { transition-delay: 0.4s; }

/* Button glow */
.btn-glow {
    box-shadow: 0 0 24px rgba(0, 103, 255, 0.35), 0 4px 12px rgba(0, 103, 255, 0.25);
}
.btn-glow:hover {
    box-shadow: 0 0 32px rgba(0, 103, 255, 0.5), 0 6px 16px rgba(0, 103, 255, 0.3);
}
