html {
    background-image: url('../images/Heavy-Blur.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
}
/* Extracted from master.html */
:root {
    --primary-color: #308d46;
    --navbar-width: 175px;
}
body {
    display: grid;
    margin-top: 0;
    grid-template-rows: 1fr;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background-image: url('../images/Heavy-Blur.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.sidebar-nav {
    grid-column: 1;
    grid-row: 1;
    min-height: calc(100vh - 3.75rem); /* Adjusted to account for footer height */
    /* background-color removed to allow background image to show through */
    background-image: url(../images/Heavy-Blur.jpg);
    background-repeat: no-repeat;
    min-height: 100vh; /* Ensures sidebar fills full height */
    background-size: cover;
    background-attachment: fixed;
    padding: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease;
    margin-top: 0;
}
.sidebar-nav.hidden {
    transform: translateX(-175px);
}
.sidebar-nav .navbar-brand {
    padding: 15px;
    font-size: 13px;
    border-bottom: 1px solid #555;
    display: block;
    word-break: break-word;
    line-height: 1.3;
}
.sidebar-nav .navbar-nav {
    flex-direction: column;
    width: 100%;
}
.sidebar-nav .nav-link {
    padding: 10px 15px;
    border-bottom: 1px solid #444;
    color: #fff !important;
    transition: all 0.3s ease;
    font-size: 12px;
    word-break: break-word;
    line-height: 1.2;
    background-image: url(../images/background.png);
    background-repeat: repeat;
}
.sidebar-nav .nav-link:hover {
    background-color: var(--primary-color);
}
.sidebar-nav .dropdown-menu {
    /* background-color removed to allow background image to show through */
    background-image: url(../images/Heavy-Blur.jpg);    
    border: none;
    position: static;
    float: none;
    width: 100%;
    box-shadow: none;
    margin: 0;
    padding: 0;
}
.sidebar-nav .dropdown-menu .dropdown-item {
    color: #ccc;
    padding: 8px 15px;
    font-size: 11px;
    word-break: break-word;
}
.sidebar-nav .dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.content-wrapper {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: grid-column 0.3s ease;
    padding: 0;
    margin: 0;
}
.content-wrapper.full-width {
    grid-column: 1 / -1;
}
.nav-toggle-btn {
    display: none;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 1001;
    background-color: #8b6f47;
    border: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}
.nav-toggle-btn:hover {
    background-color: #6b5a38;
}
.main-content {
    flex: 1 1 auto;
    overflow-y: auto;
    background-image: url(../images/Heavy-Blur.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    padding: 0;
    margin: 0;
}
.nav-brand-color {
    color: var(--primary-color) !important;
}
video {
    width: 85% !important;
    height: auto !important;
}
.img-responsive {
    max-width: 100%;
    height: auto;
}
.body-bg {
    background-image: url(../images/Heavy-Blur.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
footer {
    padding: 1.125rem 0 !important;
    margin-top: 3.75rem;
    font-size: 0.9em;
    padding-left: 25px;
    background-image: url(../images/Heavy-Blur.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
footer img {
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 0.225rem;
}
footer p {
    margin: 0;
    font-size:1.25rem; font-weight:600; 
}
@media (max-width: 768px) {
    body {
        grid-template-columns: 1fr;
    }
    .sidebar-nav {
        grid-column: 1;
        position: fixed;
        width: 175px;
        height: 100vh;
    }
    .sidebar-nav.hidden {
        display: none !important;
        transform: none !important;
    }
    .sidebar-nav .nav-link {
        font-size: 13px;
        padding: 12px 15px;
    }
    .sidebar-nav .navbar-brand {
        font-size: 14px;
        padding: 15px;
    }
    .content-wrapper {
        grid-column: 1;
    }
    .nav-toggle-btn {
        display: block;
    }
}
