/*
Theme Name: Tactical Wild Theme
Theme URI:  
Author:      Your Name
Author URI:  
Description: A rugged camping/affiliate WordPress theme based on my HTML template.
Version:     1.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tactical-camp
Tags:        camping, affiliate, rugged, blog, shop
*/

/* style.css - Global Foundation */
/* Standardize Font Loading: It is safer to enqueue these in functions.php or header.php */
/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Oswald:wght@500;700&family=Arvo:wght@400;700&family=JetBrains+Mono:wght@300;500;700&display=swap'); */

:root {
  --forest-green: #2d4739;
  --earth-tan: #f4f1ea;
  --leather-brown: #8c5e3c;
  --accent-orange: #e67e22;
  --dark-grey: #121212;
  --mid-grey: #666666;
  --border-grey: #d1cfc4;
  --white: #ffffff;
  --off-white: #f9f8f4;
  
  /* TACTICAL COLOR EXTENSIONS */
  --milspec-olive: #3d4430;
  --milspec-drab:  #4b4b3d;
  --milspec-slate: #2f353b;
  --milspec-tan:   #5c5443;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-grey);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* 2. TYPOGRAPHY */
h1, h2, h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--forest-green);
    line-height: 1.2;
}

h4, h5, .serif-font {
    font-family: 'Arvo', serif;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

a { 
    text-decoration: none; 
    transition: 0.3s ease; 
    color: inherit;
}

ul { list-style: none; }

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

/* 3. LAYOUT UTILITIES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.section-padding { 
    padding: 100px 0; 
}

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

/* 4. GLOBAL ELEMENTS */
.serial-no {
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--mid-grey);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-meta {
    margin-bottom: 40px;
}

.v-tag {
    background: var(--leather-brown);
    color: var(--white);
    padding: 5px 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: bold;
    display: inline-block;
}

/* 5. GLOBAL BUTTONS */
.btn, .btn-luxury, .btn-main, .btn-add-cart, .video-watch-link {
    display: inline-block;
    padding: 15px 35px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
    transition: 0.3s ease;
    text-align: center;
}

.btn-dark {
    background: var(--dark-grey);
    color: var(--white);
}

.btn-dark:hover, .btn-luxury:hover {
    background: var(--leather-brown);
    color: var(--white);
}

/* Specific button styles used in template parts */
.btn-luxury, .btn-main, .btn-add-cart, .video-watch-link {
    background: var(--forest-green);
    color: var(--white);
}

/* 6. RESPONSIVE FOUNDATION */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

/* ==========================================================================
   7. FIELD REPORT CONTENT STYLES (Readability & Typography)
   ========================================================================== */

.report-body {
    font-size: 1.1rem;
    line-height: 1.8; 
    color: #333333;
    margin-bottom: 40px;
}

.report-body p {
    margin-bottom: 1.6rem;
}

.report-body p:first-of-type {
    font-size: 1.2rem;
    color: var(--forest-green);
    font-weight: 500;
}

.report-body h2, 
.report-body h3 {
    margin: 2.5rem 0 1.2rem;
    color: var(--dark-grey);
    border-left: 4px solid var(--accent-orange);
    padding-left: 15px;
}

.report-body blockquote {
    margin: 2rem 0;
    padding: 25px;
    background: var(--earth-tan);
    border-top: 1px solid var(--border-grey);
    border-bottom: 1px solid var(--border-grey);
    position: relative;
}

.report-body blockquote p {
    font-family: 'Arvo', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--forest-green);
    margin-bottom: 0;
}

.report-body blockquote::before {
    content: "ADVISORY";
    display: block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--leather-brown);
    margin-bottom: 10px;
}

.report-body img {
    margin: 2.5rem 0;
    border: 1px solid var(--border-grey);
    padding: 5px;
    background: var(--white);
}

.report-body ul, 
.report-body ol {
    margin-bottom: 1.6rem;
    padding-left: 20px;
}

.report-body li {
    margin-bottom: 0.8rem;
    list-style: square;
    color: var(--mid-grey);
}

@media (max-width: 768px) {
    .report-body {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* 8. OPERATIONS HEADER TICKER */
.ops-header {
    background: var(--dark-grey);
    color: var(--white);
    padding: 12px 0;
    border-bottom: 2px solid var(--forest-green);
}

.ops-ticker {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ops-label {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.ops-label strong {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.ops-list {
    display: flex;
    gap: 40px;
    overflow: hidden;
    white-space: nowrap;
}

.ops-item {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--border-grey);
    transition: color 0.3s ease;
}

.ops-item:hover {
    color: var(--accent-orange);
}

.ops-date {
    color: var(--leather-brown);
    margin-right: 8px;
}

@media (max-width: 768px) {
    .ops-list .ops-item:not(:first-child) {
        display: none;
    }
}

/* ==========================================
   THE FIELD HUB GRID ENGINE (v2.2 - EDGE BREAKOUT)
   ========================================== */

#field-hub-section {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background: #fdfdfb; 
    overflow: visible !important; 
}

.tactical-main-wrapper {
    display: grid !important;
    grid-template-columns: 320px minmax(600px, 1fr) 320px !important; 
    gap: 40px !important; 
    width: 96% !important; 
    max-width: 1800px; 
    margin: 0 auto;
    padding: 60px 20px;
    align-items: start !important; 
}

.field-sidebar {
    display: flex !important;
    flex-direction: column !important; 
    gap: 15px !important;
    width: 100% !important; 
    max-width: 320px !important;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 40px !important; 
    z-index: 100;
}

.field-sidebar.left {
    grid-column: 1 / 2 !important; 
    justify-self: start !important;
}

.field-sidebar.right {
    grid-column: 3 / 4 !important; 
    justify-self: end !important;
}

.instrument-bar {
    background: #1a1a1a;
    border: 1px solid #3e442c;
    border-left: 4px solid #a69076;
    padding: 12px 15px;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    font-family: 'JetBrains Mono', monospace;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
    width: 100% !important; 
    flex-shrink: 0 !important; 
    margin-bottom: 10px !important; 
}

.instrument-bar .label {
    font-size: 0.65rem;
    color: #888;
    text-transform: uppercase;
    white-space: nowrap; 
    display: flex;
    align-items: center;
    gap: 8px;
}

.instrument-bar .value {
    font-size: 0.85rem;
    color: #fff;
    font-weight: bold;
    white-space: nowrap; 
    text-align: right; 
}

.utility-box {
    background: #1a1a1a;
    border: 1px solid #3e442c;
    color: #fff;
    padding: 20px;
    margin-top: 10px;
    font-family: 'JetBrains Mono', monospace;
    position: relative;
    box-shadow: 6px 6px 0px rgba(62, 68, 44, 0.4);
}

.utility-header h4 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #a69076;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.articles-center-column {
    grid-column: 2 / 3 !important; 
    width: 100% !important;
    min-width: 0 !important; 
    padding: 0 !important;
}

.articles-grid-tactical {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px;
}

@media (max-width: 1400px) { 
    .tactical-main-wrapper {
        grid-template-columns: 1fr !important;
        width: 95% !important;
    }
    .field-sidebar { display: none !important; }
}