body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600 !important;
    font-style: normal;
}

.lead {
    font-weight: 400 !important;
}

.gradient-background {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(#133c1e,rgb(10, 39, 18));
    overflow: hidden;
}

.gradient-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: url('../img/bg-mobile-colour.webp') no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    z-index: 1; /* Ensures the image is on top */
    mix-blend-mode: luminosity; /* Apply the luminosity blend mode */
    opacity: 0.3; /* Optional: Adjust the opacity of the image */
    pointer-events: none;
}

.container {
    padding: 0 15px; /* Padding for mobile devices */
    z-index: 10; /* Ensures the image is on top */
}

a {
    color: #fff;
    text-decoration: none;
}

.btn-primary {
    background: #fff8d5;
    color: rgb(10, 39, 18);
    padding: 10px 20px;
    border: 2px solid rgb(10, 39, 18);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600 !important;
}

.btn-primary:hover {
    background: #fff;
    color: rgb(10, 39, 18);
    padding: 10px 20px;
    border: 2px solid rgb(10, 39, 18);
    border-radius: 5px;
    text-decoration: none;
}

.btn-primary:active {
    background: #fff !important;
    color: rgb(10, 39, 18) !important;
    padding: 10px 20px;
    border: 2px solid rgb(10, 39, 18) !important;
    border-radius: 5px;
    text-decoration: none;
}

.btn-primary:focus {
    box-shadow: none;
}

/* Large devices (tablets, 992px and up) */
@media (min-width: 992px) {
    .gradient-background::before {
        background: url('../img/bg-desktop-colour.webp') no-repeat center center;
        background-size: cover;
    }
}