@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --brand-purple: #5D3EBC;
    /* Primary Purple */
    --brand-purple-dark: #4c3299;
    --brand-yellow: #FDB022;
    /* Secondary Yellow/Gold */
    --brand-yellow-dark: #F79009;
    --bg-light: #F9FAFB;
    --text-dark: #1e293b;
    --text-gray: #64748b;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #5D3EBC;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4c3299;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.text-gradient-purple {
    background: linear-gradient(to right, #5D3EBC, #785CC7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-bg {
    background:
        radial-gradient(circle at top right, rgba(93, 62, 188, 0.15), transparent 50%),
        radial-gradient(circle at bottom left, rgba(253, 176, 34, 0.15), transparent 50%),
        radial-gradient(circle at center, rgba(93, 62, 188, 0.05), transparent 50%);
    background-size: 100% 100%;
}

/* Accordion Specifics */
.faq-content {
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.faq-item.active .faq-content {
    max-height: 200px;
    opacity: 1;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Water Fill Button Animation */
.btn-water-fill {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.btn-water-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #5D3EBC;
    /* brand-purple */
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: inherit;
}

.btn-water-fill:hover::before {
    width: 100%;
}

.btn-water-fill:hover {
    color: white !important;
}

.btn-water-fill>* {
    position: relative;
    z-index: 1;
}

.btn-water-fill svg {
    transition: stroke 0.4s ease;
}

.btn-water-fill:hover svg {
    stroke: white !important;
}