body {
    color: #5b3b19;
}
a {
    text-decoration: none;
    color: #2d1a05;
}
.card {
    color: #2d1a05;
}
.alltext-white a {
    color: white !important;
}
.card-img-top {
    width: 100%;
    height: 15vw;
    object-fit: cover;
}
.card-img-side {
    width: 100%;
    max-height: 15vw;
    object-fit: cover;
}
.fit-center-img {
    height: 20vh;
    text-align: center;
    margin: auto;
    object-fit: cover;
}
@media (max-width : 450px) {
    .card-img-side {
        max-height: 50vw;
    }
}
.counter-img {
    height: 100px;
    width: 100px !important;
    text-align: center;
    margin: auto;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #4A2B0A;
    --bs-btn-border-color: #4A2B0A;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #5b3b19;
    --bs-btn-hover-border-color: #5b3b19;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #2d1a05;
    --bs-btn-active-border-color: #2d1a05;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #a08364;
    --bs-btn-disabled-border-color: #a08364
}
.bg-first {
    background-color: #4A2B0A !important;
}
.bg-second {
    background-color: #D4AF37 !important;
}
.bg-bright {
    background-color: #FDF6E3 !important;
}
.bg-brighter {
    background-color: #f6f4f0 !important;
}
.bg-third {
    background-color: #F2C849 !important;
}
.bg-dark {
    background-color: #333333 !important;
}
.bgfirst {
    background-color: #ffffff !important;
}
.bgsecond {
    background-color: #ffffff !important;
}
.nav-link {
    font-size: calc(0.8em * 1);
}
.logo-text {
    font-size: large;
}
.textoverimg-bottom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    background-color: #0000006e;
    color: white;
}
.article img {
    max-width: 100% !important;
    padding: 5px;
}
.flex-wrapper {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    justify-content: space-between;
}
nav a:hover {
    background-color: #00000034;
    border-radius: 5px;
}
/* Fisrt Tier Dropdown */
nav ul ul li {
    min-width: 200px;
}
.navbar-nav .dropdown-menu {
    left: 0;
    right: auto;
}
.navbar-toggler {
    position: absolute;
    top: 0;
    left: 0;
}
/* Styling the Banner */
.introbanner {
    position: relative;
    width: 100%;
    height: 60vh;
    /* Adjust height as needed */
    overflow: hidden;
}
.introbanner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image scales properly */
    object-position: center top;
    /* Centers the image */
}
.introbanner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    padding: 10px 20px;
    border-radius: 5px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .banner {
        height: auto;
        /* Smaller height for mobile */
    }
    .banner-text h1 {
        font-size: 1.5rem;
    }
    .banner img {
        object-fit: contain;
    }
    .banner-text p {
        font-size: 1rem;
    }
}
/* Container for the menu buttons */
.menu-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}
/* Style for the menu buttons */
.menu-button {
    position: relative;
}
.menu-button button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    width: 100px;
}
.menu-button button:hover {
    background-color: #45a049;
}
/* Style for the sub-menu */
.sub-menu {
    display: none;
    position: absolute;
    bottom: 80%;
    left: 50px;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}
.sub-menu a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}
.sub-menu a:hover {
    background-color: #f1f1f1;
}
/* Show the sub-menu when the button is hovered */
.menu-button:hover .sub-menu {
    display: block;
}
.mbtn .btntxt {
    display: inline; /* Show text by default */
}
/* Hide text on mobile devices */
@media (max-width: 767.98px) {
    .mbtn .btntxt {
        display: none; /* Hide text on screens smaller than 768px */
    }
    .mbtn {
        width: auto !important;
    }
}
.navactive {
    background-color: #84848434;
    font-weight: bolder;
    color: #372018 !important;
    border-radius: 5px;
}
.imgback1 {
    background-image: url(../imgs/backsection1.png);
    background-size: cover;
}
.imgback2 {
    background-image: url(../imgs/backsection1.png);
    background-size: cover;
}