/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-0hts7ksm6d] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-0hts7ksm6d] { flex: 1; }

/* Banner */
.site-banner[b-0hts7ksm6d] {
    background: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(32,32,32,.9) 100%);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0.5rem 0;
}

.site-favicon[b-0hts7ksm6d] { 
    width: 68px; 
    height: 68px; 
    border-radius: 50%; 
    margin: .5rem .75rem .5rem 0; 
}

.site-title[b-0hts7ksm6d] { 
    margin-top: 0; 
    margin-left: .75rem; 
    color: #fff;
    font-size: 68px; /* match logo height */
    line-height: 68px;
    font-weight: 900;
    letter-spacing: .5px;
    text-decoration: none;
    font-family: 'Noto Serif JP', Georgia, 'Times New Roman', serif;
}

.site-contact[b-0hts7ksm6d] { 
    margin-top: .25rem; 
}

/* Prevent phone number from breaking */
.site-contact[b-0hts7ksm6d] {
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* Mobile responsive adjustments */
@media (max-width: 767.98px) {
    .site-banner .container[b-0hts7ksm6d] {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .site-favicon[b-0hts7ksm6d] {
        width: 48px;
        height: 48px;
        margin: .25rem .5rem .25rem 0;
    }
    
    .site-title[b-0hts7ksm6d] {
        font-size: 32px;
        line-height: 32px;
        margin-left: .5rem;
    }
    
    .site-contact[b-0hts7ksm6d] {
        font-size: 0.75rem;
        margin-top: .125rem;
        word-break: keep-all; /* Prevent breaking at hyphens */
        overflow-wrap: break-word; /* Allow breaking only at word boundaries */
    }
}

@media (max-width: 575.98px) {
    .site-banner .container[b-0hts7ksm6d] {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .site-favicon[b-0hts7ksm6d] {
        width: 40px;
        height: 40px;
        margin: .25rem .375rem .25rem 0;
    }
    
    .site-title[b-0hts7ksm6d] {
        font-size: 28px;
        line-height: 28px;
        margin-left: .375rem;
    }
    
    .site-contact[b-0hts7ksm6d] {
        font-size: 0.7rem;
        margin-top: .125rem;
        word-break: keep-all; /* Prevent breaking at hyphens */
        overflow-wrap: break-word; /* Allow breaking only at word boundaries */
    }
}

/* Top navbar under banner */
.site-navbar[b-0hts7ksm6d] {
    background: #2f2f2f; /* lighter grey for better contrast with page bg */
    border-bottom: 1px solid rgba(255,255,255,0.08);
    /* Sync Bootstrap CSS variables between nav and dropdown */
    --bs-nav-link-color: #f1f1f1;
    --bs-nav-link-hover-color: #ffffff;
    --bs-dropdown-link-color: var(--bs-nav-link-color);
    --bs-dropdown-link-hover-color: var(--bs-nav-link-hover-color);
}

/* Content spacing */
@media (min-width: 641px) {
    article.content[b-0hts7ksm6d] {
        max-width: 1100px;
        margin: 1rem auto 2rem auto;
    }
}

#blazor-error-ui[b-0hts7ksm6d] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-0hts7ksm6d] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
/* Horizontal navbar overrides */
/* Ensure uniform behavior for all top-level links */
.navbar-nav .nav-link[b-lvhhjfr58g] { }
/* Make active/open states look like the rest of the items */
.navbar-nav .nav-link.active[b-lvhhjfr58g] { color: #f1f1f1 !important; background: transparent; border-radius: .25rem; }
.navbar-nav .nav-item.dropdown.show > .nav-link[b-lvhhjfr58g] { color: #f1f1f1 !important; background: transparent; }
/* Override Bootstrap's navbar-dark rule that forces white on show/focus/active */
.navbar-dark .navbar-nav .nav-link.show[b-lvhhjfr58g],
.navbar-dark .navbar-nav .nav-link:focus[b-lvhhjfr58g],
.navbar-dark .navbar-nav .nav-link:active[b-lvhhjfr58g],
.navbar-dark .navbar-nav .nav-link[aria-expanded="true"][b-lvhhjfr58g] {
    color: #f1f1f1 !important;
    background: transparent !important;
}
/* Hover/focus: only lighten text, no red background */
.navbar-nav .nav-link:hover[b-lvhhjfr58g], .navbar-nav .nav-link:focus[b-lvhhjfr58g] { color: #ffffff !important; background: transparent; border-radius: .25rem; }
.navbar-nav .dropdown-toggle[b-lvhhjfr58g]::after { filter: none; border-top-color: currentColor; }

/* Dropdown menu contrast and readability */
.dropdown-menu[b-lvhhjfr58g] {
    background: #2f2f2f;
    border-color: rgba(255,255,255,0.12);
    /* Force Bootstrap dropdown link vars to light tones */
    --bs-dropdown-link-color: #ffffff;
    --bs-dropdown-link-hover-color: #ffffff;
    --bs-dropdown-link-active-color: #ffffff;
}
.dropdown-item[b-lvhhjfr58g] { color: #ffffff !important; font-weight: 500; }
.dropdown-item:visited[b-lvhhjfr58g] { color: #ffffff !important; }
.dropdown-item:hover[b-lvhhjfr58g], .dropdown-item:focus[b-lvhhjfr58g] { background: var(--dojo-red); color: #ffffff; }
.dropdown-item.active[b-lvhhjfr58g], .dropdown-item.active:focus[b-lvhhjfr58g], .dropdown-item.active:hover[b-lvhhjfr58g] { background: var(--dojo-red); color: #ffffff; }
/* /Components/Pages/Home.razor.rz.scp.css */
.card[b-mi9s40urti] { border: none; }
.card .card-body[b-mi9s40urti] { padding: 1.5rem; }
.shadow[b-mi9s40urti] { box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important; }
.shadow-sm[b-mi9s40urti] { box-shadow: 0 6px 18px rgba(0,0,0,0.06) !important; }
.rounded[b-mi9s40urti] { border-radius: 0.5rem !important; }

@media (max-width: 640px) {
    .hero[b-mi9s40urti] { min-height: 50vh; }
}

/* Hero background image overlay tweaks if needed */

/* /Components/Pages/LocationSchedule.razor.rz.scp.css */
.schedule-card[b-vnu1l47rvl] {
	background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.92));
	border: 1px solid rgba(0,0,0,0.06);
}
.class-badge[b-vnu1l47rvl] {
	display: inline-block;
	padding: .25rem .5rem;
	border-radius: 999px;
	font-size: .75rem;
	font-weight: 600;
}
.class-badge.kids[b-vnu1l47rvl] { background: var(--dojo-red); color: #fff; }
.class-badge.adults[b-vnu1l47rvl] { background: #0d6efd; color: #fff; }
.time-slot .time[b-vnu1l47rvl] { font-weight: 600; color: var(--dojo-ink); }
.time-slot .range[b-vnu1l47rvl] { color: #555; }
.contact-info .contact-item a[b-vnu1l47rvl] { color: var(--dojo-red); text-decoration: none; }
.contact-info .contact-item a:hover[b-vnu1l47rvl] { text-decoration: underline; }

