/* ============================
   PBG — Phase 1 Design System
   Stable, Modular, Future-Proof
   ============================ */

/* ---------- Root Tokens ---------- */
:root {
  --color-green: #0F3D2E;
  --color-gold: #C9A44A;
  --color-white: #FFFFFF;
  --color-gray-dark: #1A1A1A;
  --color-gray-light: #F5F5F5;

  --font-heading: 'Georgia', serif;
  --font-body: 'Inter', sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;

  --radius-sm: 6px;
  --radius-md: 10px;

  --shadow-soft: 0 2px 8px rgba(0,0,0,0.08);
}

/* ---------- Global Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--color-gray-dark);
  background: var(--color-white);
  line-height: 1.6;
}

/* ---------- Layout Containers ---------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: var(--space-xl) 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-green);
  margin-bottom: var(--space-md);
}

/* ---------- Navigation ---------- */
nav {
  background: var(--color-green);
  padding: var(--space-sm) 0;
}

nav ul {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

nav a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
}

/* ---------- Hero Section ---------- */
.hero {
  background-size: cover;
  background-position: center;
  padding: var(--space-xl) 0;
  text-align: center;
  color: var(--color-white);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-gray-dark);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s ease;
}

.btn:hover {
  background: #b08f3f;
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-lg);
}

.card h3 {
  font-family: var(--font-heading);
  color: var(--color-green);
  margin-bottom: var(--space-sm);
}

/* ---------- Forms ---------- */
form input,
form textarea {
  width: 100%;
  padding: var(--space-sm);
  margin-bottom: var(--space-md);
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
}

form button {
  background: var(--color-green);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

form button:hover {
  background: #0c3326;
}

/* ---------- Footer ---------- */
footer {
  background: var(--color-green);
  color: var(--color-white);
  padding: var(--space-lg) 0;
  text-align: center;
  font-size: 0.9rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }
}
