/* ===================================== */
/* === 1. LOCAL FONT DEFINITIONS ======= */
/* ===================================== */

@font-face {
    font-family: 'Merriweather';
    src: url('/assets/fonts/Merriweather-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Merriweather';
    src: url('/assets/fonts/Merriweather-Italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Merriweather';
    src: url('/assets/fonts/Merriweather-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Merriweather';
    src: url('/assets/fonts/Merriweather-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
}


/* ===================================== */
/* === 2. GLOBAL RESET & BASE STYLES === */
/* ===================================== */

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Merriweather', serif;
    background-color: #F5F3ED; /* Archive Parchment */
    color: #1A1A1A; /* Charcoal Ink */
    line-height: 1.6;
    font-size: 17px;
}

.site-wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}


/* ===================================== */
/* === 3. FULL-WIDTH DESKTOP HEADER ==== */
/* ===================================== */

.main-site-header {
    background-color: #6B5D3A; /* Service Khaki */
    color: #F5F3ED;
    width: 100%;
    padding: 14px 20px;
    box-sizing: border-box;
    border-bottom: 3px solid #927E5B; /* Field Drab */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}


/* ===================================== */
/* === 4. LOGO + TITLE + TAGLINE ======= */
/* ===================================== */

.site-logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.site-logo {
    height: 60px;
    width: auto;
    display: block;
}

.site-title-block {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.site-title {
    font-size: 1.9rem;
    font-weight: 700;
    color: #F5F3ED;
}

.site-tagline {
    font-size: 1rem;
    color: #BDAE88; /* Webbing Beige */
    margin-top: 2px;
    letter-spacing: 0.4px;
}


/* ===================================== */
/* === 5. NAVIGATION MENU (DESKTOP) ==== */
/* ===================================== */

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 0px;
    margin: 0;
    padding: 0;
}

.site-nav a {
    text-decoration: none;
    color: #F5F3ED;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
    background-color: #927E5B; /* Field Drab */
    color: #1A1A1A;
}


/* ===================================== */
/* === 6. HERO SEARCH SECTION ========== */
/* ===================================== */

.hero-section {
    background-color: #F5F3ED;
    padding: 60px 20px;
    border-bottom: 3px solid #927E5B;
}

.hero-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 25px;
}

.hero-search-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.hero-search-input {
    width: 60%;
    padding: 12px 14px;
    font-size: 1rem;
    border: 2px solid #927E5B;
    border-radius: 6px;
}

.hero-search-button {
    padding: 12px 20px;
    background-color: #6B5D3A;
    color: #F5F3ED;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
}

.hero-search-button:hover {
    background-color: #927E5B;
    color: #1A1A1A;
}

.hero-subtext {
    margin-top: 20px;
    color: #6B5D3A;
    font-style: italic;
}


/* ===================================== */
/* === 7. ACTION BLOCKS ================ */
/* ===================================== */

.action-blocks {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 40px 20px;
    background-color: #F5F3ED;
}

.action-card {
    background-color: #BDAE88; /* Webbing Beige */
    border: 2px solid #927E5B; /* Field Drab */
    padding: 20px;
    width: 260px;
    text-align: center;
    text-decoration: none;
    color: #1A1A1A;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.action-card:hover {
    background-color: #927E5B;
    color: #F5F3ED;
}


/* ===================================== */
/* === 8. MAIN CONTENT AREA ============ */
/* ===================================== */

main {
    flex: 1;
    padding: 40px;
    background-color: #F5F3ED;
    color: #1A1A1A;
}