/* --- Base & Theme Styles --- */
body {
  font-family: 'Roboto Condensed', sans-serif;
  background-color: #f0f0f0;
  color: #333;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .nav-link {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.bg-dark-red {
  background-color: #990000;
}

.bg-fdny-dark {
  background-color: #212529;
}

.text-fdny-red {
  color: #990000;
}

/* --- Themed Buttons --- */
.btn-fdny, .btn-nypd, .btn-scouts, .btn-military {
  color: white;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 700;
}

.btn-fdny {
  background-color: #990000;
  border: 2px solid #800000;
}
.btn-fdny:hover {
  background-color: #800000;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-nypd {
  background-color: #00387B; /* NYPD Dark Blue */
  border: 2px solid #002b5e;
}
.btn-nypd:hover {
  background-color: #002b5e;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-scouts {
  background-color: #00693C; /* BSA Green */
  border: 2px solid #00522f;
}
.btn-scouts:hover {
  background-color: #00522f;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-military {
  background-color: #6B8E23; /* Olive Drab */
  border: 2px solid #55711c;
}
.btn-military:hover {
  background-color: #55711c;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* --- Navigation Bar --- */
.navbar {
  padding: 1rem 0;
  border-bottom: 3px solid #990000;
}

.navbar-brand img {
  height: 50px; /* Adjust logo height */
}

.navbar-nav .nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0.5rem;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #ffc107; /* A gold accent for hover/active */
}

/* --- Hero Section --- */
.hero-section {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/homepageBanner.png') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 10rem 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

/* --- Announcements Section --- */
.announcements-section {
  padding: 2rem 0;
  background-color: #ffc107;
  color: #212529;
  border-bottom: 3px solid #000;
}

.announcements-section h3 {
  color: #990000;
}

/* --- General Section Styling --- */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: #990000;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

/* --- Quote Section --- */
.quote-section blockquote {
  font-size: 1.75rem;
  font-style: italic;
  font-family: 'Times New Roman', serif;
  max-width: 800px;
  margin: 0 auto;
}
.quote-section figcaption {
  font-size: 1.2rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

/* --- Legacy Section --- */
.legacy-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.legacy-card .icon {
  font-size: 3rem;
  color: #990000;
}
.legacy-card-content {
  flex-grow: 1;
}

/* --- Donation Section --- */
.donation-image {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- Footer --- */
.footer {
  padding: 4rem 0 2rem 0;
}
.footer .footer-logo img {
  max-height: 70px;
  margin-bottom: 1rem;
}
.footer .social-icons a {
  color: #adb5bd;
  font-size: 1.8rem;
  margin: 0 0.75rem;
  transition: color 0.3s;
}
.footer .social-icons a:hover {
  color: #ffc107;
}