﻿@import"https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&display=swap";
@import"https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&display=swap";
@import"https://fonts.googleapis.com/css2?family=Marcellus+SC&display=swap";
@import"https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;600;700&display=swap";
@import"https://fonts.googleapis.com/css?family=Alegreya:300,400,500,700&display=swap";
@import"https://fonts.googleapis.com/css?family=Inter:300,400,500,700&display=swap";
@import"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css";
@import"https://cdn-images.mailchimp.com/embedcode/classic-071822.css";
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --font-egypt-display: "Cinzel Decorative", "Cinzel", serif;
    --font-egypt-heading: "Marcellus SC", "Cinzel", serif;
    --font-egypt-body: "Noto Serif", "EB Garamond", Georgia, serif;
    --font-egypt-ui: Roboto, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

/* ------ headings ------ */
h1 {
    display: inline-block;
    font-family: var(--font-egypt-display);
    font-size: 4em;
    line-height: 1em;
    text-align: center;
    letter-spacing: 0.02em;
    margin-bottom: 0.5em;
    --gap: 20px;
    position: relative;
    left: calc(50% - var(--gap));
    transform: translateX(-50%);
    font-weight: 800;
    color: var(--bs-primary);
    padding-top: 50px;
    padding-bottom: 60px;
    border-image-source: url('/images/TitleFrameExpandable_Light.svg');
    border-image-slice: 25% 25%;
    border-image-width: auto;
    border-image-repeat: stretch stretch;
    margin-bottom: 1em;
    padding-left: 50px;
    padding-right: 50px;
    border-width: 160px;
}

[data-bs-theme=dark] h1 {
    border-image-source: url('/images/TitleFrameExpandable_Dark.svg');
    
}


/* Title frame + side ornaments (bloc.svg once per side) */
h1.title-framed {
    position: relative;
}

/* Ensure the title text stays above ornaments */
h1.title-framed > .title-framed__content {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding-left: 70px;
    padding-right: 70px;
}

    h1.title-framed::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0px;
        width: 60px;
        height: 120px;
        transform: translate(-50%, -50%) rotate(0deg);
        transform-origin: center;
        background: url('/images/bloc.svg') no-repeat center / contain var(--bs-body-bg);
        pointer-events: none;
        z-index: 0;
    }

    h1.title-framed::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0px;
        width: 60px;
        height: 120px;
        transform: translate(-50%, 50%) rotate(180deg);
        background: url('/images/bloc.svg') no-repeat center / contain var(--bs-body-bg);
        pointer-events: none;
        z-index: 0;
    }

    h1.title-framed > .title-framed__content::before {
        content: "";
        position: absolute;
        margin-left: -20px;
        top: 50%;
        width: 60px;
        height: 120px;
        background: url('/images/bloc.svg') no-repeat center / contain var(--bs-body-bg);
        pointer-events: none;
        z-index: 0;
    }

    h1.title-framed > .title-framed__content::after {
        content: "";
        position: absolute;
        top: 50%;
        margin-right: -20px;
        width: 60px;
        height: 120px;
        background: url('/images/bloc.svg') no-repeat center / contain var(--bs-body-bg);
        pointer-events: none;
        z-index: 0;
    }

/* left ornament */
h1.title-framed > .title-framed__content::before {
    left: 0;
    transform: translateY(-50%) translateX(-100%) rotate(-90deg);
    transform-origin: center;
}

/* right ornament */
h1.title-framed > .title-framed__content::after {
    right: 0;
    transform: translateY(-50%) translateX(100%) rotate(90deg);
    transform-origin: center;
}

[data-bs-theme=dark] h1.title-framed::before,
[data-bs-theme=dark] h1.title-framed::after,
[data-bs-theme=dark] h1.title-framed > .title-framed__content::before,
[data-bs-theme=dark] h1.title-framed > .title-framed__content::after {
    background-image: url('/images/bloc.svg');
}
:root {
    /* Base neutrals */
    --black: rgba(0, 0, 0, 1);
    --dark-black: rgba(39,39,39,1);
    --mid-black: rgba(68, 68, 68, 1);
    --pale-black: rgba(170, 170, 170, 1);
    --white: rgba(255, 255, 255, 1);
    --translucent-white: rgba(255, 255, 255, 0.7);
    --dark-grey: rgba(33, 37, 41, 1);
    /* Egyptian-inspired palette (sandstone / papyrus / lapis / turquoise / gold) */
    --egypt-sand-dark: rgba(140, 108, 66, 1);
    --egypt-sand: rgba(197, 164, 96, 1);
    --egypt-papyrus: rgba(246, 236, 214, 1);
    --egypt-lapis: rgba(30, 58, 138, 1);
    --egypt-turquoise: rgba(17, 122, 110, 1);
    --egypt-carnelian: rgba(189, 77, 36, 1);
    --egypt-gold-dark: rgba(131, 102, 27, 1);
    --egypt-gold: rgba(212, 175, 55, 1);
    --egypt-gold-light: rgba(246, 224, 142, 1);
    /* Back-compat theme tokens used throughout the app */
    --dark-red: var(--egypt-carnelian);
    --red: var(--egypt-turquoise);
    --mid-red: rgba(52, 168, 163, 1);
    --pale-red: rgba(150, 215, 212, 1);
    --dark-gold: var(--egypt-gold-dark);
    --gold: var(--egypt-gold);
    --mid-gold: var(--egypt-gold-light);
    --light-gold: rgba(255, 244, 204, 1);
}

/* === Egyptian palette utility classes =========================== */
.bg-egypt-sand-dark { background-color: var(--egypt-sand-dark) !important; }
.bg-egypt-sand { background-color: var(--egypt-sand) !important; }
.bg-egypt-papyrus { background-color: var(--egypt-papyrus) !important; }
.bg-egypt-lapis { background-color: var(--egypt-lapis) !important; }
.bg-egypt-turquoise { background-color: var(--egypt-turquoise) !important; }
.bg-egypt-carnelian { background-color: var(--egypt-carnelian) !important; }
.bg-egypt-gold-dark { background-color: var(--egypt-gold-dark) !important; }
.bg-egypt-gold { background-color: var(--egypt-gold) !important; }
.bg-egypt-gold-light { background-color: var(--egypt-gold-light) !important; }

