@charset "UTF-8";
/* ============================================================
   Announcement Banner — Museums in Short x Heritage in Motion 2026
   Overlaid on the homepage intro video.
   Palette MIS: gold #f8ad42 / dark #242424
   ============================================================ */

.him-announcement {
    position: absolute;
    z-index: 1;
    top: 110px;
    right: 40px;
    width: 680px;
    max-width: calc(100vw - 80px);
    box-sizing: border-box;
    padding: 26px 32px 24px 32px;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.96) 0%, rgba(36, 36, 36, 0.94) 60%, rgba(58, 42, 18, 0.95) 100%);
    border: 1px solid rgba(248, 173, 66, 0.55);
    border-radius: 6px;
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.55),
        0 0 0 4px rgba(248, 173, 66, 0.08);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    animation: himFadeIn 0.7s ease-out both;
}

.him-announcement.him-hidden {
    display: none;
}

@keyframes himFadeIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Close button */
.him-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    background: transparent;
    color: #f8ad42;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    z-index: 2;
}

.him-close:hover {
    background: #f8ad42;
    color: #242424;
    transform: rotate(90deg);
}

/* "NEW · 2026 EDITION" ribbon */
.him-ribbon {
    display: inline-block;
    background: #f8ad42;
    color: #242424;
    font-family: 'Anton', 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Title */
.him-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 14px 0;
    color: #fff;
    letter-spacing: 0.2px;
}

.him-title span {
    color: #f8ad42;
    font-style: italic;
    padding: 0 4px;
}

/* Lead paragraph */
.him-lead {
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0 0 16px 0;
    color: #f0e6d8;
}

.him-lead strong {
    color: #f8ad42;
    font-weight: 700;
}

/* Section headings */
.him-h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #f8ad42;
    margin: 14px 0 6px 0;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(248, 173, 66, 0.25);
}

.him-body p {
    font-size: 13.5px;
    line-height: 1.55;
    margin: 0 0 8px 0;
    color: #e8e8e8;
}

.him-body strong {
    color: #fff;
    font-weight: 700;
}

.him-body em {
    color: #f8ad42;
    font-style: italic;
}

/* Key info grid */
.him-keys {
    list-style: none;
    margin: 10px 0 14px 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.him-keys li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(248, 173, 66, 0.08);
    border-left: 3px solid #f8ad42;
    border-radius: 3px;
    font-size: 12px;
    line-height: 1.4;
    color: #f0e6d8;
}

.him-keys li strong {
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: block;
    margin-bottom: 2px;
}

.him-ico {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

/* CTA row */
.him-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 12px 0;
}

.him-cta-primary,
.him-cta-secondary {
    display: inline-block;
    padding: 12px 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    border-radius: 3px;
    transition: transform 0.2s, background 0.25s, color 0.25s, box-shadow 0.25s;
}

.him-cta-primary {
    background: #f8ad42;
    color: #242424;
    flex: 1 1 auto;
    text-align: center;
    box-shadow: 0 4px 14px rgba(248, 173, 66, 0.35);
}

.him-cta-primary:hover {
    background: #ffffff;
    color: #242424;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(248, 173, 66, 0.55);
}

.him-cta-primary span {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.25s;
}

.him-cta-primary:hover span {
    transform: translateX(4px);
}

.him-cta-secondary {
    background: transparent;
    color: #f8ad42;
    border: 1.5px solid #f8ad42;
}

.him-cta-secondary:hover {
    background: #f8ad42;
    color: #242424;
}

/* Questions footer */
.him-questions {
    font-size: 12px;
    line-height: 1.55;
    color: #c8c8c8;
    border-top: 1px solid rgba(248, 173, 66, 0.2);
    padding-top: 12px;
    margin-top: 10px;
}

.him-questions strong {
    color: #f8ad42;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 11px;
}

.him-questions a {
    color: #f8ad42;
    text-decoration: none;
    border-bottom: 1px dotted rgba(248, 173, 66, 0.5);
}

.him-questions a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.him-muted {
    color: #999;
    font-size: 11px;
}

/* Re-open floating button (after dismiss) */
.him-reopen {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3;
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #f8ad42;
    color: #242424;
    border: none;
    border-radius: 40px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(248, 173, 66, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
}

.him-reopen.him-show {
    display: inline-flex;
}

.him-reopen:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(248, 173, 66, 0.6);
}

.him-reopen-pulse {
    position: relative;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #242424;
}

.him-reopen-pulse::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #242424;
    transform: translate(-50%, -50%);
    animation: himPulse 1.8s ease-out infinite;
}

@keyframes himPulse {
    0% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(3);
    }
}

/* ============================================================
   Responsive
   ============================================================ */
@media only screen and (max-width: 1100px) {
    .him-announcement {
        right: 24px;
        left: 24px;
        width: auto;
        max-width: none;
        top: 100px;
    }
}

@media only screen and (max-width: 560px) {
    .him-announcement {
        top: 90px;
        right: 12px;
        left: 12px;
        padding: 22px 18px 20px 18px;
    }

    .him-title {
        font-size: 22px;
    }

    .him-lead {
        font-size: 13px;
    }

    .him-keys {
        grid-template-columns: 1fr;
    }

    .him-cta-row {
        flex-direction: column;
    }

    .him-cta-primary,
    .him-cta-secondary {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .him-reopen {
        bottom: 16px;
        right: 16px;
        padding: 10px 14px;
        font-size: 11px;
    }
}