/*
Theme Name: CRAI Theme
Theme URI: https://crai.fixmy3scores.com
Author: Jorge Narváez de la Mora
Author URI: https://www.imaginario.mx
Description: A minimal landing page theme for Fix My 3 Scores onboarding and dashboard.
Version: 0.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: crai-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --crai-primary: #052849;
    --crai-text: #1d2327;
    --crai-bg: #ffffff;
    --crai-container-width: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: var(--crai-text);
    background-color: var(--crai-bg);
}

.container {
    max-width: var(--crai-container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    padding: 40px 0;
}

.site-header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-header .custom-logo-link img {
    max-height: 60px;
    width: auto;
}

/* Main Content */
.site-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 20px 0 80px;
    min-height: 50vh;
}

.site-content {
    width: 100%;
    max-width: var(--crai-container-width);
    text-align: left;
}

/* Footer */
.site-footer {
    background-color: var(--crai-primary);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.site-footer .container {
    max-width: var(--crai-container-width);
}

.footer-section {
    margin-bottom: 40px;
}

.footer-section:last-child {
    margin-bottom: 0;
}

.site-footer .copyright {
    font-size: 20px;
    font-weight: 600;
}

.site-footer .privacy-statement {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.site-footer .card-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.site-footer .card-icons img {
    height: 48px;
    width: auto;
}

.site-footer .security-statement {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.site-footer p {
    margin-bottom: 12px;
}

/* Utilities */
.bold { font-weight: 700; }
.italic { font-style: italic; }

@media (max-width: 768px) {
    .site-header {
        padding: 24px 0;
    }
    .site-footer {
        padding: 40px 0;
    }
}