.text-egypt-sand-dark { color: var(--egypt-sand-dark) !important; }
.text-egypt-sand { color: var(--egypt-sand) !important; }
.text-egypt-papyrus { color: var(--egypt-papyrus) !important; }
.text-egypt-lapis { color: var(--egypt-lapis) !important; }
.text-egypt-turquoise { color: var(--egypt-turquoise) !important; }
.text-egypt-carnelian { color: var(--egypt-carnelian) !important; }
.text-egypt-gold-dark { color: var(--egypt-gold-dark) !important; }
.text-egypt-gold { color: var(--egypt-gold) !important; }
.text-egypt-gold-light { color: var(--egypt-gold-light) !important; }

.border-egypt-sand-dark { border-color: var(--egypt-sand-dark) !important; }
.border-egypt-sand { border-color: var(--egypt-sand) !important; }
.border-egypt-papyrus { border-color: var(--egypt-papyrus) !important; }
.border-egypt-lapis { border-color: var(--egypt-lapis) !important; }
.border-egypt-turquoise { border-color: var(--egypt-turquoise) !important; }
.border-egypt-carnelian { border-color: var(--egypt-carnelian) !important; }
.border-egypt-gold-dark { border-color: var(--egypt-gold-dark) !important; }
.border-egypt-gold { border-color: var(--egypt-gold) !important; }
.border-egypt-gold-light { border-color: var(--egypt-gold-light) !important; }

html {
    scroll-padding-top: 0px;
}

body {
    font-family: var(--font-egypt-body);
    font-style: normal;
    font-size: 1.2em;
    line-height: 1.2em;
    margin: 0 0 10px 0;
    padding: 0 0 0 0;
    background: var(--bs-body-bg);
    min-height: 100vh;
    position: relative;
}

.page-background {
    background: var(--bs-body-bg);
    min-height: 100vh;
    position: relative;
}

.page-background::before,
.page-background::after {
    content: "";
    position: fixed;
    top: 0;
    width: 120px;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    background: url('/images/border-edge.png') repeat-y center;
    background-size: contain;
    filter: opacity(0.2);
    background-color: var(--bs-body-bg);
    mix-blend-mode: multiply, color;
    opacity: 0.3;
}

    [data-bs-theme=dark] .page-background::before,
    [data-bs-theme=dark] .page-background::after {
        filter: opacity(0.5);
    }


.page-background::before {
    left: 0;
    background-position: left center;
}

.page-background::after {
    right: 0;
    background-position: right center;
    transform: scaleX(-1);
}

[data-bs-theme=dark] .text-only .page-background {
    background: var(--black);
    min-height: 100vh;
    position: relative;
}

.text-only .page-background {
    background: var(--white);
    min-height: 100vh;
    position: relative;
}

[data-bs-theme=dark] .text-only .page-background::before,
[data-bs-theme=dark] .text-only .page-background::after {
    content: "";
    position: fixed;
    top: 0;
    width: 120px; /* adjust to your image width */
    height: 100vh;
    z-index: 0;
    pointer-events: none;        
    background: var(--black)
}

    .text-only .page-background::before,
    .text-only .page-background::after {
        content: "";
        position: fixed;
        top: 0;
        width: 120px; /* adjust to your image width */
        height: 100vh;
        z-index: 0;
        pointer-events: none;
        background: var(--white)
    }

body::before {
    left: 2px;
    background-position: left center;

}

body::after {
    right: 2px;
    background-position: right center;
    transform: scaleX(-1);
}


hr {
    color: var(--bs-secondary-text-emphasis);
}

p {
    line-height: 1.45em;
    margin-bottom: 1.5em;
}


.e-schedule .e-agenda-view .e-content-wrap table td:first-child, .e-schedule .e-agenda-view .e-resource-column {
    vertical-align: central;
    width: 150px !important;
}
/* text links */
a {
    border-bottom: 1px dotted;
    padding-bottom: 1px;
    color: var(--pale-red);
    text-decoration: none;
}

    a:hover {
        border-bottom: 1px solid;
    }

.row ul li {
    line-height: 1.4em;
    padding-bottom: 6px;
}

.row ul li > ul {
    margin-top: 6px;
}

.list-group a {
    border-bottom: none;
    color: inherit;
}

a.nav-link:hover {
    border-bottom: none;
}

ul li {
    line-height: 1.45em;
}

ol li {
    line-height: 1.45em;
}


h2 {
    font-family: var(--font-egypt-display);
    font-size: 2.5em;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 0.5em;
    color: var(--bs-secondary);
}

[data-bs-theme=dark] h1, [data-bs-theme=dark] h2, [data-bs-theme=dark] h3, [data-bs-theme=dark] h4 {
    color: var(--mid-gold);
}

[data-bs-theme=light] h1, [data-bs-theme=light] h2, [data-bs-theme=light] h3, [data-bs-theme=light] h4 {
    color: var(--red);
}

p + h2 {
    margin-top: 1em;
}

.text-only h1 {
    border-image-source: none;
    color: var(--bs-body-color);
    border: 0px hidden;
    padding-left: 0;
    padding-right: 0;
}

h3 {
    font-family: var(--font-egypt-heading);
    font-size: 1.5em;
    line-height: 1.1em;
    padding-top: 20px;
    padding-bottom: 20px;
    font-weight: 900;
    letter-spacing: 0.1em;
}


h2 + h3 {
    padding-top: 0;
}

h4 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.2em;
    line-height: 1.27em;
    padding-top: 15px;
    padding-bottom: 10px;
}

.form-control.is-valid {
    border-color: var(--mid-gold) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='rgb(240 205 105)' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e")
}

.text-only .form-control.is-valid {
    border-color: var(--bs-body-color) !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='rgb(255 255 255)' d='M2.3 6.73.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1'/%3e%3c/svg%3e")
}

