/* theme-enhancements.css */
/* Accent heading */
.section-title {
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.section-title .accent {
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #ed1c24, #231f20);
  margin-top: 6px;
  border-radius: 2px;
}

/* Navbar hover underline */
.navbar-nav .nav-link {
  position: relative;
  transition: color 0.3s;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #ed1c24;
  transition: width 0.3s;
}
.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Elevated card */
.card-elevated {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 12px;
  transition: transform 0.2s;
}
.card-elevated:hover {
  transform: translateY(-5px);
}

/* Gradient buttons */
.btn-gradient {
  background: linear-gradient(90deg, #ed1c24, #231f20);
  color: #fff;
  border: none;
}
.btn-gradient:hover {
  opacity: 0.9;
}

/* Badges */
.badge-red { background-color: #ed1c24; color: #fff; }
.badge-dark { background-color: #231f20; color: #fff; }

/* Section backgrounds */
.section-gray { background-color: #f8f9fa; }

/* Wave dividers */
.section-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.section-divider svg {
  position: relative;
  display: block;
  width: calc(130% + 1.3px);
  height: 60px;
}
.section-divider .shape-fill {
  fill: #f8f9fa;
}

/* CTA ribbon */
.ribbon-cta {
  background: linear-gradient(90deg, #ed1c24, #231f20);
  color: #fff;
  padding: 1.5rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}
.ribbon-cta a {
  color: #fff;
  text-decoration: underline;
}
