/* J. Louis - Orchid Hotel tour-owned branding and Panotour-parity presentation. */

@font-face {
    font-family: 'Avenir Book';
    font-weight: 400;
    font-display: swap;
    src: url('media/fonts/avenir_book.ttf') format('truetype');
}

body {
    --font-primary: 'Avenir Book', Arial, Helvetica, sans-serif;
    --primary-color: #e51a92;
    --primary-color-rgb: 229, 26, 146;
    --secondary-color: #77787b;
    --secondary-color-rgb: 119, 120, 123;
    --logo-height: 7rem;
}

/* J. Louis - Keep the Visual Narrative mark on its built-in navy/white palette instead of inheriting Orchid pink. */
#vn_logo {
    --primary-color: #002F61;
}

/* J. Louis - Keep only Orchid's logo fit; shared core and light-mode CSS own Conrad's menu geometry. */
aside section[logo] {
    margin-bottom: 1rem;
}

aside section[logo] img {
    width: calc(100% - 2rem);
    transform: none;
}

/* J. Louis - Conrad's shared menu and description rules now render unchanged in Orchid's light palette. */

/* J. Louis - Keep the white panorama-overlay menu controls legible over bright skies without adding a box. */
#group-title,
aside > my-btn.open,
aside > my-btn.close {
    text-shadow:
        0 2px 3px rgba(0, 0, 0, 0.95),
        0 5px 12px rgba(0, 0, 0, 0.85),
        0 0 24px rgba(0, 0, 0, 0.7);
}

@media (hover: hover) and (pointer: fine) {
    aside > my-btn.open:hover,
    aside > my-btn.close:hover {
        text-shadow:
            0 2px 3px rgba(0, 0, 0, 0.95),
            0 5px 12px rgba(0, 0, 0, 0.85),
            0 0 24px rgba(0, 0, 0, 0.7);
    }
}

/* J. Louis - Separate the open light-glass menu from pale panorama content with restrained depth. */
body.aside aside {
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.42),
        0 7px 22px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 0, 0, 0.12);
}

/* J. Louis - Give unchanged menu typography a dark halo, including an explicit dark active-row label. */
aside acc-menu acc-menu-group > acc-menu-item-title,
aside acc-menu acc-menu-item > acc-menu-item-title {
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.85),
        0 3px 9px rgba(0, 0, 0, 0.55);
}

aside acc-menu acc-menu-item.active > acc-menu-item-title,
aside acc-menu acc-menu-item.active > acc-menu-item-title span-lang,
aside acc-menu acc-menu-item.active > acc-menu-item-title span {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.9),
        0 3px 8px rgba(0, 0, 0, 0.5);
}

aside acc-menu acc-menu-item.active > acc-menu-item-title {
    background-color: rgba(var(--primary-color-rgb), 0.88) !important;
}

/* J. Louis - Keep compact group dots clear of the three navigation controls. */
@media screen and (min-width: 501px) {
    section[nav_dots],
    #group-title {
        right: 15rem;
    }
}

/* J. Louis - Enlarge Orchid's wide wordmark without reserving empty space below it. */
#splash_screen > div:not(.splash_overlay):not(#splash_spinner) img {
    width: 48rem;
    height: auto;
    max-width: 88vw;
}

/* J. Louis - Keep Orchid's square pink entry button close to the wordmark. */
#splash_screen > div:not(.splash_overlay):not(#splash_spinner) button {
    margin-top: 1.5rem;
    border-radius: 0;
    background-color: rgba(229, 26, 146, 0.9);
    letter-spacing: 0.12em;
}

/* J. Louis - Match the MBS change-state cue with plain shadowed text and no caret. */
my-tooltip.change-state-tooltip {
    position: fixed;
    bottom: auto;
    z-index: 1000;
    transform: translate(-50%, calc(-100% - 0.8rem));
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
}

my-tooltip.change-state-tooltip::before {
    display: none;
}

my-tooltip.change-state-tooltip.visible {
    opacity: 1;
}