.text-only .form-check-input:checked {
    background-color: var(--bs-body-color);
    border-color: var(--bs-body-color);
    
}


[data-bs-theme="dark"] .text-only .form-check-input:checked {
    background-color: var(--bs-bg-color);
    border-color: var(--bs-body-color);
}


.text-only .list-group-item.active {
    z-index: 2;
    color:var(--bs-body-bg);
    background-color: var(--bs-body-color);
    border-color: var(--bs-body-color);
}

.text-only .bg-secondary {
    background-color: var(--bs-body-color) !important;
    color: var(--bs-body-bg);
}

.alert-warning {
    --bs-alert-color: var(--gold);
    --bs-alert-bg: rbga(var(--gold),0.3);
    --bs-alert-border-color: var(--bs-warning-border-subtle);
    --bs-alert-link-color: var(--gold);
}

.text-only h1,
.text-only h2,
.text-only h3,
.text-only h4,
.text-only h5,
.text-only p,
.text-only a,
.text-only button,
.text-only cite,
.text-only .card-text,
.text-only .list-group-item,
.text-only .card-header,
.text-only li,
.text-only blockquote {
    font-family: var(--font-egypt-ui);
    color: var(--bs-body-color);
}

.btn-primary {
    background-color: var(--egypt-turquoise);
    color: var(--bs-black);
}

    .btn-primary:hover {
        color: var(--bs-black);
        background-color: var(--light-gold);
        border-color: var(--bs-btn-hover-border-color);
    }

.text-only .btn-primary {
    background-color: rgba(var(--bs-body-color-rgb),1) !important;
    border: rgba(var(--bs-text-color-rgb),1) !important;
    color: rgba(var(--bs-body-bg-rgb),1) !important;
}

.text-only .btn-outline-primary {
    background-color: rgba(var(--bs-body-color-rgb),1) !important;
    border: rgba(var(--bs-text-color-rgb),1) !important;
    color: rgba(var(--bs-body-bg-rgb),1) !important;
}

.text-only .btn-secondary {
    background-color: rgba(var(--bs-body-color-rgb),1) !important;
    border: rgba(var(--bs-text-color-rgb),1) !important;
    color: rgba(var(--bs-body-bg-rgb),1) !important;
}


.text-only .btn-danger {
    background-color: rgba(var(--bs-body-color-rgb),1) !important;
    border: rgba(var(--bs-text-color-rgb),1) !important;
    color: rgba(var(--bs-body-bg-rgb),1) !important;
}

.text-only .open-quote::before {
    color: rgba(var(--bs-text-color-rgb),1) !important;
}

.text-only .close-quote::before {
    color: rgba(var(--bs-text-color-rgb),1) !important;
}

.text-only hr {
    color: rgba(var(--bs-text-color-rgb),1) !important;
}

.text-only .btn-warning {
    background-color: rgba(var(--bs-body-color-rgb),1) !important;
    border: rgba(var(--bs-text-color-rgb),1) !important;
    color: rgba(var(--bs-body-bg-rgb),1) !important;
}


.text-only .btn-secondary-primary {
    background-color: rgba(var(--bs-body-color-rgb),1) !important;
    border: rgba(var(--bs-text-color-rgb),1) !important;
    color: rgba(var(--bs-body-bg-rgb),1) !important;
}


.card-header {
    padding-top: 30px;
}

.text-only .card-header {
    padding-top: 10px;
}


.pretty-border-full ~ .card-header, .pretty-border-simple ~ .card-header {
    margin-left: 5px;
    margin-right: 5px;
}

.text-only .pretty-border-full ~ .card-header, .pretty-border-simple ~ .card-header {
    margin-left: 0px;
    margin-right: 0px;
}


.text-only .card-footer {
    padding-bottom: 10px;
    padding-left: 10px;
    padding-right: 10px;
}

.text-only .modal-header {
    border-bottom: solid 1px var(--bs-border-color-translucent) !important;
    margin-right: 1px;
    margin-left: 1px;
    margin-top: 0px;
}

.text-only .modal-footer {
    border-top: solid 1px var(--bs-border-color-translucent) !important;
    margin-right: 1px;
    margin-left: 1px;
    margin-bottom:0px;
}

.card-footer {
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
}

.pretty-border-full ~ .card-footer, .pretty-border-simple ~ .card-footer {
    margin-left: 5px;
    margin-right: 5px;
}

.text-only .pretty-border-full ~ .card-footer, .pretty-border-simple ~ .card-footer {
    margin-left: 0px;
    margin-right: 0px;
}


.card-body {
    padding-top: 35px;
    padding-left: 30px;
    padding-right: 30px;
}


.text-only .card-body {
    padding-top: 15px;
    padding-left: 10px;
    padding-right: 10px;
}


.text-only .card {
    background-color: transparent !important;
}

.l2-menu-item {
    font-size: 1.25rem !important;
    font-size: 16px; /* same size as the level 1 navigation) */
    letter-spacing: -0.02em;
    line-height: 1.1em;
}

.l3-menu-item {
    margin-left:5px;
    font-size: 16px; /* same size as the level 1 & 2 navigation) */
    font-weight: 400 !important; /* not bold */
    line-height: 1.15em;
}

/* Merchandise page - item titles */
.card-title {
    letter-spacing: -0.03em;
}

.footnote {
    font-size: 14px;
    font-weight: 400;
    scroll-margin-top: 140px;
}

p:has(> .footnote) {
    margin-bottom: 0.5em;
}

[id] {
    scroll-margin-top: 140px;
}

/* bolder titles on cards (e.g. News and FAQs */
h4.card-title {
    font-weight: 700;
}

/* more spacing above the footer links */
div.row ul.nav {
    margin-top: 1em;
}


/* end Jordan Changes */

.page-padding {
    padding: 1.5em !important;
}

.footer {
    position: relative;
}

.footer-bg {
    opacity: 0.5;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}


main > .container {
    padding: 20px;
    margin-bottom: 20px;
    min-height: calc(100vh - 570px);
}

h1:focus {
    outline: none;
}


