* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.nav-link-hover:hover {
    background-color: rgb(227, 218, 183);
}

.navlink-active {
    background-color: rgb(227, 218, 183);
}

.text-color {
    color: #da9311;
}

.offcanvas-sm {
  width: 260px !important;
}
.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}


.primary-color {
    color: #feae19;
}

.seconday-color {
    color: #FCF2DC;
}

.primary-bgcolor {
    background-color: #feae19;
}

.seconday-bgcolor {
    background-color: #FCF2DC;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}


/* media query */
@media (max-width: 768px) {
 
    /* Banner image responsive height */
    div > img {
        height: auto;
    }
}


/* Fake Google reCAPTCHA */
.fake-recaptcha {
    width: 300px;
    height: 78px;
    border: 1px solid #d3d3d3;
    border-radius: 3px;
    display: flex;
    align-items: center;
    padding: 10px;
    background: #f9f9f9;
    position: relative;
    margin-top: 15px;
    gap: 10px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fake-recaptcha input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.fake-recaptcha label {
    font-size: 15px;
    color: #444;
}

.recaptcha-logo {
    margin-left: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 10px;
    color: #555;
}

.recaptcha-logo img {
    width: 35px;
    height: 35px;
}

.recaptcha-text {
    text-align: center;
    font-size: 10px;
}

.recaptcha-text a {
    text-decoration: none;
    color: #555;
}

.gallery-img {
    width: 100%;
    height: 200px;   
    object-fit: cover;
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background-color: #feae19;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    display: none; /* hidden by default */
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
    transform: translateY(-3px);
}

.border-class {
    border: 1px solid black;
}

.dark-text {
    color: #222222;
}

/* Side collapse menu (mobile only) */
@media (max-width: 991px) {
    .side-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 260px;
        height: 100vh;
        background-color: #feae19;
        padding-top: 80px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1050;
    }

    .side-collapse.show {
        transform: translateX(0);
    }
}

@media (min-width: 992px) {
    .side-collapse {
        position: static;
        transform: none;
        height: auto;
        background: transparent;
        padding-top: 0;
    }
}

/* Backdrop */
.menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

/* Side menu */
@media (max-width: 991px) {
    .side-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: 260px;
        height: 100vh;
        background-color: #feae19;
        padding-top: 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1050;
    }

    .side-collapse.show {
        transform: translateX(0);
    }

    .side-collapse.show ~ .menu-backdrop {
        display: block;
    }
}

/* Desktop reset */
@media (min-width: 992px) {
    .side-collapse {
        position: static;
        transform: none;
        height: auto;
        background: transparent;
    }

    .menu-backdrop {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .navbar-nav {
        align-items: center;
    }

        .navbar-nav .nav-item {
            display: flex;
            align-items: center;
        }

            .navbar-nav .nav-item:not(:last-child)::after {
                content: "|";
                color: white;
                margin: 0 12px;
                opacity: 0.8;
            }
}