/* --- Base --- */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #0b1c2c;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}

nav {
  position: sticky;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  text-align: center;
  border-bottom: 4px solid #0c2340;
  background: #d44500;
  padding: 1em 0;
  position: relative;
  z-index: 10;
  font-family: "Ubuntu", sans-serif;
}

@media screen and (max-width: 900px) {
  nav {
    grid-template-columns: 100%;
    grid-gap: 1em;
  }
}

.item1 {
  grid-column: 1;
}
.item2 {
  grid-column: 2;
}
.item3 {
  grid-column: 4;
}
.item4 {
  grid-column: 5;
}

.logo {
  grid-column: 3;
  background-image: url("imgs/cuselogo.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 10vh;
}

/* Nav Links */
.navLinks {
  font-size: 1.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
}

.navLinks:hover {
  color: #0c2340;
  border-left: 1px solid white;
  border-right: 1px solid white;
  padding: 1em 1em;
}

/* --- Syracuse Colors --- */
.bg-orange {
  background-color: #d44500 !important;
}

.bg-navy {
  background-color: #0b1c2c !important;
}

.text-orange {
  color: #d44500 !important;
}

.text-navy {
  color: #0b1c2c !important;
}

/* --- Hero Parallax --- */
.hero-parallax {
  height: 100vh;
  background-image: url("imgs/syracusesign.webp");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 28, 44, 0.6); /* Slightly darker overlay */
  z-index: 1;
}

.hero-parallax .container {
  position: relative;
  z-index: 10;
}

/* --- Buttons --- */
.btn-orange {
  background-color: #d44500;
  color: white;
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  box-shadow: 0 4px 10px rgba(212, 69, 0, 0.4);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 4px;
  user-select: none;
}

.btn-orange:hover,
.btn-orange:focus {
  background-color: #b63700;
  box-shadow: 0 6px 15px rgba(182, 55, 0, 0.6);
  color: white;
  outline: none;
  text-decoration: none;
}

/* --- Section Titles --- */
.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #d44500;
  margin-bottom: 2rem;
  letter-spacing: 1.2px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}

/* --- Cards --- */
.aid-card,
.stat-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aid-card:hover,
.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.aid-card i,
.stat-card .counter {
  color: #d44500;
}

/* Aid Card Headings */
.aid-card h5 {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

/* Text in Cards */
.aid-card p,
.stat-card p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0;
}

/* --- Counters --- */
.counter {
  font-size: 3rem;
  font-weight: 700;
  color: #d44500;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

/* --- Lists --- */
.list-group-item {
  font-size: 1.1rem;
  padding: 1rem 1.25rem;
  border: none;
  border-bottom: 1px solid #ddd;
}

.list-group-item:last-child {
  border-bottom: none;
}

.list-group-numbered > li {
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-bottom: 0.8rem;
  background: white;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.list-group-numbered > li:hover {
  box-shadow: 0 3px 15px rgba(212, 69, 0, 0.3);
}

/* --- Footer --- */
footer {
  font-size: 0.9rem;
  letter-spacing: 0.8px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  user-select: none;
}

/* --- Responsive tweaks --- */
@media (max-width: 576px) {
  .section-title {
    font-size: 2rem;
  }

  .btn-orange {
    font-size: 1rem;
    padding: 0.6rem 1.3rem;
  }

  .counter {
    font-size: 2.2rem;
  }
}
h1 {
  font-family: ShermanSerif, Georgia, serif;
  text-align: center;
  margin: 2rem 0;
  color: #d44500;
  font-weight: 700;
  font-size: 2.8rem;
  text-shadow: 2px 2px 5px #0c2340;
}
p {
  font-family: "dederon-sans-web", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: white;
}
section.bg-light p.lead {
  color: black !important;
}

/* --- Section Spacing --- */
.section-spacing {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

/* Remove all background from content */
.bg-transparent {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}
.list-group,
.list-group-flush,
.list-group-numbered {
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}