/* /Layout/MainLayout.razor.rz.scp.css */
/* ===== OWPS MODERN LAYOUT ===== */

.owps-layout[b-t2l5p1sl8h] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ===== TOP BAR ===== */
.top-bar[b-t2l5p1sl8h] {
    background-color: #f1f2f2;
    color: #1b211a;
    padding: 0;
    font-size: 0.75rem;
    height: 36px;
}

.top-bar-container[b-t2l5p1sl8h] {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
    max-width: 100%;
}

.top-bar-links[b-t2l5p1sl8h] {
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
    background-color: #f1f2f2;
}

.top-bar-link[b-t2l5p1sl8h] {
    color: #1b211a;
    background-color: #f1f2f2;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: -0.3px;
    padding: 0 1.5rem;
    height: 100%;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
}

.top-bar-link:first-child[b-t2l5p1sl8h] {
    padding-left: 2rem;
}

.top-bar-link:hover[b-t2l5p1sl8h] {
    background-color: #e6e7e8;
    color: #1b211a;
}

.top-bar-email[b-t2l5p1sl8h] {
    background-color: #f1f2f2;
    color: #1b211a;
    padding-left: 2rem;
    padding-right: 2rem;
}

.top-bar-email:hover[b-t2l5p1sl8h] {
    background-color: #e6e7e8;
    color: #1b211a;
}

