/* CSS Document */

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #ffffff;
      color: #333;
    }

    .navbar {
      background-color: #ffffff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .navbar-brand {
      font-weight: 700;
      color: #4f46e5 !important;
    }

    .nav-link {
      color: #4b5563 !important;
      font-weight: 500;
      margin-left: 15px;

    }

    .nav-link:hover {
      color: #4f46e5 !important;
    }

    .hero {
      text-align: center;
      background: linear-gradient(to right, #0377A9, #211C6D); 
      padding: 100px 0;
    }

    .hero h1 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #111827;
    }

    .search-bar {
      max-width: 500px;
      margin: 0 auto 40px;
    }

    .font-item {
      padding: 30px;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
      margin-bottom: 30px;
      background-color: #ffffff;
      transition: transform 0.2s ease;
    }

    .font-item:hover {
      transform: translateY(-3px);
    }

    .font-name {
      font-weight: 600;
      font-size: 18px;
      margin-bottom: 10px;
    }

    .font-preview {
      font-size: 32px;
      color: #111827;
      line-height: 1.3;
    }

    .btn-download {
      margin-top: 15px;
      background-color: #4f46e5;
      border: none;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 500;
    }

    .btn-download:hover {
      background-color: #4338ca;
    }

    footer {
      background-color: #f3f4f6;
      padding: 30px 0;
      text-align: center;
      color: #6b7280;
      font-size: 14px;
    }

    footer a {
      color: #4f46e5;
      text-decoration: none;
      margin: 0 10px;
    }

    footer a:hover {
      text-decoration: underline;
    }


    
  :root {
    --bs-primary: #0377A9;
    --bs-primary-rgb: 3, 119, 169;
  }

  .btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
  }

  .btn-primary:hover {
    background-color: #02648f !important;
    border-color: #025a81 !important;
  }

  .text-primary {
    color: var(--bs-primary) !important;
  }

  .bg-primary {
    background-color: var(--bs-primary) !important;
  }

  .navbar-brand {
    color: var(--bs-primary) !important;
  }

  .nav-link:hover {
    color: var(--bs-primary) !important;
  }


.font-card {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

  .font-card:hover {
    transform: translateY(-3px) scale(1.01);
    border-left: 4px solid #0d6efd;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  }

  .font-card .card-title span {
    font-size: 0.9rem;
  }

  

  

    .btn-outline-primary {
      transition: all 0.2s ease;
    }

    .btn-outline-primary:hover {
      background-color: #0d6efd;
      color: #fff;
      border-color: #0d6efd;
    }