/*
Theme Name: Ismael Nicolas SEO
Theme URI: https://example.com
Author: Antigravity
Author URI: https://example.com
Description: A lightweight, SEO-optimized theme with colors based on the Ismael Nicolas logo. Designed to be non-intrusive.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ismael-nicolas-seo
*/

:root {
    /* Logo Colors */
    --ins-color-red: #FF0000;
    /* Primary Red from hat/lips */
    --ins-color-blue: #00008B;
    /* Dark Blue from text background */
    --ins-color-white: #FFFFFF;
    /* White from face/text */
    --ins-color-black: #000000;
    /* Black from outlines */

    /* Functional Colors */
    --ins-text-color: var(--ins-color-black);
    --ins-bg-color: var(--ins-color-white);
    --ins-link-color: var(--ins-color-blue);
    --ins-link-hover: var(--ins-color-red);
}

/* 
 * Minimal Reset - Scoped to body to avoid bleeding if used in a weird context, 
 * though for a theme it's usually global. 
 * We keep it minimal to not interfere with future page builders or custom HTML.
 */

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: var(--ins-text-color);
    background-color: var(--ins-bg-color);
    line-height: 1.6;
}

/* 
 * Layout Helpers 
 * Using a namespace prefix 'ins-' (Ismael Nicolas SEO) to avoid conflicts.
 */

/* 
 * Layout Helpers 
 * Using a namespace prefix 'ins-' (Ismael Nicolas SEO) to avoid conflicts.
 */

.ins-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Full Width Page Template Styles */
.page-template-page-full-width .ins-container {
    max-width: 100%;
    padding: 0 40px;
}

.ins-footer {
    background-color: var(--ins-color-blue);
    color: var(--ins-color-white);
    padding: 2rem 0;
    text-align: center;
    border-top: 4px solid var(--ins-color-red);
}

/* Screen Reader Text for Accessibility/SEO */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}