.image-original {
    max-width: 100%;
    height: auto;
}

.image-thumbnail0 {
    max-width: 120px;
    max-height: 120px;
}

.image-thumbnail1 {
    max-width: 60px;
    max-height: 60px;
}

.image-thumbnail2 {
    max-width: 30px;
    max-height: 30px;
}

.image-left {
    float: left;
    padding-right: 3em;
    padding-top: 1em;
    padding-bottom: 1em;
}

.image-right {
    float: right;
    padding-left: 3em;
    padding-top:1em;
    padding-bottom:1em;
}

.image-fullwidth {
    min-width: 100%;
    height: auto;
}

.bd-mode-toggle {
    z-index: 1500;
}

    .bd-mode-toggle .dropdown-menu .active .bi {
        display: block !important;
    }

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.validation-holder {
    margin-top: 5px;
    margin-bottom: 5px;
}

    .validation-holder:empty::after {
        content: "\200b";
        visibility: hidden;
    }

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA9NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDg2IDYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

code {
    color: #c02d76;
}

.grid-container {
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 10px;
}


.grid-item {
    text-align: left;
}


.navbar-brand {
    font-size: unset !important;
}



.logo {
    user-select: none;
}

.brand-wrapper {
    user-select: none;
}

.brand {
    height: 50px;
    width: 150px;
    filter: drop-shadow(4px 4px 2px rgb(0 0 0 / 0.4))
}

.hero-image {
   width:50%
}

.hero-heading {
    font-size: 1.5rem;
    font-weight: 1000;
}

.hero-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
}

.hero-cta {
    font-size: 1rem;
    padding: 0.2rem;
}

.glow {
    color: var(--egypt-gold-light);
    text-align: center;
    -webkit-animation: glow 3s ease-in-out infinite alternate;
    -moz-animation: glow 3s ease-in-out infinite alternate;
    animation: glow 3s ease-in-out infinite alternate;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 10px var(--egypt-gold-dark), 0 0 20px var(--egypt-gold-dark), 0 0 30px var(--egypt-gold-dark), 0 0 40px var(--egypt-gold-dark), 0 0 50px var(--egypt-gold-dark), 0 0 60px var(--egypt-gold-dark), 0 0 70px var(--egypt-gold-dark);
    }

    to {
        text-shadow: 0 0 20px var(--egypt-gold-light), 0 0 30px var(--egypt-gold-light), 0 0 40px var(--egypt-gold-light), 0 0 50px var(--egypt-gold-light), 0 0 60px var(--egypt-gold-light), 0 0 70px var(--egypt-gold-light), 0 0 80px var(--egypt-gold-light);
    }
}

.hero {
    padding-top: 0px;
}


.no-animate {
    animation: none !important;
}


