/* ===== Variables ===== */
:root {
  --navy: #1a2744;
  --navy-light: #243356;
  --navy-dark: #111b30;
  --gold: #c8a44e;
  --gold-light: #dabb6a;
  --white: #ffffff;
  --off-white: #f5f6f8;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --text: #1f2937;
  --font: 'Jost', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Utilities ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(200, 164, 78, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.15rem;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-menu a:hover {
  color: var(--white);
}

.nav-donate {
  background: var(--gold);
  color: var(--navy-dark) !important;
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
}

.nav-donate:hover {
  background: var(--gold-light) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: var(--navy);
  padding-top: 70px;
}

.hero-text {
  flex: 1;
  padding: 60px;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  flex: 0 0 45%;
  align-self: stretch;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.hero-name {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-slogan {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== Intro ===== */
.intro {
  padding: 100px 0;
  background: var(--white);
}

.intro-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.intro-text p {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--text);
}

.intro-emphasis {
  font-weight: 600;
  color: var(--navy);
  font-size: 1.15rem !important;
}

/* ===== Photo Placeholders ===== */
.photo-placeholder {
  background: var(--gray-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
}

.photo-placeholder.tall {
  min-height: 380px;
}

.intro-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* ===== About Full ===== */
.about-full {
  padding: 100px 0;
  background: var(--off-white);
}

.about-text {
  max-width: 780px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text);
}

/* ===== Priorities ===== */
.priorities {
  padding: 100px 0;
  background: var(--white);
}

.priorities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.priority-card {
  background: var(--off-white);
  padding: 40px 32px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.priority-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.priority-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.priority-icon svg {
  width: 100%;
  height: 100%;
}

.priority-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.priority-card p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== Donate ===== */
.donate {
  padding: 80px 0;
  background: var(--navy);
  text-align: center;
}

.donate-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.donate-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.donate-note {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  margin-top: 16px !important;
}

/* ===== Gallery ===== */
.gallery {
  padding: 100px 0;
  background: var(--off-white);
}

.gallery-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-top: -24px;
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.gallery-item {
  text-align: center;
}

.gallery-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-caption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--gray);
  font-weight: 500;
}

/* ===== Connect ===== */
.connect {
  padding: 80px 0;
  background: var(--white);
}

.connect-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.connect-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 32px;
  border-radius: 12px;
  background: var(--off-white);
  transition: all 0.2s ease;
  min-width: 120px;
}

.connect-link:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(26, 39, 68, 0.2);
}

.connect-link svg {
  width: 28px;
  height: 28px;
}

.connect-link span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy-dark);
  padding: 32px 0;
  text-align: center;
}

.paid-for {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .hero {
    flex-direction: column-reverse;
    min-height: auto;
  }

  .hero-text {
    padding: 48px 24px;
    max-width: 100%;
    text-align: center;
  }

  .hero-image {
    flex: none;
    width: 100%;
    max-height: 400px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-name {
    font-size: 2.4rem;
  }

  .hero-label {
    font-size: 0.8rem;
  }

  .hero-slogan {
    font-size: 1.05rem;
  }

  .intro-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .intro-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .priorities-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 1.6rem;
  }

  .connect-links {
    gap: 16px;
  }

  .connect-link {
    padding: 20px 24px;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 2rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 260px;
  }
}
