/*
 * landing.css
 * Custom styles for the landing page of SISTEMA_REHAB
 */

:root {
    --primary-color: #0d6efd; /* Bootstrap Primary */
    --secondary-color: #6c757d; /* Bootstrap Secondary */
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --text-color: #212529;
    --text-color-light: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.navbar-landing {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.hero-section {
    background: url('../assets/img/unnamed.jpg') no-repeat center center;
    background-size: cover;
    color: var(--text-color-light);
    padding: 12rem 0;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.section {
    padding: 5rem 0;
}

.section-bg {
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.feature-card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding: 2rem;
    height: 100%;
}

.feature-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.feature-card .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.compliance-section img {
    max-width: 100%;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}

.footer {
    background-color: var(--dark-gray);
    color: var(--text-color-light);
    padding: 3rem 0;
}

.footer a {
    color: var(--text-color-light);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}
