/**
 * Base Styles & Variables
 * Alaska Gun Trader Theme
 * 
 * @package Alaska_Gun_Trader
 */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
    /* Brand Colors */
    --agt-gunmetal: #1C2526;
    --agt-forest: #2E4A3F;
    --agt-orange: #D94F04;
  --agt-white: #FFFFFF;
    --agt-cream: #FAF9F6;
    --agt-gray: #F5F5F5;
    --agt-light-gray: #E8E8E8;
    --agt-dark-overlay: rgba(28, 37, 38, 0.75);
    
    /* Typography */
    --agt-font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --agt-font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --agt-spacing-xs: 8px;
    --agt-spacing-sm: 16px;
    --agt-spacing-md: 24px;
    --agt-spacing-lg: 40px;
    --agt-spacing-xl: 60px;
    
    /* Layout */
    --agt-container-width: 1200px;
    --agt-border-radius: 8px;
    --agt-box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    
    /* Transitions */
    --agt-transition: all 0.3s ease;
}

/* ==========================================
   RESET & BASE
   ========================================== */
* {
    margin: 0;
 padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--agt-font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--agt-gunmetal);
    background-color: var(--agt-white);
}

/* ==========================================
   TYPOGRAPHY
 ========================================== */
h1, h2, h3, h4, h5, h6 {
font-family: var(--agt-font-heading);
    font-weight: 700;
  line-height: 1.2;
    margin-bottom: var(--agt-spacing-sm);
    color: var(--agt-gunmetal);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--agt-spacing-sm);
}

a {
    color: var(--agt-forest);
 text-decoration: none;
    transition: var(--agt-transition);
}

a:hover {
    color: var(--agt-orange);
}

/* Focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus {
    outline: 2px solid var(--agt-orange);
    outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--agt-orange);
    color: var(--agt-white);
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
