/* css/style.css */

/* --- GLOBAL --- */
body {
    background-color: #fdfdfd;
    color: #333;
    line-height: 1.6;
  }
  
  /* --- NAVBAR --- */
  .navbar-brand {
    font-size: 1.6rem;
    letter-spacing: 0.5px;
  }
  
  .nav-link {
    font-weight: 500;
    color: #333 !important;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: #007f5f !important;
  }
  
  /* --- FOOTER --- */
  footer {
    background-color: #f8f9fa;
    color: #666;
    font-size: 0.9rem;
  }
  
  /* --- UTILITIES (OPTIONAL) --- */
  .btn-green {
    background-color: #007f5f;
    color: #fff;
    border: none;
    transition: background-color 0.3s ease;
  }
  .btn-green:hover {
    background-color: #005f44;
  }
  
  /* You can add more utilities here as needed */
  