/* Template 47 - Olive Military / Tactical */
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600;700;800&family=Oswald:wght@400;500;600;700&display=swap");

:root {
  --bg-primary: #1a1f16;
  --bg-secondary: #252d20;
  --bg-tertiary: #3a4a2f;

  --text-primary: #e8f0d5;
  --text-secondary: #b8c99f;
  --text-muted: #8a9d6f;

  --accent-olive: #6b7c52;
  --accent-military: #8b9b6a;
  --accent-camo: #5a6b44;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: "Barlow", sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
      90deg,
      transparent 0px,
      rgba(107, 124, 82, 0.03) 1px,
      transparent 2px,
      transparent 40px
    ), repeating-linear-gradient(0deg, transparent 0px, rgba(107, 124, 82, 0.03) 1px, transparent 2px, transparent 40px);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header - Tactical Style */
.site-header {
  background: rgba(26, 31, 22, 0.95);
  border-bottom: 3px solid var(--accent-olive);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

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

.site-logo a {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-olive);
  padding: 0.4rem 1.2rem;
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.site-logo a:hover {
  background: var(--accent-olive);
  box-shadow: 0 0 20px rgba(107, 124, 82, 0.4);
  transform: translateY(-2px);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  padding: 0.6rem 1.2rem;
  border: 1px solid transparent;
}

.site-nav a:hover {
  color: var(--text-primary);
  border: 1px solid var(--accent-olive);
  background: rgba(107, 124, 82, 0.1);
}

/* Hero Section - Military Briefing */
.section.head {
  padding: 7rem 0;
  text-align: left;
  position: relative;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-left: 5px solid var(--accent-olive);
  margin-left: 2rem;
}

.section.head h1 {
  font-family: "Oswald", sans-serif;
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.1;
  text-shadow: 3px 3px 0 var(--accent-camo);
}

.section.head p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 800px;
  font-weight: 500;
  line-height: 1.8;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section header::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent-olive);
}

.section header h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.section header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

/* Footer - Command Center */
.footer {
  background: var(--bg-secondary);
  padding: 3rem 0 1rem;
  border-top: 3px solid var(--accent-olive);
  margin-top: 5rem;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-about {
  flex: 1;
  max-width: 400px;
}

.footer-tagline {
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 500;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-military);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--accent-camo);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: slideInLeft 0.7s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.7rem;
  color: var(--text-primary);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
}
