/* Custom styles for Bonterra website */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

#wrap {
    flex: 1;
}

/* Adjust spacing for fixed top navbar */
body>#wrap {
    padding-top: 60px;
}

/* Hero images */

.backing {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}

.content-block {
    background-color: rgba(255, 255, 255, 0.66);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

footer small a {
    margin: 0 8px;
}

.home_bg {
    background-image: url("../images/mix.jpg");
    background-position: center;
    background-size: cover;
}

.agro_bg {
    background-image: url("../images/seeds.jpg");
    background-position: center;
    background-size: cover;
}

.food_bg {
    background-image: url("../images/cheese.jpg");
    background-position: center;
    background-size: cover;
}

.panel-home {
    background: rgba(34, 119, 34, 0.7);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.accordion-button {
    background-color: rgba(34, 119, 34, 0.33);
}

.panel-home .btn-primary,
.accordion-button:not(.collapsed),
.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    background-color: #272;
    border-color: #151;
}

.panel-payments {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    background: #fff;
}

.navbar-brand img {
    height: 45px;
    width: auto;
}

.whatsapp-btn img {
    height: 30px;
}

/* Show dropdown options on small screens */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        display: block !important;
        border: none;
        box-shadow: none;
        background-color: transparent;
        padding-left: 1rem;
    }

    .navbar-nav .dropdown-toggle {
        pointer-events: none;
    }

    .navbar-nav .dropdown-toggle::after {
        display: none !important;
    }
}