/* Marketing Landing Page Specific Styles */

/* Gradient text for hero section */
.gradient-text {
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dark .gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Language dropdown styling */
#language-dropdown {
    animation: dropdownFadeIn 0.2s ease-out;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.dark #language-dropdown {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lang-option {
    transition: all 0.2s ease;
    color: var(--color-text-primary);
}

.lang-option:hover {
    background-color: var(--color-bg-secondary) !important;
    color: var(--color-accent);
}

/* Feature cards hover effects */
.feature-card {
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.feature-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Hero scroll icon animation */
.hero-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Authentication modal backdrop */
.auth-modal {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.5);
}

/* Marketing page navigation enhancements */
nav .gradient-text {
    font-weight: 700;
}

/* CTA section enhancements */
.cta-section {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
}

/* Feature icons styling */
.feature-card .card-icon i {
    transition: transform 0.3s ease;
}

.feature-card:hover .card-icon i {
    transform: scale(1.1);
}

/* How it works section number circles */
.how-it-works .step-number {
    background: linear-gradient(135deg, var(--color-accent) 0%, #2563eb 100%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Footer link hover effects */
footer a {
    transition: color 0.2s ease;
}

footer a:hover {
    color: var(--color-accent);
}

/* Beta badge styling */
.beta-badge {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

/* Responsive enhancements for marketing page */
@media (max-width: 768px) {
    .hero-animation {
        animation-duration: 4s;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .gradient-text {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    /* Mobile language dropdown adjustments */
    #language-dropdown {
        right: -20px;
        width: 140px;
    }
} 