/* /Layout/Footer.razor.rz.scp.css */
.footer-root[b-e3h9w7spg3] {
    background-color: #8d0801;
    color: white;
    margin-top: auto;
}

.footer-subtitle[b-e3h9w7spg3] {
    color: #f5b841;
    font-size: 0.85rem;
}

.footer-logo[b-e3h9w7spg3] {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-logo:hover[b-e3h9w7spg3] {
    transform: scale(1.1);
}

.footer-muted[b-e3h9w7spg3] {
    color: rgba(255, 255, 255, 0.7);
}

.footer-list[b-e3h9w7spg3] {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-link[b-e3h9w7spg3] {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover[b-e3h9w7spg3],
.footer-link:focus[b-e3h9w7spg3] {
    color: #f5b841;
    text-decoration: underline;
    outline-offset: 3px;
}

.footer-icon[b-e3h9w7spg3] {
    color: white;
    width: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.footer-address[b-e3h9w7spg3] {
    color: rgba(255, 255, 255, 0.75);
}

.footer-social[b-e3h9w7spg3] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: white;
    color: #8d0801;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-social:hover[b-e3h9w7spg3],
.footer-social:focus[b-e3h9w7spg3] {
    background-color: #f5b841;
    color: #8d0801;
    transform: scale(1.1);
    outline-offset: 3px;
}

.footer-divider[b-e3h9w7spg3] {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}
/* /Layout/MainLayout.razor.rz.scp.css */
.page[b-rdagu1bgnr] {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--flag-black);
    min-height: 100vh;
}

main[b-rdagu1bgnr] {
    flex: 1;
}

/* Smooth transitions for content */
.content[b-rdagu1bgnr] {
    transition: opacity 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .page[b-rdagu1bgnr] {
        flex-direction: column;
    }
}

@media (min-width: 641px) {
    .page[b-rdagu1bgnr] {
        flex-direction: column;
    }
}
/* /Layout/NavMenu.razor.rz.scp.css */
/* Navbar layout & colors */

#navbar[b-m6d1r47qwz] {
    background: white !important;
    border-bottom: 2px solid #8d0801;
    padding: 1rem 1.5rem;
}

.navbar-brand[b-m6d1r47qwz] {
    margin-right: auto;
}

.navbar-brand-title[b-m6d1r47qwz] {
    font-size: 1.3rem;
    line-height: 1;
    color: #8d0801;
}

.navbar-brand-subtitle[b-m6d1r47qwz] {
    font-size: 0.85rem;
    line-height: 1;
    color: #8d0801;
}

/* Logo */

.navbar-logo[b-m6d1r47qwz] {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-logo:hover[b-m6d1r47qwz] {
    transform: scale(1.1);
}

/* Hamburger button */

#mobile-menu-button[b-m6d1r47qwz] {
    color: #8d0801;
}

#mobile-menu-button .navbar-toggler-icon[b-m6d1r47qwz] {
    filter: invert(9%) sepia(90%) saturate(5000%) hue-rotate(355deg) brightness(90%);
}

/* Navigation items */

.nav-item[b-m6d1r47qwz] {
    transition: all 0.3s ease;
}

.nav-link[b-m6d1r47qwz] {
    transition: all 0.3s ease;
    border-radius: 0.375rem;
    position: relative;
    font-size: 1.05rem;
    padding: 0.6rem 1rem !important;
    color: #8d0801;
}

.nav-link:hover[b-m6d1r47qwz] {
    background-color: rgba(141, 8, 1, 0.08);
    transform: translateY(-2px);
}

/* Mobile menu animations */

@media (max-width: 1024px) {
    #mobile-menu[b-m6d1r47qwz] {
        animation: slideDown-b-m6d1r47qwz 0.3s ease-out;
    }
}

@keyframes slideDown-b-m6d1r47qwz {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