.b-divider {
    width: 100%;
    height: 1.5rem;
    background-color: #c29180;
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.cssgrid-container-3 {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.vgap-small {
    grid-row-gap: 5px;
}

.vgap-medium {
    grid-row-gap: 10px;
}

.vgap-large {
    grid-row-gap: 20px;
}

.cssgrid-container-4 {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}


.cssgrid-container-2 {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

.cssgrid-container-1 {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}

.committee-badge {
    background-color: #FFe69B;
    color: black;
    min-width:100px;
}

.attendee-badge {
    background-color: #990000;
    color: white;
    min-width: 100px;
}

.supporting-badge {
    background-color: #AAAAAA;
    color: black;
    min-width: 100px;
}

.guest-badge {
    background-color: #cc9933;
    color: black;
    min-width: 100px;
}

.dealer-badge {
    background-color: #d98585;
    color: black;
    min-width: 100px;
}

.staff-badge {
    background-color: #000000;
    color: white;
    min-width: 100px;
}

.no-spin::-webkit-inner-spin-button, .no-spin::-webkit-outer-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

.no-spin {
    -moz-appearance: textfield !important;
}

#sidepanel.is-open {
    width: 80%;
    z-index: 1045;
}


.mvh-50 {
    min-height: -moz-calc(100% - 400px); /* Firefox */
    min-height: -webkit-calc(100% - 400px); /* Chrome, Safari */
    min-height: calc(100vh - 400px); /* IE9+ and future browsers */
}


.max-vh-50 {
    max-height: -moz-calc(100% - 400px); /* Firefox */
    max-height: -webkit-calc(100% - 400px); /* Chrome, Safari */
    max-height: calc(100vh - 400px); /* IE9+ and future browsers */
}


.clock {
    border-radius: 70px;
    border: 3px solid var(--bs-body-color);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
    display: block;
    width: 120px;
    height: 120px;
}

    .clock:after {
        content: "";
        position: absolute;
        background-color: var(--bs-body-color);
        top: 13px;
        left: 48%;
        height: 50px;
        width: 4px;
        border-radius: 5px;
        -webkit-transform-origin: 50% 97%;
        transform-origin: 50% 97%;
        -webkit-animation: grdAiguille 2s linear infinite;
        animation: grdAiguille 2s linear infinite;
    }

@-webkit-keyframes grdAiguille {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes grdAiguille {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.clock:before {
    content: "";
    position: absolute;
    background-color: var(--bs-body-color);
    top: 24px;
    left: 48%;
    height: 40px;
    width: 4px;
    border-radius: 5px;
    -webkit-transform-origin: 50% 94%;
    transform-origin: 50% 94%;
    -webkit-animation: ptAiguille 12s linear infinite;
    animation: ptAiguille 12s linear infinite;
}

@-webkit-keyframes ptAiguille {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes ptAiguille {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cls-1 {
    fill: rgb(0, 0, 0);
    stroke-width: 1px;
}

.dropdown-item {
    font-weight: 700;
}
figure {
    font-size: 1.4em;
    width: 100%;
    padding: 1.2em 30px 1.2em 75px;
    border-left: 8px solid var(--gold);
    line-height: 1.6;
    position: relative;
    background: var(--bs-primary-bg-subtle) !important;
    border-radius:5px;
}

    figure::before {
        font-family: Arial;
        content: "\201C";
        color: var(--gold);
        font-size: 4em;
        position: absolute;
        left: 10px;
        top: -10px;
    }

    figure::after {
        font-family: Arial;
        content: "\201D";
        color: var(--gold);
        font-size: 4em;
        position: absolute;
        right: 10px;
        top: -10px;
    }

    figure span {
        display: block;
        color: var(--gold);
        font-style: normal;
        font-weight: bold;
        margin-top: 1em;
    }

    .blockquote-footer {
        margin-top:20px;
        margin-bottom:0px !important;
        font-style: oblique;
    }


.text-only figure {
    background: none !important;
    border-left: none;
    border: 1px solid var(--bs-body-color);
}

.text-only figure::before {
    display:none;
}

        .text-only figure::after {
            display: none;
        }


.recolor-image {
    filter: brightness(0) saturate(100%) opacity(0.5) drop-shadow(0 0 0 var(--bs-success)) saturate(100%);
}

.e-subject {
    color: inherit !important;
}

.e-date-time {
    color: inherit !important;
}

.e-appointment {
    background: none !important;
    border-style: none !important;
    border-width: 0px !important;
    width: 100%;
}

.template-wrap {
    border-radius: 4px;
    border-style: none;
    padding: 5px;
    border-color: transparent;
}

.subject {
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
    line-height: 1.2em;
    vertical-align: middle;
}

#app {
    height: 100%;
}

.mirror {
    transform: scaleX(-1);
}

.text-only .pretty-border-full,
.text-only .pretty-border-simple,
.text-only .rope {
    display: none;
}

/*.pretty-border-full:before {
    content: '';
    position: absolute;
    height: 40px;
    top: 0;
    left: 0;
    right: 0;
    margin: -40px auto auto auto;
    width: auto;
    background-image: url('/images/CardBorder_CentreOverlay.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events:none;
}*/

.pretty-border-full {
    position: absolute;
    border-style: solid;
    background-color: transparent;
    border-color: var(--dark-gold);
    height: 100%;
    width: 100%;
    border-radius: 50px;
    border-width: 20px;
    border-image-source: url('/images/CardBorder_Full.png');
    border-image-slice: 14%;
    pointer-events: none;
}
   
.pretty-border-simple {
    position: absolute;
    border-style: solid;
    background-color: transparent;
    border-color: var(--dark-gold);
    height: 100%;
    width: 100%;
    border-width: 20px;
    border-image-source: url('/images/CardBorder_Full.png');
    border-image-slice: 14%;
    pointer-events: none;
}

    .pretty-border-simple.sm, .pretty-border-full.sm {
        border-width: 20px;
    }

    .pretty-border-simple.md, .pretty-border-full.md {
        border-width: 40px;
    }

    .pretty-border-simple.lg, .pretty-border-full.lg {
        border-width: 50px;
    }

    .pretty-border-simple.xl, .pretty-border-full.xl {
        border-width: 100px;
    }

[data-bs-theme=light] .pretty-border-full, [data-bs-theme=light] .pretty-border-simple {
    filter: none;
    border-color: var(--dark-black);
}
.dropdown-menu .card-border {
    border-width: 75px;
}

[data-bs-theme=light] .pretty-border-full::after, [data-bs-theme=light] .pretty-border-full::before {
    filter: none;
}

.rope {
    position: absolute;
    width: 20px;
    height: 120px;
    /*background-image: url('/images/FrameHanger.svg');*/
    background-size:cover;
    top: -120px;
    pointer-events: none;
}


.rope-left {
    left: 20%;
    
}

.rope-right {
    right: 20%;
    
}

.position-relative > .card {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

@media (max-width: 576px) {
    #sidepanel.is-open {
        width: 100%;
    }

    .cssgrid-container-3,
    .cssgrid-container-4,
    .cssgrid-container-2,
    .cssgrid-container-1 {
        grid-template-columns: repeat(1, minmax(0, minmax(0, 1fr)));
    }

    /* Mobile: remove decorative frame and reduce title size so it fits cleanly */
    h1 {
        display: block;
        position: static;
        left: auto;
        transform: none;
        width: 100%;
        box-sizing: border-box;
        /* smaller, more conservative responsive font so it fits on very small devices */
        font-size: clamp(0.5rem, 3.2vw, 1.4rem);
        line-height: 1.05;
        /* remove frame on narrow screens to avoid clipping */
        border: none !important;
        border-image-source: none !important;
        border-width: 0 !important;
        padding: 4px 10px;
        margin: 0.4rem 0;
        text-align: center;
        letter-spacing: 0;
        word-break: normal;
        overflow-wrap: normal;
        white-space: normal;
    }

    /* Remove extra decorative ornaments for small screens so the title is clean.
       Do NOT hide the h1 element itself — only the decorative pseudo-elements. */
        h1.title-framed::before,
        h1.title-framed::after,
        h1.title-framed > .title-framed__content::before,
        h1.title-framed > .title-framed__content::after,
        h1::before,
        h1::after {
            display: none !important;
            background: none !important;
            background-image: none !important;
        }

        h1.title-framed > .title-framed__content {
            padding-right: 0 !important;
            padding-left: 0 !important;
        }

        .page-padding {
            padding: 1.5em !important;
        }


    .cssgrid-container-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }


    .cssgrid-container-4 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }


    .cssgrid-container-2 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .cssgrid-container-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    #sidepanel.is-open {
        width: 50%;
    }

    .pretty-border-full.xl::before, .pretty-border-full.xl::after {
        display: none;
    }

    h1 {
        display: block;
        position: static;
        left: auto;
        transform: none;
        width: 100%;
        box-sizing: border-box;
        line-height: 1.15;
        border-width: 50px;
        font-size: clamp(0.75rem, 3.2vw, 1.8rem);
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 14px;
        padding-bottom: 14px;
        letter-spacing: 0;
        word-break: normal;
        overflow-wrap: normal;
        white-space: normal;
    }
        /* Remove extra decorative ornaments for small screens so the title is clean.
       Do NOT hide the h1 element itself — only the decorative pseudo-elements. */
        h1.title-framed::before,
        h1.title-framed::after,
        h1.title-framed > .title-framed__content::before,
        h1.title-framed > .title-framed__content::after,
        h1::before,
        h1::after {
            display: none !important;
            background: none !important;
            background-image: none !important;
        }

        h1.title-framed > .title-framed__content {
            padding-right: 0 !important;
            padding-left: 0 !important;
        }


    .page-padding {
        padding: 3.5em 1.5em !important;
    }

    .hero-image {
        display: inline-block;
    }

    .hero-heading {
        font-size: 2.5rem;
        font-weight: 1000;
    }

    .hero-text {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1;
    }

    .hero-cta {
        font-size: 1.5rem;
        padding: 0.5rem;
    }

    .cssgrid-container-3 {
        grid-template-columns: repeat(1, minmax(0, minmax(0, 1fr)));
    }


    .cssgrid-container-4 {
        grid-template-columns: repeat(1, minmax(0, minmax(0, 1fr)));
    }


    .cssgrid-container-2 {
        grid-template-columns: repeat(1, minmax(0, minmax(0, 1fr)));
    }

    .cssgrid-container-1 {
        grid-template-columns: repeat(1, minmax(0, minmax(0, 1fr)));
    }
}

@media (max-width: 991px) {
    .rope {
        visibility: hidden !important;
    }
    .pretty-border-full.xl::before, .pretty-border-full.xl::after {
        display: none;
    }
    h1 {
        font-size: clamp(1.75rem, 3.2vw, 2.8rem);
    }

    h2 {
        font-size: 2em;
    }
}


@media (min-width: 992px) {
    .page-padding {
        padding: 3.5em 5em !important;
    }

  
    
    .hero-heading {
        font-size: 3.5rem;
        font-weight: 1000;
    }

    .hero-text {
        font-size: 3rem;
        font-weight: 600;
        line-height: 1;
    }

    .hero-cta {
        font-size: 2rem;
        padding: 1rem;
    }

    .navbar-nav {
        background-color: rgb(45, 5, 20, 1);
        background: conic-gradient();
        backdrop-filter: blur(10px);
        border-radius: 10px;
    }

    #breadcrumbs {
        padding-left: 200px;
    }

    .cssgrid-container-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


    .cssgrid-container-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


    .cssgrid-container-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cssgrid-container-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 1200px) and (orientation: landscape) {
    header {
        height: 0px;
        position: relative !important;
        width: 100%;
        margin: auto;
    }
}

.blazored-toast {
    animation: none !important; /* Remove the default animation so we can use our own custom transition instead. */
}

.blazored-toast-container {
    z-index: 2000 !important;
}

.modal-header {
    background-color: transparent !important;
    margin-left: 8px;
    margin-right: 8px;
    margin-top: 18px;
    border-bottom-color: var(--dark-gold);
}

.modal-body {
    margin-left: 8px;
    margin-right: 8px;
}

.modal-footer {
    border-top-color: var(--dark-gold);
    margin-left: 8px;
    margin-right: 8px;
    margin-bottom: 18px;
}

.loader {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader .loader-stage {
    position: relative;
    width: 100px;
    height: 100px;
}

.mask-svg {
    position: absolute;
    left: 100px;
    top: 60px;
    width: 100px;
    height: 150px;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.8));
    animation: fadeInOut 10s infinite ease-in-out;
}

