/* SnapCopy - Index/About Page Styles */

/* Navbar Logo */
.navbar-logo {
  height: 40px;
  width: auto;
}

/* Hero Section */
.hero-logo {
  max-width: 180px;
  height: auto;
}

/* Bootstrap Icons Fix - Ensure icons display properly */
.bi::before,
[class*=" bi-"]::before,
[class^="bi-"]::before {
  display: inline-block;
  font-family: "bootstrap-icons" !important;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #6e8efb;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
  font-weight: 500;
}

/* Get Started Section */
.get-started-section {
  background: linear-gradient(135deg, rgba(110, 142, 251, 0.05) 0%, rgba(107, 211, 139, 0.05) 100%);
  padding: 3rem 0;
  border-radius: 1rem;
}

.get-started-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.get-started-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15) !important;
}

.get-started-card .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}
