:root {
  --gold: #d1a652;
  --gold-dark: #b9933d;
  --black: #000;
  --white: #fff;
  --text-dark: #333;
  --text-muted: #555;
  --bg-light: #fff9e9;
  --font: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--black);
  color: var(--gold);
  padding: 10px 0;
  font-size: 15px;
  letter-spacing: 0.3px;
}

.topbar a {
  color: var(--gold);
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.topbar a:hover {
  color: #f5d77a;
}

.phone-info {
  font-weight: 600;
  font-size: 1rem;
}

/* ---------- Navbar ---------- */
.navbar {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: none;
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 65px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 10px;
  padding-bottom: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold);
}

/* ---------- Donate Button ---------- */
.btn-donate {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 12px 32px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(209, 166, 82, 0.35);
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-donate:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  box-shadow: 0 6px 18px rgba(209, 166, 82, 0.5);
  transform: translateY(-2px);
}

.btn-donate i {
  color: #fff;
  transition: transform 0.4s ease;
}

.btn-donate:hover i {
  transform: scale(1.25);
  color: #fff5cc;
}

/* ---------- Hero Section ---------- */
/*.hero-image {
  position: relative;
  background: url('../images/slider/slide-1.png') center center/cover no-repeat;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}*/

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

/* ---------- CTA Reverse ---------- */
.sitewide-cta-reverse {
  background: var(--gold-dark);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.sitewide-cta-reverse .cta-title {
  font-weight: 700;
  font-size: 1.9rem;
}

.sitewide-cta-reverse .btn {
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
}

/* ---------- Footer ---------- */
.ms81-footer {
  background: linear-gradient(180deg, #fffdf6 0%, #fff9ed 100%);
  color: #333;
  border-top: 2px solid #f3e4b8;
  font-family: var(--font);
}

.footer-brand {
  font-family: "Garamond", serif;
  font-size: 1.5rem;
  color: #c49b3f;
}

.footer-text {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-heading {
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #444;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 3px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: #fffaf1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid #f3e4b8;
}

.social-link:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

/* Gold Button */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  border: none;
  border-radius: 40px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(209, 166, 82, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  box-shadow: 0 6px 20px rgba(209, 166, 82, 0.4);
  transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
  background: #faf9f5;
  border-top: 1px solid #f3e4b8;
}

.footer-bottom p {
  font-size: 0.9rem;
}

.text-gold {
  color: var(--gold) !important;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .btn-donate {
    display: block;
    width: 100%;
    text-align: center;
    margin: 10px 0 20px;
    font-size: 1rem;
    padding: 14px 0;
  }
}

@media (max-width: 768px) {
  .topbar .container {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .hero-image {
    height: 60vh;
  }

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

  .ms81-footer {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .btn-gold {
    margin-top: 10px;
  }
}