/* Light theme */
[data-bs-theme="light"] .mask-svg path {
    fill: var(--black);
}

/* Dark theme */
[data-bs-theme="dark"] .mask-svg path {
    fill: var(--white);
}


@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8) rotate(6deg);
    }

    50% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Mailchimp CSS */


#mc_embed_signup {
    clear: left;
    width: 100%;
}

#mc_embed_signup h2 {
    font-size:2.5em !important; 
}

    #mc_embed_signup .mc-field-group label {
        margin-bottom:.5rem !important;
    }

    #mc_embed_signup .mc-field-group input[type=email], #mc_embed_signup .mc-field-group input[type=text] {
        display: block !important;
        width: 100% !important;
        padding: .375rem .75rem !important;
        font-size: 1rem !important;
        font-weight: 400 !important;
        line-height: 1.5 !important;
        color: var(--bs-body-color) !important;
        appearance: none !important;
        background-color: var(--bs-body-bg) !important;
        background-clip: padding-box !important;
        border: var(--bs-border-width) solid var(--bs-border-color) !important;
        border-radius: var(--bs-border-radius) !important;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out !important;
    }

#mc-embedded-subscribe-form .checkbox span {
    margin-left:1em;
}

#mc_embed_signup .button {
    --bs-btn-color: #fff;
    --bs-btn-bg: #896110;
    --bs-btn-border-color: #896110;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #74520e;
    --bs-btn-hover-border-color: #6e4e0d;
    --bs-btn-focus-shadow-rgb: 155,121,52;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #6e4e0d;
    --bs-btn-active-border-color: #67490c;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #896110;
    --bs-btn-disabled-border-color: #896110;
    --bs-btn-padding-x: .75rem;
    --bs-btn-padding-y: .375rem;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: var(--bs-body-color);
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-box-shadow: inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);
    --bs-btn-disabled-opacity: .65;
    --bs-btn-focus-box-shadow: 0 0 0 .25rem rgba(var(--bs-btn-focus-shadow-rgb),.5);
    display: inline-block !important;
    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x) !important;
    font-size: var(--bs-btn-font-size) !important;
    font-weight: var(--bs-btn-font-weight) !important;
    line-height: var(--bs-btn-line-height) !important;
    color: var(--bs-btn-color) !important;
    text-align: center !important;
    text-decoration: none !important;
    vertical-align: middle !important;
    cursor: pointer !important;
    user-select: none !important;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color) !important;
    border-radius: var(--bs-btn-border-radius) !important;
    background-color: var(--gold) !important;
    color: var(--bs-black) !important;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out !important;
}


