/* Import Inter font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* Base styles */
body {
    font-family: 'Inter', sans-serif;
}

/* Shared gradient text utility */
.gradient-text {
    background: linear-gradient(to right, #60A5FA, #818CF8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-gradient {
    background: linear-gradient(45deg, #60A5FA, #818CF8, #60A5FA);
    background-size: 200% auto;
    animation: gradient 8s linear infinite;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Custom hero section */
.hero-section {
    background: linear-gradient(to bottom, #3730a3, #2563eb, #1d4ed8);
    min-height: 100vh;
    padding-top: 8rem;
    padding-bottom: 10rem;
}

/* Custom sections */
.features-section {
    padding: 5rem 0;
}

.how-it-works-section {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 6rem 0;
}

.success-stories-section {
    padding: 5rem 0;
}

.cta-section {
    background: linear-gradient(to right, #2563eb, #3b82f6, #6366f1);
    padding: 6rem 0;
}

/* Animations */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fade-in 0.6s ease-out forwards;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Prose styles for markdown content */
.prose {
    max-width: none;
    color: #374151;
}

.prose h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1f2937;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.prose h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #374151;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.prose p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4b5563;
}

.prose ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.prose strong {
    font-weight: 600;
    color: #1f2937;
}

.prose em {
    font-style: italic;
}

/* Loading spinner styles */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: #6b7280;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.5rem;
}

/* Bootstrap utility overrides and additions */
.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-900 {
    background-color: #111827;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-600 {
    color: #4b5563;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.hover-blue:hover {
    color: #2563eb;
}

.hover-blue-400:hover {
    color: #60a5fa;
}

/* Custom header styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}

.content-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Footer styles */
.footer {
    background-color: #111827;
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.main-footer {
    background-color: #111827;
    color: white;
    padding: 3rem 0;
} 