/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #222;
  line-height: 1.6;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #0a1628;
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.top-bar a {
  color: #fff;
}

.top-bar span {
  margin-right: 18px;
}

/* ===== HEADER & NAVIGATION (Much More Space) ===== */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 40px;
}

.logo img {
  height: 58px;
}

/* Significantly more space between menu items */
nav {
  display: flex;
  align-items: center;
  gap: 48px; /* ← Much larger gap */
}

nav a {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.6px;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}

nav a.active,
nav a:hover {
  color: #c41e3a;
}

nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #c41e3a;
}

.btn-donate {
  background: #0a1628;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  margin-left: 12px;
}

.btn-donate:hover {
  background: #c41e3a;
}

/* ===== HERO SPLIT ===== */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  min-height: 620px;
  background: #0a1628;
}

.hero-text {
  color: #fff;
  padding: 70px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

.hero-text .stars {
  color: #c41e3a;
  font-size: 1.3rem;
  margin-bottom: 22px;
}

.hero-text p {
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: 25px;
  max-width: 480px;
  opacity: 0.95;
}

.hero-image {
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

/* ===== BENEFITS BAR ===== */
.benefits {
  background: #0a1628;
  color: #fff;
  padding: 40px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.benefit-item .icon {
  width: 54px;
  height: 54px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
}

.benefit-item h4 {
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.benefit-item p {
  font-size: 13px;
  opacity: 0.88;
  max-width: 200px;
  margin: 0 auto;
}

/* ===== LOCATIONS ===== */
.locations {
  padding: 55px 0 40px;
  background: #faf9f7;
}

.locations h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 6px;
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.loc-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,.07);
}

.loc-card img {
  height: 170px;
  width: 100%;
  object-fit: cover;
}

.loc-card-body {
  padding: 18px;
}

.loc-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.loc-card p {
  font-size: 13px;
  color: #555;
  margin-bottom: 14px;
}

.btn-view {
  display: inline-block;
  background: #0a1628;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.btn-view:hover {
  background: #c41e3a;
}

/* ===== FOOTER ===== */
footer {
  background: #6b0f1a;
  color: #fff;
  text-align: center;
  padding: 16px 0;
  font-size: 13px;
  letter-spacing: 1px;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  nav {
    gap: 32px;
  }
}

@media (max-width: 960px) {
  .header-inner {
    flex-direction: column;
    gap: 15px;
  }

  nav {
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

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

@media (max-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: 380px;
  }

  .hero-text {
    padding: 50px 30px;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .top-bar {
    text-align: center;
    font-size: 12px;
  }

  nav {
    gap: 16px;
  }
}