/* _content/MidlandMerryLights/Components/Layout/MainLayout.razor.rz.scp.css */
/*Main Layout CSS */

:root[b-w7djop7n3x] {
    --Red: #ed1c24;
    --Green: #00a14b;
    --Blue: #1c75bc;
    --Yellow: #ffde17;
}

.page[b-w7djop7n3x] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-w7djop7n3x] {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}
@media (min-width: 641px) {
    .page[b-w7djop7n3x] {
        flex-direction: row;
    }

}

#blazor-error-ui[b-w7djop7n3x] {
    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[b-w7djop7n3x] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

footer[b-w7djop7n3x] {
    position: relative;
    background-color: var(--Green) !important;
    color: white;
    padding: 20px 0;
    width: 100%;
    text-align: center;
    z-index: 1;
}
    footer .footer-inner[b-w7djop7n3x] {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    footer a[b-w7djop7n3x] {
        color: white;
        text-decoration: none;
        margin: 0 10px;
        font-size: 1.1rem;
        transition: color 0.3s ease-in-out;
    }
        footer a:hover[b-w7djop7n3x],
        footer a:focus[b-w7djop7n3x] {
            color: var(--Yellow);
            outline: none;
        }

    footer i[b-w7djop7n3x] {
        margin-right: 8px;
        font-size: 20px;
    }

        footer i.fa-facebook[b-w7djop7n3x] {
            font-size: 20px;
            max-width: 25px;
            max-height: 25px;
        }

        footer i.fa-twitter[b-w7djop7n3x] {
            font-size: 22px;
            max-width: 28px;
            max-height: 28px;
        }

        footer i.fa-instagram[b-w7djop7n3x] {
            font-size: 24px;
            max-width: 30px;
            max-height: 30px;
        }

.translate-wrapper[b-w7djop7n3x] {
    position: absolute;
    bottom: 10px;
    right: 20px;
    z-index: 5;
    padding: 6px 10px;
    font-size: 14px;
}
@media (max-width: 768px) {

    .translate-wrapper[b-w7djop7n3x] {
        right: 10px;
        bottom: 10px;
        transform: scale(0.9);
    }
}
/* _content/MidlandMerryLights/Components/Layout/NavMenu.razor.rz.scp.css */
:root[b-pbkpjti6w3] {
    --Red: #ed1c24;
    --Green: #00a14b;
    --Blue: #1c75bc;
    --Yellow: #ffde17;
    --Background-Color: white;
    --font-color: #3b2f2f;
}

/*Navigation Styling*/
.navbar[b-pbkpjti6w3] {
    background-color: var(--Background-Color);
    position: relative;
    z-index: 10;
    border-bottom: 3px solid var(--Green);
}

.nav-menu[b-pbkpjti6w3] {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
    .nav-menu ul li a[b-pbkpjti6w3] {
        font-size: 40px !important;
        transition: all 0.1s ease-in;
    }
.nav-grid[b-pbkpjti6w3] {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.nav-item[b-pbkpjti6w3] {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.nav-link[b-pbkpjti6w3] {
    font-size: 20px;
    color: var(--font-color);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    padding: 8px 12px;
    border-radius: 12px;
    background: transparent;
    text-align: center;
}
    .nav-link:hover[b-pbkpjti6w3],
    .nav-link.active[b-pbkpjti6w3] {
        border-bottom: 3px solid var(--Yellow);
        transition: border 0.3s ease;
        background: var(--Green);
        color: white;
        transform: scale(1.05);
        border-radius: 20px 0 20px 0;
    }
    .nav-link:focus[b-pbkpjti6w3] {
        outline: 2px solid var(--Blue);
        outline-offset: 3px;
        background: var(--Green);
        color: white;
    }

.logo-area[b-pbkpjti6w3] {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
}

    .logo-area img[b-pbkpjti6w3] {
        max-width: 180px;
        height: auto;
    }
.navbar-brand img[b-pbkpjti6w3] {
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .nav-grid[b-pbkpjti6w3] {
        grid-template-columns: 1fr;
        row-gap: 10px;
        justify-content: center;
    }

    .logo-area[b-pbkpjti6w3] {
        grid-column: 1;
        justify-content: center;
    }

    .nav-link[b-pbkpjti6w3] {
        font-size: 16px;
        padding: 10px 15px;
        max-width: 280px;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-grid[b-pbkpjti6w3] {
        row-gap: 12px;
    }

    .logo-area[b-pbkpjti6w3] {
        grid-column: 1;
    }

    .nav-link[b-pbkpjti6w3] {
        font-size: 14px;
        width: 100%;
        text-align: center;
        max-width: 220px;
        text-align: center;
    }
}
