/* Frontier Field Inspections – Rustic Frontier Theme */

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Colors from your logo */
:root {
    --frontier-gold: #f2a43b;
    --frontier-orange: #d96b27;
    --frontier-brown: #5a3b1e;
    --charcoal: #222222;
    --light-bg: #ffffff;
}

/* Body */
body {
    background: var(--light-bg);
    color: var(--charcoal);
    line-height: 1.6;
}

/* Banner */
.banner {
    width: 100%;
    height: 280px;
    background: linear-gradient(
        to bottom,
        var(--frontier-gold),
        var(--frontier-orange),
        var(--frontier-brown)
    );
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 4px solid var(--charcoal);
}

.banner img {
    height: 200px;
}

/* Navigation */
nav {
    background: var(--charcoal);
    padding: 12px 0;
    text-align: center;
}

nav a {
    color: var(--frontier-gold);
    text-decoration: none;
    margin: 0 20px;
    font-size: 18px;
    font-weight: bold;
}

nav a:hover {
    color: var(--frontier-orange);
}

/* Page Container */
.container {
    width: 85%;
    max-width: 1100px;
    margin: 40px auto;
}

/* Section Headers */
h1, h2 {
    color: var(--frontier-brown);
    margin-bottom: 20px;
}

/* Buttons */
.button {
    display: inline-block;
    background: var(--frontier-orange);
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.button:hover {
    background: var(--frontier-brown);
}

/* Home page button spacing */
.home-button {
    display: block;
    margin: 30px auto;
    text-align: center;
}




