@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

body {
    --bg-color: #f8f9fa;
    --text-color: #333;
    --card-bg: white;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'Space Grotesk', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

.dark {
    --bg-color: #1a1a2e;
    --text-color: #f0f0f0;
    --card-bg: #16213e;
    --dark-heading-color: #b8c1ec; /* New variable for dark mode headings */
}

.dark .text-gray-600,
.dark .text-gray-700,
.dark .text-gray-800 {
    color: #d1d5db;
}

.dark .gradient-text {
    background: linear-gradient(90deg, #b8c1ec, #a5b4fc, #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Stats section specific styling for dark mode */
.dark .p-6 .text-gray-500,
.dark .p-6 .text-indigo-500 {
    color: #ffffff !important;
}

.text-gray-600 {
    color: #555;
}
.text-gray-700 {
    color: #444;
}
.text-gray-800 {
    color: #333;
}

.dark .text-indigo-500 {
    color: #8b9eff;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.glow-card {
    background-color: var(--card-bg);
}

.gradient-text {
    background: linear-gradient(90deg, #5e72e4, #825ee4, #a84ee4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.glow-card {
    box-shadow: 0 0 15px rgba(94, 114, 228, 0.1);
    transition: all 0.3s ease;
    background-color: white;
}

.dark .glow-card {
    background-color: var(--card-bg);
    box-shadow: 0 0 15px rgba(20, 30, 70, 0.3);
}

.glow-card:hover {
    box-shadow: 0 0 25px rgba(94, 114, 228, 0.2);
    transform: translateY(-5px);
}

.therapy-particle {
    position: absolute;
    background: rgba(94, 114, 228, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.typewriter {
    overflow: hidden;
    border-right: .15em solid #5e72e4;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: .15em;
    animation:
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: #5e72e4 }
}

.therapy-icon {
    color: #5e72e4;
    background-color: #f0f4ff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.dark .therapy-icon {
    color: #8b9eff;
    background-color: rgba(22, 33, 62, 0.5);
} 