/*
Theme Name: Hold The Line Custom
Author: Custom
Description: Open Sans clean editorial theme for Hold The Line
Version: 1.5
*/

:root {
  --htl-red: #ED1C24;
  --htl-black: #111111;
  --htl-gray: #4B5563;
  --htl-bg-light: #F9FAFB;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--htl-black);
  background-color: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Brand Logo Treatment */
.logo-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #000000;
}
.logo-the {
  position: relative;
  display: inline-block;
  color: var(--htl-red);
  padding: 0 4px;
}
.logo-the::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -3px;
  right: -3px;
  height: 3.5px;
  background-color: var(--htl-red);
  transform: rotate(-14deg);
}
.logo-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #222222;
}

/* Red Action Buttons */
.btn-htl-red {
  background-color: var(--htl-red);
  color: #FFFFFF;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  border-radius: 4px;
  border: none;
  padding: 10px 20px;
  transition: background-color 0.15s ease-in-out;
}
.btn-htl-red:hover {
  background-color: #BA2A26;
  color: #FFFFFF;
}

/* Line-Art Bordered Form Box */
.box-line-art {
  border: 2px solid var(--htl-black);
  border-radius: 6px;
  background-color: #FFFFFF;
}

/* 3 Pillars */
.pillar-card {
  border: 1px solid #E5E7EB;
  border-top: 4px solid var(--htl-black);
  border-radius: 4px;
  background: #FFFFFF;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

/* Press Strip */
.press-strip {
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  background-color: #FAFAFA;
}

/* Nav Link Styling */
.nav-link-htl {
  color: #ffffff !important;
  text-decoration: none !important;
  position: relative;
  padding-bottom: 8px;
  font-weight: 700 !important;
  display: inline-block;
}
.nav-link-htl::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: var(--htl-red);
  transition: width 0.2s ease;
}
.nav-link-htl:hover::after,
.nav-link-htl.active::after {
  width: 100%;
}

.btn-htl-action {
  color: #ffffff !important;
  background-color: transparent !important;
  border: 1px solid #ffffff !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-htl-action:hover,
.btn-htl-action:focus {
  background-color: var(--htl-red) !important;
  border-color: var(--htl-red) !important;
  color: #ffffff !important;
}

.htl-mobile-link {
  color: #ffffff !important;
  text-decoration: none !important;
  font-weight: 700;
  padding: 12px 0;
  display: block;
  border-bottom: 1px solid #3a404a;
}