/* ==========================================================================
   Lone Star Mountaineer - Website Stylesheet
   ========================================================================== */

/* --- 1. CSS Variables (Color Palette & Fonts) --- */
:root {
  /* Core Brand Colors extracted from the logo */
  --brand-navy: #1D2A4D;   /* Dark blue from the mountains and flags */
  --brand-red: #BE1E2D;    /* Deep red from the star and Texas flag */
  --brand-grey: #B3B3B3;   /* Silver/grey from the state outlines */
  --brand-gold: #E5B73B;   /* Gold/yellow from the mountaineer accents */
  
  /* Backgrounds & Text */
  --bg-light: #F4F5F7;     /* Soft off-white for backgrounds */
  --bg-white: #FFFFFF;
  --text-dark: #1A1A1A;    /* Very dark grey for main text */
  --text-light: #FFFFFF;

  /* Typography */
  /* Using Google Fonts as fallbacks to match the image's fonts */
  --font-brand: 'Montserrat', 'Arial Black', sans-serif; /* Bold, structured */
  --font-motto: 'Merriweather', 'Georgia', serif;        /* Elegant, classic */
  --font-body: 'Open Sans', 'Arial', sans-serif;         /* Clean readability */
}

/* --- 2. Base Reset & Body Styles --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
}

/* --- 3. Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-brand);
  color: var(--brand-navy);
  font-weight: 800;
  margin-bottom: 1rem;
}

.brand-title {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.brand-motto {
  font-family: var(--font-motto);
  font-size: 1.1rem;
  letter-spacing: 4px; /* Mimics the wide spacing in "Montani Semper Liberi" */
  color: var(--text-dark);
  text-transform: uppercase;
  font-weight: 400;
}

/* --- 4. Layout & Components --- */
header {
  background-color: var(--bg-white);
  padding: 20px 5%;
  border-bottom: 4px solid var(--brand-navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* --- 5. Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-brand);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--brand-navy);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--brand-red);
  color: var(--text-light);
}

.btn-secondary {
  background-color: transparent;
  color: var(--brand-navy);
  border: 2px solid var(--brand-navy);
}

.btn-secondary:hover {
  background-color: var(--brand-navy);
  color: var(--text-light);
}

/* --- 6. Accent Utilities --- */
.text-red { color: var(--brand-red); }
.text-navy { color: var(--brand-navy); }

/* A decorative divider line mimicking the flag elements */
.flag-divider {
  height: 6px;
  width: 100%;
  background: linear-gradient(to right, var(--brand-navy) 33%, var(--bg-white) 33%, var(--bg-white) 66%, var(--brand-red) 66%);
  margin: 2rem 0;
}