body {
  font-family: 'Poppins', sans-serif;
  background: #f4f6f9;
  color: #333;
}

:root {
  --maroon: #800020;
  --maroon-soft: #a8324a;
}

/* NAVBAR */
.navbar {
  background: white;
  border-bottom: 2px solid #eee;
}
.navbar-brand {
  color: var(--maroon) !important;
  font-weight: 700;
}
.nav-link {
  margin-left: 15px;
  position: relative;
}
.nav-link::after {
  content: "";
  height: 2px;
  width: 0;
  background: var(--maroon);
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(128,0,32,0.85), rgba(128,0,32,0.85)),
  url('https://images.unsplash.com/photo-1588072432836-e10032774350?q=80&w=1600') center/cover;
  color: white;
  padding: 130px 0;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}
.hero p {
  opacity: 0.9;
}

/* SECTION */
.section {
  padding: 90px 0;
}

/* CARD */
.card-modern {
  border: none;
  border-radius: 18px;
  background: white;
  transition: 0.3s;
}
.card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* IMAGE */
.card-modern img {
  height: 200px;
  object-fit: cover;
  border-radius: 15px;
}

/* INFO BOX */
.info-box {
  background: var(--maroon);
  color: white;
  border-radius: 15px;
  padding: 30px;
}

/* FOOTER */
footer {
  background: #111;
  color: #aaa;
  padding: 40px;
}