/* ===========================
   RESET GARAGE - MAIN STYLESHEET
   Wichita Garage Cleanout and Organization
   =========================== */

/* ===========================
   CSS VARIABLES - COLOR PALETTE
   =========================== */
:root {
    /* Primary Colors */
    --safety-orange: #FF6B35;
    --deep-navy: #1A1A1D;
    --cream: #F7F7F2;

    /* Secondary/Accent Colors */
    --warm-yellow: #FDB827;
    --steel-blue: #4A7C8C;
    --rust-red: #C1403D;

    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Public Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--deep-navy);
    background-color: var(--cream);
}

/* ===========================
   TYPOGRAPHY SYSTEM
   =========================== */
h1, h2 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--deep-navy);
    line-height: 1.1;
}

h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

h3 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--deep-navy);
}

h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--deep-navy);
}

p {
    margin-bottom: 1rem;
}

ul {
    margin-bottom: 1rem;
}

ul li {
    margin-bottom: 0.5rem;
}

/* ===========================
   LAYOUT UTILITIES
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-dark {
    background-color: var(--deep-navy);
    color: var(--cream);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--cream);
}

.section-dark label {
    color: var(--cream);
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
header {
    background-color: var(--deep-navy);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 62.5px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

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

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--safety-orange);
    color: white;
}

.btn-primary:hover {
    background-color: #E55A2B;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--deep-navy);
    border: 2px solid var(--deep-navy);
}

.btn-secondary:hover {
    background-color: var(--deep-navy);
    color: var(--cream);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    background-color: var(--deep-navy);
    color: var(--cream);
    padding: 100px 0 80px;
}

/* Homepage Hero with Background Image */
.hero-home {
    background: linear-gradient(rgba(26, 26, 29, 0.85), rgba(26, 26, 29, 0.85)),
                url('wichita-keeper-of-the-plains-reset-garage-hero.jpg') center center / cover no-repeat;
    padding: 120px 0 100px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.hero-home h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--cream);
}

.hero-home .hero-subtitle {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-location {
    font-weight: 600;
    color: var(--safety-orange);
    margin-bottom: 2rem;
    display: block;
}

.hero-home .hero-location {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===========================
   FORMS
   =========================== */
form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--deep-navy);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--steel-blue);
    background-color: white;
    color: var(--deep-navy);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--safety-orange);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* ===========================
   VALUE GRID (About Page)
   =========================== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.value-item {
    background-color: white;
    padding: 30px;
    border-left: 4px solid var(--safety-orange);
}

.value-item h3 {
    color: var(--deep-navy);
    margin-bottom: 15px;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background-color: var(--deep-navy);
    color: var(--cream);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--safety-orange);
    margin-bottom: 15px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--cream);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--safety-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(247, 247, 242, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }
}
