/* =============================================
   FITin56 Pre-lander - Custom Styles
   ============================================= */

:root {
    --primary: #10b981;
    --primary-dark: #059669;
}

body {
    font-family: 'Inter', system_ui, -apple-system, sans-serif;
}

/* Heading font */
.heading-font {
    font-family: 'Space Grotesk', 'Inter', system_ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.025em;
}

/* Gradient text */
.fitness-gradient {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.05;
}

/* Card hover effect */
.card {
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(15 23 42 / 0.1), 
                0 8px 10px -6px rgb(15 23 42 / 0.1);
}

/* Button styles */
.cta-button {
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(16 185 129 / 0.3), 
                0 4px 6px -4px rgb(16 185 129 / 0.3);
}

.cta-button:active {
    transform: scale(0.985);
}

/* Section spacing */
.section {
    scroll-margin-top: 80px;
}

/* Navbar */
.navbar {
    backdrop-filter: blur(12px);
}

/* Testimonial cards */
.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #10b981;
}

/* Trust bar */
.trust-item {
    transition: color 0.2s ease;
}

.trust-item:hover {
    color: #10b981;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header {
        font-size: 2.25rem !important;
    }
    
    .hero-headline {
        font-size: 3rem !important;
        line-height: 1.1 !important;
    }
}