/*
Theme Name: Adapptika
Theme URI: https://adapptika.com
Description: Un tema ultra-ligero y minimalista optimizado para trabajar con Elementor Page Builder.
Version: 1.0.0
Author: Adapptika
Author URI: https://adapptika.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adapptika
*/

/* Basic CSS Reset & Layout */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

/* Container limits for standard sections (not controlled by Elementor) */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Minimal Header styling */
.site-header {
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
    padding: 16px 0;
}

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

.site-branding {
    display: flex;
    align-items: center;
}

.site-branding img {
    max-height: 48px;
    width: auto;
}

.site-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-title a:hover {
    color: #0284c7;
}

/* Navigation Menu */
.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 24px;
}

.main-navigation a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}

.main-navigation a:hover {
    color: #0284c7;
}

/* Minimal Footer styling */
.site-footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 24px 0;
    text-align: center;
    font-size: 14px;
    color: #64748b;
    margin-top: auto;
}

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

/* Utility layout wrapper to push footer to the bottom */
.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex-grow: 1;
}
