/* Landing Page Styles 
rms/public/assets/landing.css
*/

:root {
    --primary: #0d6efd;
    --secondary: #6c757d;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
}

/* Navigation */
.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
}

.navbar-brand .brand-icon {
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content h1 {
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero-content .text-primary {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: white;
}

.stat-item h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Results Access Section */
.results-access-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    min-height: 80vh;
}

.results-access-section .card {
    transition: all 0.3s ease;
}

.results-access-section .card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.1) !important;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
}

/* Footer */
.footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.7);
}

.footer a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-card {
        margin-bottom: 1rem;
    }
}