/* ==========================================================
   SEO / GEO Enhancements — 2026-02-27
   - Visible homepage H1
   - Mobile-friendly breadcrumbs
   ========================================================== */

/* Homepage H1 inside #indexDefaultMainContent SEO block */
.home-seo-h1 {
    font-family: var(--font-serif, 'Playfair Display', serif);
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0 0 0.6em;
    padding-bottom: 0.5em;
    color: var(--lux-gold, #D4AF37);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

/* Dark theme */
.theme-dark .home-seo-h1,
html[data-theme="dark"] .home-seo-h1 {
    color: var(--lux-gold, #D4AF37);
    border-bottom-color: rgba(212, 175, 55, 0.12);
}

/* Light theme */
.theme-light .home-seo-h1,
html[data-theme="light"] .home-seo-h1 {
    color: #111;
    border-bottom-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 767.98px) {
    .home-seo-h1 {
        font-size: 1.15rem;
        letter-spacing: 3px;
    }
}

/* --------------------------------------------------------
   Mobile breadcrumb — compact horizontal scroll
   -------------------------------------------------------- */
@media (max-width: 767.98px) {
    #navBreadCrumb {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        padding: 6px 10px;
        scrollbar-width: none;           /* Firefox */
    }
    #navBreadCrumb::-webkit-scrollbar {
        display: none;                    /* Chrome/Safari */
    }
    #navBreadCrumb .breadcrumb {
        flex-wrap: nowrap !important;
        margin-bottom: 0;
        padding: 0;
        font-size: 0.72rem;
    }
    #navBreadCrumb .breadcrumb li {
        flex-shrink: 0;
    }
    #navBreadCrumb .breadcrumb-separator {
        margin: 0 6px;
    }
    #navBreadCrumb .breadcrumb li,
    #navBreadCrumb .breadcrumb li a {
        font-size: 0.62rem !important;
    }
    #navBreadCrumb .breadcrumb li:last-child {
        font-size: 0.68rem !important;
    }
}

/* --------------------------------------------------------
   Breadcrumb base — override Bootstrap .breadcrumb gray bg
   (needed when stylesheet_luxury_sideboxes.css is excluded)
   -------------------------------------------------------- */
#navBreadCrumb .breadcrumb {
    background-color: transparent !important;
    background: none !important;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}

#navBreadCrumb .breadcrumb li,
#navBreadCrumb .breadcrumb li a {
    font-family: var(--font-sans, 'Montserrat', sans-serif);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-decoration: none;
    transition: color .4s cubic-bezier(.4, 0, .2, 1) !important;
}

#navBreadCrumb .breadcrumb li a:hover {
    color: var(--lux-gold, #D4AF37) !important;
}

/* --------------------------------------------------------
   Dark-mode breadcrumb — transparent bg, black-gold text
   -------------------------------------------------------- */
.theme-dark #navBreadCrumb,
html[data-theme="dark"] #navBreadCrumb {
    background-color: transparent !important;
    background: none !important;
}

.theme-dark #navBreadCrumb .breadcrumb,
html[data-theme="dark"] #navBreadCrumb .breadcrumb {
    background-color: transparent !important;
    background: none !important;
}

/* Links → gold */
.theme-dark #navBreadCrumb .breadcrumb li a,
html[data-theme="dark"] #navBreadCrumb .breadcrumb li a {
    color: var(--lux-gold, #D4AF37) !important;
}

/* Separators & non-link text → muted gold */
.theme-dark #navBreadCrumb .breadcrumb li,
html[data-theme="dark"] #navBreadCrumb .breadcrumb li {
    color: rgba(212, 175, 55, 0.55) !important;
}

/* Current page (last crumb) → bright gold, serif */
.theme-dark #navBreadCrumb .breadcrumb li:last-child,
html[data-theme="dark"] #navBreadCrumb .breadcrumb li:last-child {
    color: var(--lux-gold, #D4AF37) !important;
    font-weight: 600;
}

/* Hover → white glow */
.theme-dark #navBreadCrumb .breadcrumb li a:hover,
html[data-theme="dark"] #navBreadCrumb .breadcrumb li a:hover {
    color: #fff !important;
    text-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

/* Separator bar → dimmed gold */
.theme-dark .breadcrumb-separator,
html[data-theme="dark"] .breadcrumb-separator {
    background-color: rgba(212, 175, 55, 0.3) !important;
}
