/* JocoFit Custom Styles */

/* Gradient Backgrounds */
.gradient-bg {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.card-gradient {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
}

/* Glow Effect - Orange theme */
.glow {
    box-shadow: 0 0 60px rgba(249, 115, 22, 0.15);
}

/* Feature Icon Gradient - Orange theme to match logo */
.feature-icon {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

/* Form Styles */
.form-input {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Button Hover States */
.btn-primary {
    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
}

/* Card Hover Effects */
.feature-card {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animation for pulse effect */
@keyframes pulse-orange {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse-orange {
    animation: pulse-orange 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Alert Styles */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.alert-error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}
