/* ==========================================================================
   NACS Show 2026 - QR Code + Shortcuts Component
   Two-panel layout: QR code download (left) + shortcut links (right)
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section Container - Horizontal Layout
   -------------------------------------------------------------------------- */
.qrc {
    display: flex;
    flex-direction: row;
    gap: 144px;
    align-items: center;
    justify-content: center;
    padding: 72px 20px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Left: QR Code Section
   -------------------------------------------------------------------------- */
.qrc__left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 342px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Text Block (Title + Subtitle)
   -------------------------------------------------------------------------- */
.qrc__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    width: 100%;
}

.qrc__title {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--nacs-color-navy, #00205B);
    text-align: center;
    width: 100%;
    margin: 0;
}

.qrc__subtitle {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    color: var(--nacs-color-navy, #00205B);
    text-align: center;
    width: 100%;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Download Button
   -------------------------------------------------------------------------- */
.qrc__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 56px;
    padding: 0 24px;
    border-radius: 360px;
    background: var(--nacs-color-yellow, #FAE100);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.qrc__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

.qrc__btn span {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nacs-color-navy, #00205B);
    white-space: nowrap;
}

.qrc__btn svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   QR Code Image
   -------------------------------------------------------------------------- */
.qrc__image {
    width: 247px;
    height: 247px;
    flex-shrink: 0;
}

.qrc__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   Vertical Divider (Desktop) / Horizontal Divider (Mobile)
   -------------------------------------------------------------------------- */
.qrc__divider {
    width: 1px;
    height: 521px;
    background: #DBDBDB;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Right: Shortcuts Section
   -------------------------------------------------------------------------- */
.qrc__right {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    width: 393px;
    padding: 32px 24px;
    background: #FFFFFF;
    box-sizing: border-box;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Shortcuts Title
   -------------------------------------------------------------------------- */
.qrc__shortcuts-title {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--nacs-color-navy, #00205B);
    margin: 0;
}

/* --------------------------------------------------------------------------
   Shortcuts List
   -------------------------------------------------------------------------- */
.qrc__shortcuts {
    display: flex;
    flex-direction: column;
    gap: 56px;
    align-items: flex-start;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Individual Shortcut Item
   -------------------------------------------------------------------------- */
.qrc__shortcut {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.qrc__shortcut:hover {
    opacity: 0.7;
    text-decoration: none;
}

.qrc__shortcut-text {
    flex: 1 0 0;
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    color: #000000;
}

.qrc__shortcut-arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Mobile Styles (max-width: 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .qrc {
        flex-direction: column;
        gap: 36px;
        padding: 56px 20px;
    }

    .qrc__left {
        width: 100%;
        max-width: 342px;
    }

    .qrc__divider {
        width: 100%;
        height: 1px;
    }

    .qrc__right {
        width: 100%;
        padding: 32px 24px;
    }
}
