
/*********************************************\
 * Missoula Karaoke Website
 * Global MK CSS Styles
 * Custom-built & © 2026 Missoula Karaoke, LLC
 * https://missoulakaraoke.com
\*********************************************/

a {
    text-decoration: none !important;
}

section a:not(.btn, .about-btn, .btn-get-started, .stretched-link) {
    color: gold !important;
}

/* Logo Style Overrides */
.header .logo img {
    max-height: 4em !important;
    margin-top: -0.5em;
}

.logo h1 {
    color: gold !important;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.sitename {
    font-family: "Timeburner", sans-serif;
    font-weight: 600;
    font-size: 2rem;
}


/* ---------------------------------------------------------------
   Generic Alert with Large Icon — reusable across the site
   Usage: <div class="alert alert-* alert-lg-icon">
            <div class="alert-lg-icon__content">
              <i class="bi bi-* fs-2 alert-lg-icon__icon"></i>
              <div class="alert-lg-icon__text">...</div>
              <div class="alert-lg-icon__actions">...</div>
              <!-- Optional close button -->
              <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
            </div>
          </div>
---------------------------------------------------------------- */
.alert-lg-icon {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alert-lg-icon__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.alert-lg-icon__icon {
    flex-shrink: 0;
}

.alert-lg-icon__text {
    text-align: center;
    flex-grow: 0;
}

.alert-lg-icon__actions {
    width: 100%;
    flex-shrink: 0;
}

/* Actions wrapper for buttons or forms */
.alert-lg-icon__actions > button,
.alert-lg-icon__actions > a.btn,
.alert-lg-icon__actions > form {
    width: 100%;
}

@media (min-width: 768px) {
    .alert-lg-icon__content {
        flex-direction: row;
        align-items: center;
    }

    .alert-lg-icon__text {
        text-align: left;
        flex-grow: 1;
    }

    .alert-lg-icon__actions {
        width: auto;
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        flex-shrink: 0;
    }

    .alert-lg-icon__actions > button,
    .alert-lg-icon__actions > a.btn,
    .alert-lg-icon__actions > form {
        width: auto;
    }

    .alert-lg-icon__actions > form {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
}