.text-only #mc_embed_signup .button {
    background-color: rgba(var(--bs-body-color-rgb),1) !important;
    color: rgba(var(--bs-body-bg-rgb),1) !important
}

    #mc-embedded-subscribe-form input[type=checkbox] {
    border-radius: .25em;
    float: left;
    margin-left: 0;
    --bs-form-check-bg: var(--bs-body-bg);
    flex-shrink: 0;
    width: 1em !important;
    height: 1em !important;
    margin-top: .25em;
    vertical-align: top;
    appearance: none !important;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: var(--bs-border-width) solid var(--bs-border-color);
    print-color-adjust: exact;
}

#mc_embed_signup .foot p {
    background-color:white;
    border-radius:10px;
}

#mergeRow-gdpr {
    margin-top: 20px;
}

    #mergeRow-gdpr fieldset label {
        font-weight: normal;
    }

#mc-embedded-subscribe-form .mc_fieldset {
    border: none;
    min-height: 0px;
    padding-bottom: 0px;
}



.ray {
    clip-path: polygon(0% 45%, 100% 0%, 100% 100%, 0% 55%);
    transform: translateY(-50%) translateX(-50%) rotate(60deg) translateY(50%) translateX(50%) translateY(-50%);
    position: absolute;
    top: -60px;
    left: 50%;
    width: 150px;
    height: 150px;
    background: linear-gradient(0.25turn,rgba(137,97,16,0.7), rgba(137,97,0,0));
}

[data-bs-theme=light] .ray {
    background: linear-gradient(0.25turn,rgba(204,153,51,0.7), rgba(204,153,0,0));
}

.text-only .ray {
    display:none;
}

.ray.ray-left {
    top:auto;
    left:30%;
}

.ray.ray-right {
    top: auto;
    left: 70%;
    transform: translateY(-50%) translateX(-50%) rotate(120deg) translateY(50%) translateX(50%) translateY(-50%);
}

.light1,
.light2 {
    opacity: 0;
    transition: opacity 1s ease;
    /* display: block;  // Ensure they are always in the layout */
    pointer-events: none;
}

.light-fade-in {
    opacity: 1 !important;
}

.text-only .badge.rounded-pill {
    background-color: rgba(var(--bs-body-color-rgb),1) !important;
    color: rgba(var(--bs-body-bg-rgb),1) !important
}

.text-only .modal-content {
    background-color: rgba(var(--bs-body-bg-rgb),1) !important;
}

.text-only .btn-close:hover {
    background-color: transparent !important;
    color: rgba(var(--bs-body-bg-rgb),1) !important;
}

.text-only .committee-badge, .text-only .attendee-badge, .text-only .supporting-badge, .text-only .dealer-badge, .text-only .guest-badge {
    background-color: rgba(var(--bs-body-color-rgb),1) !important;
    color: rgba(var(--bs-body-bg-rgb),1) !important;
}

/* === Scroll To Top Button ======================================= */
.scroll-top-btn {
    position: fixed;
    bottom: clamp(16px, 2vh, 12px);
    left: clamp(16px, 2vw, 12px);
    width: 60px;
    height: 60px;
    padding: 0;
    display: flex;
    cursor: pointer;
    z-index: 1090;
    opacity: 0;
    border-radius: 50%;
    transition: opacity .25s ease, transform .25s ease;
    background-image: url('/images/20.png');
    background-size: cover;
    background-position: center;
    background-color: transparent !important;  
    background-repeat: no-repeat;
    transform: translateY(100%) scale(0);
    border: none;
    box-shadow: none;
    pointer-events: none;
}

.text-only .scroll-top-btn::before {
    font-family: "Bootstrap Icons", "bootstrap-icons";
    content: "\f139";
    font-size: 2rem;
    display: flex;
    width: 100%;
    text-decoration: none;
    justify-content: center;
    text-align: center;
    line-height: 60px; /* match button height */
    color: inherit;
}

