/*********************************************\
 * Missoula Karaoke Website
 * Custom CSS Styles
 * Custom-built & © 2026 Missoula Karaoke, LLC
 * https://missoulakaraoke.com
\*********************************************/

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;
}

/* Portfolio Items (Karaoke Catalogs) */
[data-bs-theme=dark] .glightbox-clean .gslide-title {
    color: var(--text-color) !important;
}

[data-bs-theme=dark] .glightbox-clean .gslide-description {
    background-color: var(--background-color) !important;
}

/* Ribbon Style for Upcoming Show Tile */
.ribbon-container {
    position: relative;
    overflow: hidden;
}

.ribbon {
    width: 260px;
    background: linear-gradient(180deg, #FFD700, #F0C200);
    color: #1f1f1f;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    transform: rotate(45deg);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    font-weight: 800;
    font-size: 1.05rem;
    z-index: 20;
    line-height: 1;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ribbon.top-right {
    top: 30px;
    right: -80px;
    /* moves most of the ribbon outside the box, showing the wrapped corner */
}

.ribbon span {
    font-weight: 900;
    letter-spacing: 0.6px;
}

@media (max-width: 576px) {
    .ribbon {
        width: 200px;
        font-size: 0.95rem;
    }

    .ribbon.top-right {
        top: 20px;
        right: -60px;
    }
}