:root {
  --nm-red:       #C8102E;
  --nm-gold:      #F0A500;
  --desert-sand:  #F5E6C8;
  --desert-warm:  #FFF8EC;
  --adobe:        #7A4F2D;
  --text-dark:    #1C1C1C;
  --text-muted:   #6B5744;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/* ── Navbar ─────────────────────────────────── */
.navbar {
  padding: 0.75rem 0;
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--nm-red);
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.65rem;
  color: var(--adobe);
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  font-size: 0.95rem;
}

.nav-link:hover {
  color: var(--nm-red) !important;
}

/* ── Scroll offset for fixed navbar ─────────── */
section[id] {
  scroll-margin-top: 72px;
}

/* ── Gold divider ────────────────────────────── */
.gold-divider {
  width: 56px;
  height: 4px;
  background: var(--nm-gold);
  border-radius: 2px;
  margin: 0.85rem 0 1.5rem;
}

/* ── Buttons ─────────────────────────────────── */
.btn-campaign-primary {
  background-color: var(--nm-red);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 0.7rem 2rem;
  border: 2px solid var(--nm-red);
  border-radius: 4px;
  transition: background-color 0.2s, border-color 0.2s;
}

.btn-campaign-primary:hover,
.btn-campaign-primary:focus {
  background-color: #a80d25;
  border-color: #a80d25;
  color: #fff;
}

.btn-campaign-outline {
  background-color: transparent;
  color: var(--nm-red);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 0.7rem 2rem;
  border: 2px solid var(--nm-red);
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}

.btn-campaign-outline:hover,
.btn-campaign-outline:focus {
  background-color: var(--nm-red);
  color: #fff;
}

/* ── Section backgrounds ─────────────────────── */
.section-sand {
  background: var(--desert-warm);
}

.section-title {
  color: var(--nm-red);
}

/* ── Hero ────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 60px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    url('/images/landing-bg.jpg') center / cover no-repeat;
}

.hero-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--adobe);
}

.hero-name {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  color: var(--nm-red);
  line-height: 1;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 440px;
}

.hero-photo-wrap {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--desert-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 8px 40px rgba(200, 16, 46, 0.15);
  margin: 0 auto;
}

.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── About ───────────────────────────────────── */
.about-photo {
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  max-width: 100%;
}

/* ── Issue cards ─────────────────────────────── */
.issue-card {
  border: none;
  border-top: 4px solid var(--nm-gold);
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}

.issue-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.13);
}

.issue-icon {
  font-size: 2.4rem;
  color: var(--nm-gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Donate ──────────────────────────────────── */
.donate-section {
  background: linear-gradient(135deg, var(--nm-red) 0%, #8b1020 100%);
  color: #fff;
}

.btn-donate {
  background: var(--nm-gold);
  color: #1a1a1a;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.85rem 3rem;
  border: none;
  border-radius: 4px;
  transition: background-color 0.2s, transform 0.15s;
}

.btn-donate:hover {
  background: #d4900a;
  color: #1a1a1a;
  transform: translateY(-2px);
}

/* ── Contact form ────────────────────────────── */
.form-control,
.form-select {
  border-radius: 4px;
  border-color: #d8c9b8;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--nm-red);
  box-shadow: 0 0 0 0.2rem rgba(200, 16, 46, 0.1);
}

.contact-info-icon {
  color: var(--nm-red);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── Footer ──────────────────────────────────── */
footer {
  background: #1c1c1c;
  color: #aaa;
}

footer .disclaimer {
  font-size: 0.78rem;
  color: #666;
}
