:root {
    --main-green: #14532d;
    --background-color: #79b473;
    --text-light: #d4edda;
    --box-shadow: 0 4px 6px rgba(0, 0, 0);
}

/* Call now call to action in navigation */
.call-now {
    background-color: #ffffff;
    color: #14532d !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); */
    box-shadow: var(--box-shadow);
}

.call-now a {
    color: var(--main-green) !important;
}

.call-now:hover {
    background-color: var(--text-light)
}

/* buttons */

.btn {
    box-shadow: var(--box-shadow);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

/* modals */
.modal-header .btn-close {
    filter: invert(1);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.modal-header {
    background-color: var(--main-green);
    color: white;
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.modal-content {
    box-shadow: 0 0 10px 4px var(--main-green);
    border-radius: .5rem;
}

/* gallery */
.thumbnail {
    width: auto;
    margin: 0.5rem;
    border: 2px solid #ccc;
    border-radius: 4px;
    transition: transform 0.2s ease-in-out;
}

.thumbnail:hover {
    transform: scale(1.05);
}



.slogan {
    text-align: center;
    color: white;
    font-style: italic;
    font-size: 1.5rem;
}



body {
    background-color:var(--background-color)
}

/* carousel - before and after images */
.carousel-item .row>div {
    display: none;
}

.carousel-item .row>div:nth-child(1) {
    display: block;
}

.card.review-card {
    min-width: 250px;
    flex: 1 1 auto;
    cursor: pointer;

}

/* Reviews */
.reviewsection {
    border: black solid 1px;
    border-radius: 1rem;
    margin: 15px 0;
}

/* FAQ */

.roundcorner {
    border: black solid 1px;
    border-radius: 1rem;
}

/* accordion */
.accordion-button {
    background-color: #e0f5e4;
    /* light green */
    color: #14532d;
    /* dark green text */
}

.accordion-button:not(.collapsed) {
    background-color: #e0e2e0;
    /* slightly darker green when expanded */
    color: #14532d;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgb(127, 128, 127);
}

 /* contact form */

.contact-form {
    max-width: 90%;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form .form-control {
    margin-bottom: 15px;
}

.contact-form button {
    width: 100%;
}

.success-message {
    display: none;
    background-color: #28a745;
    color: white;
    padding: 10px;
    border-radius: 5px;
    margin-top: 15px;
}


#mission {
    /* background-color: #79b473;
    border: black solid 1px;
    border-radius: 1rem;
    text-align: center;
    padding: 1em; */
    background-color: rgba(255, 255, 255, 0.85);
        /* white with 85% opacity */
        padding: 1.5rem;
        border-radius: 0.5rem;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        text-align: center;
}




.glightbox-container .gprev,
.glightbox-container .gnext {
    display: block !important;
    opacity: 0.8 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    z-index: 2147483647 !important;
    /* Highest z-index allowed by browsers */
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%);
}

.glightbox-slide img {
    z-index: 1;
    position: relative;
}


/* ------------------------------------------------------- */
@media (min-width: 600px) {
    

    nav.navbar {
        padding: 1rem;
    }

    
    .carousel-item .row>div:nth-child(-n+2) {
        display: block;
    }

}

/* ------------------------------------------------------- */
@media (min-width: 992px) {
    
    .nav-item {
        text-align: center;
    }


}
