/* Custom minimal CSS for Bootstrap version */
.bg-highlight::after {
  content: '';
  position: absolute;
  width: 108%;
  height: 8px;
  bottom: -5px;
  left: -4%;
  background: #f5deb3;
  opacity: 0.5;
  border-radius: 4px;
  z-index: 0;
}

.bg-highlight {
  position: relative;
  z-index: 1;
}

header {
  /* background-color: #000; */
  /* color: #888; */
  background-color: #f0eee6;
  color: #494949;
}

.container .features {
  background: #f0eee6;
  padding: 8px;
  border-radius: 15px;
}

.container .features button {
  font-size: 0.9rem;
}


/* Blockquote mobile improvements */

@media (max-width: 767.98px) {
  .hero-actions {
    flex-direction: column !important;
  }

  .hero-actions>a {
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .hero-actions>a:last-child {
    margin-bottom: 0;
  }
}

.blockquote {
  box-shadow: 0 2px 8px rgba(63, 185, 132, 0.05);
}

/* Feature Card Tweaks */

/* Custom nav-pills for feature tabs */
#feature-tabs .nav-link {
  padding: 8px 20px;
  color: #111 !important;
  background: none !important;
  border: none;
  transition: background 0.15s, color 0.15s;
}

#feature-tabs .nav-link.active {
  background: #222 !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
}

#feature-tabs .nav-link:not(.active) {
  color: #111 !important;
  background: none !important;
}

@media (max-width: 767.98px) {
  #feature-tabs {
    display: none !important;
  }

  #feature-search {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.feature-card {
  background: #f0eee654;
  padding: 2rem;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-2px);
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1rem;
  color: #ef5350;
  margin: 0;
}

.feature-card p {
  margin: 0;
}

/* Hero visual containers */
.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: '';
  display: block;
  padding-bottom: 56.25%;
}

.hero-visual > svg,
.hero-visual > * {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}