/* Explain: Custom component styles, including TKBA-specific buttons and logo outline. - */
.btn-tkba {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-tkba:hover {
    background-color: var(--primary-hover);
}

.btn-tkba-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-tkba-outline:hover {
    background-color: white;
    color: var(--charcoal-color);
}

.logo-outline {
    filter: drop-shadow(1px 1px 0px white) drop-shadow(-1px -1px 0px white) drop-shadow(1px -1px 0px white) drop-shadow(-1px 1px 0px white);
}