/*
Theme Name:   Valley Vision Child
Theme URI:    https://valleyvisionbuilders.com
Description:  Child theme for Valley Vision Construction & Development LLC. Built on Hello Elementor. This theme is a pure shell — zero hardcoded page content. All page content is managed via Elementor Pro templates.
Author:       Visual Solutions LLC / Keep it Simple Web Services
Template:     hello-elementor
Version:      2.0.0
License:      GNU General Public License v2 or later
Text Domain:  valley-vision-child
*/

/* ============================================================
   CSS CUSTOM PROPERTIES — Design System
   All brand colors, fonts, and spacing defined here as
   CSS variables so they cascade throughout the entire site.
   ============================================================ */
:root {
    /* Brand Colors */
    --color-primary:    #1A2E4A;   /* Navy — headers, hero backgrounds, headings */
    --color-secondary:  #C9943A;   /* Gold — CTAs, accents, highlights */
    --color-gold-light: #E8B86D;   /* Gold hover / lighter accent */
    --color-white:      #FFFFFF;
    --color-dark:       #1C1C1C;   /* Body text */
    --color-gray-light: #F5F7FA;   /* Alternating section backgrounds */
    --color-footer-bg:  #0F1E30;   /* Deep navy footer */

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body:    'Open Sans', sans-serif;

    /* Layout */
    --header-height:  80px;
    --container-max:  1200px;
    --border-radius:  4px;

    /* Spacing */
    --section-py: 80px;
    --section-px: 20px;
}

/* ============================================================
   BASE STYLES
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-primary);
    margin-top: 0;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-gold-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================================
   BUTTON UTILITY CLASSES
   These can be applied to any <a> or <button> element.
   ============================================================ */

/* Gold filled button — primary CTAs */
.btn-primary {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-secondary);
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--color-gold-light);
    border-color: var(--color-gold-light);
    color: var(--color-white);
}

/* Gold outline button — secondary CTAs */
.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    border: 2px solid var(--color-secondary);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

/* ============================================================
   MAIN CONTENT AREA
   Clears the fixed 80px header on all pages.
   ============================================================ */
#main-content {
    padding-top: var(--header-height);
}
