/* ─────────────────────────────────────────────
   Base Styles & Variables
   ───────────────────────────────────────────── */
:root {
  --primary: #2a4b7c;        /* Deep blue: trust, stability */
  --primary-light: #3f6bb0;
  --accent: #c99700;         /* Gold: honor, courage */
  --gray-dark: #333;
  --gray: #555;
  --gray-light: #f5f5f5;
  --white: #fff;

  --radius: 6px;
  --transition: 0.25s ease;
}

/* ─────────────────────────────────────────────
   Background (Ultra-Clean Nonprofit Look)
   ───────────────────────────────────────────── */
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans KR', sans-serif;

  /* Center the logo perfectly */
  background: url('/data/images/logo.jpg') no-repeat center center fixed;
  background-size: 500px;

  color: var(--gray-dark);
  line-height: 1.6;
}


/* Soft white veil for readability */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(2px);
  z-index: -1;
}

/* ─────────────────────────────────────────────
   Slim Header Bar
   ───────────────────────────────────────────── */
header {
  background-color: var(--primary);
  color: var(--white);
  padding: 10px 20px;
  text-align: center;
  position: sticky;     /* Make header stick */
  top: 0;               /* Stick to top of viewport */
  z-index: 1000;        /* Keep it above all content */
}

/* Centered tagline */
header h1 {
  margin: 0;
  font-size: 1.2em;
  font-weight: 600;
}

/* Donate button (right side of slim bar) */
header .donate-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--accent);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
}

header .donate-btn:hover {
  background-color: #e0b200;
}

/* ─────────────────────────────────────────────
   Navigation
   ───────────────────────────────────────────── */
nav {
  background-color: var(--primary-light);
  padding: 10px 0;
  text-align: center;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-block;
  margin: 0 15px;
}

nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: bold;
  transition: var(--transition);
}

nav a:hover {
  color: var(--accent);
}

/* ─────────────────────────────────────────────
   Layout Containers
   ───────────────────────────────────────────── */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* ─────────────────────────────────────────────
   Hero Section
   ───────────────────────────────────────────── */
.hero {
  background-color: var(--white);
  padding: 50px 30px;
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  text-align: center;
  margin-bottom: 40px;
}

.hero h2 {
  font-size: 2em;
  color: var(--primary);
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.15em;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 25px auto;
}

/* ─────────────────────────────────────────────
   Buttons
   ───────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: var(--primary-light);
}

/* ─────────────────────────────────────────────
   Highlight / CTA Grid
   ───────────────────────────────────────────── */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.highlight {
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.highlight h3 {
  color: var(--primary);
  margin-top: 0;
}

.highlight a {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  font-weight: bold;
  text-decoration: none;
  transition: var(--transition);
}

.highlight a:hover {
  color: var(--primary-light);
}

/* ─────────────────────────────────────────────
   Forms
   ───────────────────────────────────────────── */
form {
  background-color: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  max-width: 600px;
  margin: 0 auto;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: var(--gray-dark);
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-size: 1em;
}

button[type="submit"] {
  margin-top: 20px;
  background-color: var(--primary);
  color: var(--white);
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
}

button[type="submit"]:hover {
  background-color: var(--primary-light);
}

/* ─────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 20px 0;
  color: var(--gray);
  font-size: 0.9em;
  margin-top: 60px;
}

/* ─────────────────────────────────────────────
   Responsive
   ───────────────────────────────────────────── */
@media (max-width: 600px) {
  header h1 {
    font-size: 1em;
  }

  header .donate-btn {
    right: 10px;
    padding: 6px 10px;
  }

  .hero h2 {
    font-size: 1.6em;
  }
  
  /* Veteran Stories Section */
.story-block {
  background-color: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  margin-bottom: 40px;
}

.story-block h3 {
  color: var(--primary);
  margin-top: 0;
}

.story-images {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  justify-content: center;
  flex-wrap: wrap;
}

.story-images img {
  max-width: 45%;
  border-radius: var(--radius);
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

blockquote {
  font-style: italic;
  color: var(--gray-dark);
  border-left: 4px solid var(--accent);
  padding-left: 15px;
  margin: 20px 0 0 0;
}

.paypal-btn {
  background-color: #ffc439; /* PayPal gold */
  color: #111;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius);
  font-size: 1em;
  font-weight: bold;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 20px;
}

.paypal-btn:hover {
  background-color: #ffb000;
}

}
