@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/outfit-v15-latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/outfit-v15-latin-700.woff2') format('woff2');
}


body {
    background-color: #f8f9fa;
    color: #333;
    font-family: 'Outfit', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.navbar {
    background-color: #6F91BE;
    padding: 0.6rem 0.6rem;
}

.navbar-brand {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
}

.navbar-brand:hover {
    color: #e0e0e0;
    text-decoration: none;
}

.use-case-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.card-img-top {
    object-fit: cover;
    height: 160px;
}

.btn-use-case {
    background-color: #6F91BE;
    color: white;
    transition: background-color 0.25s ease, filter 0.12s ease;
    border: none;
    font-weight: 600;
}

.btn-outline-primary {
    border-color: #6F91BE;
    color: #6F91BE;
    font-weight: 600;
    transition: background-color 0.25s ease, filter 0.12s ease;
}

.btn-outline-primary:hover {
    background-color: #5a7da4;
    color: white;
    filter: brightness(90%);
    border-color: #6F91BE;
}

.btn-use-case:hover {
    background-color: #5a7da4;
    color: white;
    filter: brightness(90%);
}

.btn-use-case.disabled,
.btn-use-case[aria-disabled="true"] {
    background-color: #6F91BE;
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    color: white;
}

.container h3 {
    font-weight: 600;
}

.visually-hidden {
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
