/*
Theme Name: Fontaneros Alhama Child
Theme URI: https://generatepress.com
Description: GeneratePress Child Theme for Fontaneros Alhama
Author: Antigravity
Author URI: https://google.com
Template: generatepress
Version: 1.0.0
*/

:root {
    --color-royal-blue: #0056b3;
    --color-intense-orange: #ff5722;
    --color-urgency-red: #d32f2f;
    --color-light-gray: #f4f6f8;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* 
   GeneratePress Override helpers 
   These ensure the theme respects our custom full-width sections 
*/
.no-sidebar .entry-content {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

/* 
   HIDE GeneratePress Header/Footer ONLY on the Front Page Template 
   (Because we have our own hardcoded ones there)
*/
.page-template-fontaneros-landing .site-header,
.page-template-fontaneros-landing .site-footer {
    display: none;
}


/* Custom Utilities mimicking Tailwind for non-Tailwind contexts */
.text-royal-blue {
    color: var(--color-royal-blue);
}

.bg-royal-blue {
    background-color: var(--color-royal-blue);
}

.text-intense-orange {
    color: var(--color-intense-orange);
}

.bg-intense-orange {
    background-color: var(--color-intense-orange);
}