/* Remove the default border-bottom from h2 headings in the cosmo theme */
h2 {
  border-bottom: none !important;
}

/* Homepage Hero Banner */
.hero-banner {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #f8f9fa;
  border-radius: 12px;
  margin-bottom: 3rem;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}

.hero-banner h1 {
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 1.2rem;
  font-size: 2.2rem;
}

.hero-banner p {
  font-size: 1.2rem;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

/* Card Hover Effects */
.card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0,0,0,0.08);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

/* Tech Stack Container */
.tech-stack-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

/* Library Card Specific Styles */
.library-card {
  border-top: 4px solid #e9ecef;
  transition: all 0.3s ease;
}

.library-card:hover {
  border-top-color: #0d6efd;
}

.list-group-item-action {
  transition: all 0.2s ease;
  color: #4a5568 !important;
}

.list-group-item-action:hover {
  background-color: #f8f9fa !important;
  color: #0d6efd !important;
  padding-left: 10px !important;
}

.library-chevron {
  transition: transform 0.2s ease, color 0.2s ease;
}

.list-group-item-action:hover .library-chevron {
  transform: translateX(4px);
  color: #0d6efd !important;
}
