/*
 * DEG Roadshow Europe @ MTM 2026 — standalone premium theme for the
 * registration page (templates/roadshow/*). Loaded as its own Encore entry
 * on top of the global app styles; everything is scoped to .roadshow-page.
 * Branding: white, dark blue, anthracite, gold accent; Inter/Manrope (self-hosted).
 */
@font-face {
    font-family: 'Inter Variable';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/Inter/inter-latin-wght-normal-Gz7AlRl.woff2") format('woff2-variations');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Inter Variable';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url("../fonts/Inter/inter-latin-ext-wght-normal-1Br77OV.woff2") format('woff2-variations');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
    font-family: 'Manrope Variable';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url("../fonts/Manrope/manrope-latin-wght-normal-aA_waSK.woff2") format('woff2-variations');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
    font-family: 'Manrope Variable';
    font-style: normal;
    font-weight: 200 800;
    font-display: swap;
    src: url("../fonts/Manrope/manrope-latin-ext-wght-normal-PPaTnwi.woff2") format('woff2-variations');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

.roadshow-page {
    --rs-navy: #12263f;
    --rs-anthracite: #2e3238;
    --rs-gold: #b08d4f;
    --rs-gold-soft: #f4ecdd;
    --rs-line: #e3e6ea;

    background: #ffffff;
    color: var(--rs-anthracite);
    font-family: 'Inter Variable', 'Inter', system-ui, sans-serif;
}

body:has(.roadshow-page) .bg-animated {
    display: none;
}

.roadshow-page h1,
.roadshow-page h2,
.roadshow-page .roadshow-header__brand {
    font-family: 'Manrope Variable', 'Manrope', 'Inter Variable', system-ui, sans-serif;
    color: var(--rs-navy);
}

/* Header */
.roadshow-header {
    border-bottom: 1px solid var(--rs-line);
    background: #ffffff;
}

.roadshow-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.roadshow-header__brand {
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    color: var(--rs-navy);
}

.roadshow-header__lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--rs-anthracite);
}

.roadshow-header__lang-link {
    padding: 0.125rem 0.25rem;
    text-decoration: none;
    color: inherit;
}

.roadshow-header__lang-link.is-active {
    color: var(--rs-gold);
    font-weight: 700;
}

/* Hero */
.roadshow-hero {
    max-width: 44rem;
    margin: 3rem auto 2.5rem;
    text-align: center;
}

.roadshow-hero__overline {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rs-gold);
}

.roadshow-hero__title {
    margin-top: 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
}

.roadshow-hero__facts {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--rs-navy);
}

.roadshow-hero__intro {
    margin-top: 1.25rem;
    line-height: 1.65;
    color: var(--rs-anthracite);
}

.roadshow-hero--success {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

/* Form layout */
.roadshow-form {
    max-width: 44rem;
    margin: 0 auto;
}

.roadshow-card {
    border: 1px solid var(--rs-line);
    border-radius: 0.75rem;
    background: #ffffff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .roadshow-card {
        padding: 2rem;
    }
}

.roadshow-card__title {
    font-size: 1.125rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--rs-gold);
    display: inline-block;
}

.roadshow-form__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .roadshow-form__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
}

/* Event parts */
.roadshow-parts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.roadshow-part {
    border: 1px solid var(--rs-line);
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
}

.roadshow-part:has(input[type='checkbox']:checked) {
    border-color: var(--rs-gold);
    background: var(--rs-gold-soft);
}

.roadshow-part__head {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.roadshow-part__head input[type='checkbox'] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--rs-navy);
}

.roadshow-part__head input[type='checkbox']:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.roadshow-part__heading {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    flex-grow: 1;
}

.roadshow-part__label {
    font-weight: 700;
    color: var(--rs-navy);
}

.roadshow-part__time {
    font-size: 0.8125rem;
    color: var(--rs-anthracite);
    opacity: 0.75;
}

.roadshow-part__badge {
    flex-shrink: 0;
    align-self: flex-start;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 999px;
    background: var(--rs-navy);
    color: #ffffff;
}

.roadshow-part__badge--gold {
    background: var(--rs-gold);
}

.roadshow-part__description {
    margin-top: 0.625rem;
    margin-left: 1.95rem;
    font-size: 0.875rem;
    line-height: 1.55;
}

.roadshow-part__note {
    margin-top: 0.5rem;
    margin-left: 1.95rem;
    font-size: 0.8125rem;
    color: var(--rs-gold);
    font-weight: 600;
}

.roadshow-part__extra {
    margin-top: 0.75rem;
    margin-left: 1.95rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--rs-line);
}

/* the extra block is already indented — don't indent notes twice */
.roadshow-part__extra .roadshow-part__note {
    margin-left: 0;
    margin-bottom: 0.75rem;
}

/* Submit */
.roadshow-form__actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.roadshow-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2.25rem;
    border-radius: 999px;
    background: var(--rs-navy);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: background-color 150ms ease;
    width: 100%;
}

@media (min-width: 768px) {
    .roadshow-submit {
        width: auto;
    }
}

.roadshow-submit:hover {
    background: var(--rs-gold);
}

.roadshow-form__waitlist-note {
    margin-top: 1rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--rs-anthracite);
    opacity: 0.8;
}

/* Company autocomplete */
.roadshow-company-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roadshow-company-option__name {
    flex-grow: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.roadshow-company-option__badge {
    flex-shrink: 0;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.0625rem 0.3125rem;
    border-radius: 999px;
    border: 1px solid var(--rs-gold);
    color: var(--rs-gold);
    background: transparent;
}

/* Privacy notice */
.roadshow-privacy {
    margin-top: 1.25rem;
    border-top: 1px solid var(--rs-line);
    padding-top: 1rem;
    font-size: 0.8125rem;
    line-height: 1.55;
}

.roadshow-privacy__summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--rs-navy);
}

.roadshow-privacy__body {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    color: var(--rs-anthracite);
    opacity: 0.9;
}

/* Footer */
.roadshow-footer {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
}

@media (min-width: 768px) {
    .roadshow-footer {
        flex-direction: row;
    }
}

.roadshow-footer__links {
    display: flex;
    gap: 1.25rem;
}

.roadshow-footer__links a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 2px;
}
