/* web/static/css/styles.css */
:root {
    --primary: #5643cc;
    --primary-dark: #4635b3;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    color: #333;
  }
  
  .logo-circle {
    background-color: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-text {
    color: white;
    font-size: 20px;
    font-weight: bold;
  }
  
  .logo-title {
    font-size: 18px;
    font-weight: 700;
  }
  
  .hero-section {
    overflow: hidden;
    padding: 80px 0;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    z-index: -1;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Override Bootstrap primary color */
  .btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
  }
  
  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
  }
  
  .text-primary {
    color: var(--primary) !important;
  }
  
  .bg-primary {
    background-color: var(--primary) !important;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .hero-section {
      padding: 50px 0;
    }
  }