.top-bar-buttons[b-t2l5p1sl8h] {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.btn-yearbook[b-t2l5p1sl8h] {
    background-color: #1b211a;
    color: #f1f2f2;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: -0.3px;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-yearbook:hover[b-t2l5p1sl8h] {
    background-color: #2a322a;
    color: #f1f2f2;
}

.btn-apply[b-t2l5p1sl8h] {
    background-color: #ffbc00;
    color: #1b211a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: -0.4px;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-apply:hover[b-t2l5p1sl8h] {
    background-color: #e6a900;
    color: #1b211a;
}

/* ===== MAIN HEADER ===== */
.main-header[b-t2l5p1sl8h] {
    background-color: #32384c;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 65px;
}

.header-container[b-t2l5p1sl8h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
}

.header-logo[b-t2l5p1sl8h] {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img[b-t2l5p1sl8h] {
    height: 50px;
    width: auto;
}

/* ===== MAIN NAVIGATION ===== */
.main-nav[b-t2l5p1sl8h] {
    gap: 0;
    height: 100%;
}

/* Use ::deep to style NavLink child elements */
[b-t2l5p1sl8h] .nav-link-main {
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 0 1.5rem;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

[b-t2l5p1sl8h] .nav-link-main:hover,
[b-t2l5p1sl8h] .nav-link-main.active {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1);
}

[b-t2l5p1sl8h] .nav-link-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #ffbc00;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

[b-t2l5p1sl8h] .nav-link-main:hover::after,
[b-t2l5p1sl8h] .nav-link-main.active::after {
    width: 80%;
}

/* ===== SEARCH INPUT IN NAV ===== */
.nav-search[b-t2l5p1sl8h] {
    margin-left: 2rem;
}

.search-input-nav[b-t2l5p1sl8h] {
    background: linear-gradient(to top, #E6E7E8, #A7A9AC);
    border: none;
    border-radius: 25px;
    padding: 0.1rem 1.5rem;
    color: #32384c;
    font-size: 0.85rem;
    width: 240px;
    transition: all 0.3s ease;
    text-align: center;
}

.search-input-nav[b-t2l5p1sl8h]::placeholder {
    color: #5a5c60;
    font-weight: 400;
    letter-spacing: 1px;
    text-align: center;
}

.search-input-nav:focus[b-t2l5p1sl8h] {
    outline: none;
    background: linear-gradient(to top, #E6E7E8, #A7A9AC);
    width: 280px;
}

/* Mobile Navigation Toggle - Animated Hamburger */
.hamburger-btn[b-t2l5p1sl8h] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
    transition: all 0.3s ease;
}

.hamburger-line[b-t2l5p1sl8h] {
    display: block;
    width: 26px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Middle line - shorter but centered */
.hamburger-line:nth-child(2)[b-t2l5p1sl8h] {
    width: 20px;
}

/* Hover state */
.hamburger-btn:hover .hamburger-line[b-t2l5p1sl8h] {
    background-color: #ffbc00;
}

.hamburger-btn:hover .hamburger-line:nth-child(2)[b-t2l5p1sl8h] {
    width: 26px;
}

/* Active/Open state - transforms to X */
.hamburger-btn.active .hamburger-line:nth-child(1)[b-t2l5p1sl8h] {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2)[b-t2l5p1sl8h] {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-btn.active .hamburger-line:nth-child(3)[b-t2l5p1sl8h] {
    transform: translateY(-8px) rotate(-45deg);
}

.hamburger-btn.active .hamburger-line[b-t2l5p1sl8h] {
    background-color: #ffbc00;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay[b-t2l5p1sl8h] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-nav-overlay.show[b-t2l5p1sl8h] {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Drawer */
.mobile-nav[b-t2l5p1sl8h] {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: #32384c;
    z-index: 1050;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-nav.show[b-t2l5p1sl8h] {
    right: 0;
}

.mobile-nav-header[b-t2l5p1sl8h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background-color: #282d3e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-title[b-t2l5p1sl8h] {
    color: #f1f2f2;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mobile-nav-close[b-t2l5p1sl8h] {
    background: none;
    border: none;
    color: #a7a9ac;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.mobile-nav-close:hover[b-t2l5p1sl8h] {
    color: #ffbc00;
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-links[b-t2l5p1sl8h] {
    flex: 1;
    padding: 1.5rem 0;
    overflow-y: auto;
}

/* Use ::deep for NavLink components */
[b-t2l5p1sl8h] .mobile-nav-link {
    display: block;
    color: #f1f2f2 !important;
    text-decoration: none !important;
    padding: 1rem 1.75rem;
    font-family: 'Source Sans Pro', 'Myriad Pro', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

[b-t2l5p1sl8h] .mobile-nav-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffbc00 !important;
    border-left-color: #ffbc00;
}

[b-t2l5p1sl8h] .mobile-nav-link.active {
    background-color: rgba(255, 188, 0, 0.1);
    color: #ffbc00 !important;
    border-left-color: #ffbc00;
}

.mobile-nav-footer[b-t2l5p1sl8h] {
    padding: 1.5rem;
    background-color: #282d3e;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-apply-now[b-t2l5p1sl8h] {
    background-color: #ffbc00;
    color: #1b211a;
    border: none;
    padding: 0.875rem 1.5rem;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.btn-apply-now:hover[b-t2l5p1sl8h] {
    background-color: #e6a900;
    color: #1b211a;
    transform: translateY(-1px);
}

.btn-download-yearbook[b-t2l5p1sl8h] {
    background-color: transparent;
    color: #f1f2f2;
    border: 1px solid #a7a9ac;
    padding: 0.875rem 1.5rem;
    font-family: 'Century Gothic', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.btn-download-yearbook:hover[b-t2l5p1sl8h] {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #f1f2f2;
    color: #ffffff;
}

/* Main Content */
.main-content[b-t2l5p1sl8h] {
    flex: 1;
}

/* Footer */
.owps-footer[b-t2l5p1sl8h] {
    background-color: #1a252f;
    color: #ffffff;
}

.footer-top[b-t2l5p1sl8h] {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-heading[b-t2l5p1sl8h] {
    color: #f0ddb5;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-links[b-t2l5p1sl8h] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li[b-t2l5p1sl8h] {
    margin-bottom: 0.75rem;
}

.footer-links a[b-t2l5p1sl8h] {
    color: #d1d3d4;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover[b-t2l5p1sl8h] {
    color: #f0ddb5;
}

.footer-contact[b-t2l5p1sl8h] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li[b-t2l5p1sl8h] {
    color: #d1d3d4;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.footer-social[b-t2l5p1sl8h] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link[b-t2l5p1sl8h] {
    color: #d1d3d4;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover[b-t2l5p1sl8h] {
    color: #f0ddb5;
}

.footer-bottom[b-t2l5p1sl8h] {
    padding: 0.75rem 0;
    background-color: #f1f2f2;
}


.footer-bottom p[b-t2l5p1sl8h] {
    color: #32384c;
    font-size: 0.85rem;
}

.footer-bottom a[b-t2l5p1sl8h] {
    color: #32384c;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover[b-t2l5p1sl8h] {
    text-decoration: underline;
}

.footer-brand[b-t2l5p1sl8h] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-wide[b-t2l5p1sl8h] {
    height: 80px;
    object-fit: contain;
}

.footer-school-name[b-t2l5p1sl8h] {
    color: #32384c;
    font-size: 0.85rem;
    line-height: 1.2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199.98px) {
    .top-bar-link[b-t2l5p1sl8h] {
        padding: 0 0.75rem;
        font-size: 0.65rem;
    }
    
    .nav-link-main[b-t2l5p1sl8h] {
        padding: 0 0.75rem;
        font-size: 0.65rem;
    }
}

@media (max-width: 991.98px) {
    .top-bar[b-t2l5p1sl8h] {
        display: none;
    }
    
    .main-header[b-t2l5p1sl8h] {
        height: auto;
        padding: 0.75rem 1rem;
    }
    
    .header-container[b-t2l5p1sl8h] {
        padding: 0;
    }
}

@media (max-width: 767.98px) {
    .btn-yearbook[b-t2l5p1sl8h] {
        font-size: 0.6rem;
        padding: 0.5rem 0.75rem;
    }
    
    .btn-apply[b-t2l5p1sl8h] {
        font-size: 0.6rem;
        padding: 0.5rem 0.75rem;
    }
    
    .logo-img[b-t2l5p1sl8h] {
        height: 40px;
    }
    
    .footer-top[b-t2l5p1sl8h] {
        padding: 2rem 0 1rem;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-8y6xi7ck21] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-8y6xi7ck21] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-8y6xi7ck21] {
    font-size: 1.1rem;
}

.bi[b-8y6xi7ck21] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-8y6xi7ck21] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-8y6xi7ck21] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-8y6xi7ck21] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-8y6xi7ck21] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-8y6xi7ck21] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-8y6xi7ck21] {
        padding-bottom: 1rem;
    }

    .nav-item[b-8y6xi7ck21]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-8y6xi7ck21]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-8y6xi7ck21]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-8y6xi7ck21] {
        display: none;
    }

    .collapse[b-8y6xi7ck21] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }

    .nav-scrollable[b-8y6xi7ck21] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