.text-only .scroll-top-btn {
    background-image: none !important;
    border: 1px solid currentColor;
    background-color: rgba(var(--bs-body-color-rgb),1) !important;
}

    .scroll-top-btn.show {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .scroll-top-btn:focus-visible,
    .scroll-top-btn:hover {
        outline: none;
    }

    .scroll-top-btn:active {
        transform: translateY(2px) scale(.95);
    }
    /* Dark theme uses same .btn-primary rules already; no extra override needed */
    /* Text-only mode: keep consistent look & contrast */
    .text-only .scroll-top-btn {
        background-color: rgba(var(--bs-body-color-rgb),1) !important;
        color: rgba(var(--bs-body-bg-rgb),1) !important;
        border: 1px solid currentColor;
    }

        .text-only .scroll-top-btn:hover,
        .text-only .scroll-top-btn:focus-visible {
            text-decoration: underline;
        }
    /* Reduced motion */
    @media (prefers-reduced-motion: reduce) {
        .scroll-top-btn {
            transition: opacity .2s ease;
            transform: none !important;
        }
    }
    /* Prevent label from overlapping select value */
    .form-floating > .form-select {
        padding-top: 1.825rem;
        padding-bottom: 0.625rem;
        min-height: calc(3.5rem + 2px);
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .form-floating > label {
        z-index: 2;
        pointer-events: none;
        left: 0.75rem;
        right: 0.75rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    /* Remove native number input spin controls for inputs with .no-spin-updown */
    .no-spin-updown::-webkit-outer-spin-button,
    .no-spin-updown::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .no-spin-updown {
        /* Firefox */
        -moz-appearance: textfield;
        /* Standard / other browsers */
        appearance: textfield;
    }
    /* Improved visible separator for text-only mode (pseudo-element + fallback border) */
    .text-only .btn-group {
        position: relative;
    }
        /* Ensure buttons are positioned for pseudo-element placement */
        .text-only .btn-group > .btn {
            position: relative;
        }
            /* Primary separator (pseudo-element) */
            .text-only .btn-group > .btn + .btn::before {
                content: "";
                position: absolute;
                left: 0;
                top: 6%;
                bottom: 6%;
                z-index: 3;
                border-radius: 2px;
                pointer-events: none;
                transition: background-color .12s ease, box-shadow .12s ease;
                /* default to white for light theme contexts; dark theme override below */
                background: rgba(255,255,255,1) !important;
            }
            /* Fallback border for robustness (in case pseudo-element is suppressed) */
            .text-only .btn-group > .btn + .btn {
                padding-left: calc(0.6rem + 2px); /* space for separator */
                border-left: 2px solid rgba(255,255,255,1) !important;
            }
            /* If a nested .btn-group is used as a sibling, style its first button */
            .text-only .btn-group > .btn + .btn-group > .btn:first-child::before,
            .text-only .btn-group > .btn-group + .btn > .btn::before,
            .text-only .btn-group > .btn-group > .btn:first-child::before {
                content: "";
                position: absolute;
                left: 0;
                top: 6%;
                bottom: 6%;
                z-index: 3;
                border-radius: 2px;
                pointer-events: none;
                background: rgba(255,255,255,1) !important;
            }
            /* Fallback border for nested-first buttons */
            .text-only .btn-group > .btn + .btn-group > .btn:first-child,
            .text-only .btn-group > .btn-group > .btn:first-child {
                padding-left: calc(0.6rem + 2px);
                border-left: 2px solid rgba(255,255,255,1) !important;
            }
    /* Dark theme overrides: black separator and fallback border */
    [data-bs-theme="dark"] .text-only .btn-group .btn + .btn::before,
    [data-bs-theme="dark"] .text-only .btn-group > .btn + .btn-group > .btn:first-child::before,
    [data-bs-theme="dark"] .text-only .btn-group > .btn-group > .btn:first-child::before {
        background: rgba(0,0,0,1) !important;
    }

    [data-bs-theme="dark"] .text-only .btn-group .btn + .btn,
    [data-bs-theme="dark"] .text-only .btn-group > .btn + .btn-group > .btn:first-child,
    [data-bs-theme="dark"] .text-only .btn-group > .btn-group > .btn:first-child {
        border-left-color: rgba(0,0,0,1) !important;
    }

    .btn-danger {
        background-color: var(--red) !important;
    }
    /* Base fallback (applies if no data-bs-theme set) */
    .text-only input[type="checkbox"],
    .text-only .form-check-input {
        width: 1.15rem;
        height: 1.15rem;
        min-width: 1.15rem;
        min-height: 1.15rem;
        margin-top: 0.125rem;
        -webkit-appearance: none;
        appearance: none;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        cursor: pointer;
        border: 2px solid #222;
        border-radius: 0.25rem;
        background-color: transparent !important;
        box-shadow: none !important;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 80% 80%; /* increase check size */
    }
    /* Light theme: dark border and dark fill when checked, white (thicker) checkmark */
    [data-bs-theme="light"] .text-only input[type="checkbox"],
    [data-bs-theme="light"] .text-only .form-check-input {
        border: 2px solid rgba(0,0,0,0.85) !important;
        background-color: transparent !important;
    }

        [data-bs-theme="light"] .text-only input[type="checkbox"]:checked,
        [data-bs-theme="light"] .text-only .form-check-input:checked {
            border-color: rgba(0,0,0,0.85) !important;
            background-color: rgba(0,0,0,0.85) !important;
            /* thicker stroked white checkmark (SVG, stroke-based) */
            background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2016%2016'%3E%3Cpath%20d='M3.5%208.5L6.8%2011.8L12.5%205.8'%20stroke='white'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3E%3C/svg%3E") !important;
            background-size: 80% 80% !important;
        }
    /* Dark theme: light border and light fill when checked, dark (thicker) checkmark */
    [data-bs-theme="dark"] .text-only input[type="checkbox"],
    [data-bs-theme="dark"] .text-only .form-check-input {
        border: 2px solid rgba(255,255,255,0.92) !important;
        background-color: transparent !important;
    }

        [data-bs-theme="dark"] .text-only input[type="checkbox"]:checked,
        [data-bs-theme="dark"] .text-only .form-check-input:checked {
            border-color: rgba(var(--bs-body-color-rgb,255,255,255),1) !important;
            background-color: rgba(var(--bs-body-color-rgb,255,255,255),1) !important;
            /* thicker stroked dark checkmark (SVG, stroke-based) */
            background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2016%2016'%3E%3Cpath%20d='M3.5%208.5L6.8%2011.8L12.5%205.8'%20stroke='black'%20stroke-width='2.4'%20stroke-linecap='round'%20stroke-linejoin='round'%20fill='none'/%3E%3C/svg%3E") !important;
            background-size: 80% 80% !important;
        }
    /* focus-visible: subtle ring for keyboard users */
    .text-only input[type="checkbox"]:focus,
    .text-only .form-check-input:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
    }
    /* small screens: slightly smaller checkboxes to avoid layout issues */
    @media (max-width: 576px) {
        .text-only input[type="checkbox"],
        .text-only .form-check-input {
            width: 1rem;
            height: 1rem;
            border-width: 1.75px;
            background-size: 70% 70%;
        }
    }

    [data-bs-theme=dark] .text-only div.container.bg-body.page-padding {
        background-color: var(--dark-black) !important;
    }


    [data-bs-theme=light] .text-only div.container.bg-body.page-padding {
        background-color: var(--bs-gray-200) !important;
    }

    .text-only .hero-image {
        display: none;
    }

    .text-only .background-image {
        opacity: 0;
        height: 300px;
    }

    .text-only .hero-heading {
        font-size: 3rem;
        font-weight: 1000;
        color: var(--bs-body-color) !important;
        animation: none !important;
    }

    .text-only .hero-text {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1;
        color: var(--bs-body-color) !important;
        animation: none !important;
    }

body.offcanvas-nav-open .nav-decoration-top {
    display: none !important;
}

[data-bs-theme=dark] .dropdown-menu.show {
    background-color: var(--egypt-gold-dark) !important;

}

[data-bs-theme=light] .dropdown-menu.show {
    background-color: var(--egypt-gold-light) !important;
}

[data-bs-theme=light] a {
    color: var(--dark-black) !important;
}

[data-bs-theme=dark] a {
    color: var(--egypt-gold) !important;
}