/* Custom styles for Fundifys */

:root {
    --brand-blue: #2563eb;
    --brand-glow: #0ea5e9;
    --navy-dark: #020617;
    --cyan: #22d3ee;
}

/* Scroll Reveal Base */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism Header on Scroll */
header.active {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

header.active>div {
    background: rgba(2, 6, 23, 0.8);
    backdrop-filter: blur(12px);
    border-color: rgba(37, 99, 235, 0.2);
}

/* Custom Gradients */
.text-gradient-brand {
    background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glow Effects */
.glow-brand {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.2);
}

/* FAQ Animation */
.faq-content {
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-toggle.active svg {
    transform: rotate(180deg);
}

/* Mobile Menu Adjustments */
@media (max-width: 768px) {
    .reveal {
        transition-duration: 0.5s;
    }
}

/* Premium Button Extras */
@keyframes shine {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

.animate-shine {
    animation: shine 3s infinite;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glossy-effect {
    position: relative;
    overflow: hidden;
}

.glossy-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.glossy-effect:hover::after {
    left: 150%;
}