/* Branding */
.ascii_logo {
    white-space: pre;
    font-family: monospace;
    text-align: center;
    font-weight: bold;
    font-size: clamp(0.45rem, 1.6vw, 0.95rem);
    overflow: visible;

    background: linear-gradient(180deg, rgb(0, 195, 255), rgb(0, 47, 255));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ascii_logo_div {
    display: flex;
    flex-direction: column; /* stack children vertically */
    justify-content: center; /* optional vertical centering */
    align-items: center;     /* horizontal centering */
    max-width: 1000px;
    width: 100%;
    margin-bottom: 2rem;
    min-width: 0;
}

.brand_name_full_name_sizing {
    font-size: 2.5rem;
    text-align: center;
}


/* Page stylings */

.specialties {
    display: grid;
    gap: 2rem;
    padding: 0 1rem;
    justify-content: center; 

    grid-template-columns: repeat(auto-fit, minmax(0, 410px));
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    max-width: 410px;
    height: 180px;
    color: rgb(0, 0, 0);

    margin: 0 auto;
}

.card_title {
    color: var(--title-text-color);
    font-weight: bold;
    text-align: left;
    width: 100%;
    margin: 0;
    margin-top: 5px;
}

.card_text {
    color: var(--paragraph-text-color);
    width: 100%;
    height: 100%;
    margin: 0;
    margin-top: 5px;
    overflow: hidden;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
}

/* Message us */
.send_message_container {
    max-width: 500px;
    width: 100%;
    height: 325px;
    align-self: center;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.send_message_text_entry_box_container {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 5px;
    background: var(--card-base-color);

    width: 100%;
    height: 5rem;
}

.send_message_text_entry_box {
    color: var(--paragraph-text-color);
    background: var(--card-color);
    border: 0;
    border-radius: 12px;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    padding: 5px;
    text-align: left;
    vertical-align: top;
    resize: none;
}

.send_message_text_entry_box:focus {
    outline: 2px solid var(--card-color);
    outline-offset: 0;
    box-shadow: none;
}

.send_message_button_div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    height: 2.5rem;
    width: 7rem;
    border-radius: 15px;
    transition-duration: 0.4s;
    background: var(--card-base-color);
}

.send_message_send_button {
    border-radius: 12px;
    border: 0;

    width: calc(100% - 8px);
    height: calc(100% - 8px);
    
    font-weight: bold;
    font-size: 1.1rem;
    text-align: center;
    background: var(--card-color);
    color: var(--title-text-color);
}

.send_message_send_button:hover {
    box-shadow: 0 6px 16px var(--glow-color);
}

/* */
/* Captcha styling */
.google_captcha_credit_text {
    font-size: 0.6rem;
    color: var(--google-captcha-credit-text-color);
    text-align: center;
}

.google_catpcha_credit_links {
    color: var(--google-captcha-credit-link-color);
}

.grecaptcha-badge { visibility: hidden; }

/* Handle mobile devices */
@media (max-width: 475px) {
    .card {
        height: auto;
    }
}