/* ============================================================
   GLOBAL CSS — Design Tokens, Reset, Typography
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Bebas+Neue&family=Merriweather:ital,wght@0,400;0,700;1,400&family=Special+Elite&display=swap');

/* --- Design Tokens --- */
:root {
  --color-red:            #B22234;
  --color-white:          #FFFFFF;
  --color-blue:           #3C3B6E;
  --color-gold:           #D4AF37;
  --color-parchment:      #F5E6C8;
  --color-parchment-dark: #E8D5A3;

  --font-heading: 'Oswald', 'Bebas Neue', sans-serif;
  --font-body:    'Merriweather', Georgia, serif;
  --font-accent:  'Special Elite', cursive;

  --stripe-r: 3px solid var(--color-red);
  --stripe-w: 3px solid var(--color-white);
  --stripe-b: 3px solid var(--color-blue);
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html[lang] {
  font-size: 16px;
}

/* --- Body & Watermark --- */
body {
  font-family: var(--font-body);
  background-color: var(--color-parchment);
  background-image: url('/images/bg-parchment.jpg');
  background-repeat: repeat;
  color: #222;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "STRENGTH\ATHROUGH\AUNITY\AUNITY\ATHROUGH\AFAITH";
  white-space: pre;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.4;
  color: #000;
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
  text-align: center;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--color-red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

/* --- Utility: Stripe Divider --- */
.stripe-divider {
  width: 100%;
  height: 9px;
  background: linear-gradient(
    to bottom,
    var(--color-red)   0px,
    var(--color-red)   3px,
    var(--color-white) 3px,
    var(--color-white) 6px,
    var(--color-blue)  6px,
    var(--color-blue)  9px
  );
  border: none;
}

/* --- Utility: Section containers --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility: Pill Button --- */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}

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

.btn-red:hover {
  background: var(--color-white);
  color: var(--color-red);
  outline: 2px solid var(--color-red);
  text-decoration: none;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* --- Utility: Section heading accent --- */
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 8px;
}

.gold-underline {
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-gold);
  margin: 0 auto 32px;
  border-radius: 2px;
}

/* --- Placeholder image boxes --- */
.img-placeholder {
  background: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Responsive utility --- */
@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
  body::before { font-size: 2rem; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .hide-tablet { display: none !important; }
}
@media (min-width: 1024px) {
  .hide-desktop { display: none !important; }
}
