
.main_title {
    color: #086901;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
}
.btn {
    background: none;
    border: 1px solid #108936;
    color: #108936;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}
.btn.filter-active {
    background: #108936;
    border: 1px solid #108936;
    color: #eff8f2;
}
/* Gallery */
.gallery-temp {
    width: 100%;
    height: 100vh;
    display: flex;
    position: relative;
}

#map {
    flex: 1;
    height: 100%;
}

/* Hidden div styles */
.hidden-div {
    display: none;
    position: absolute;
    top: 50px;
    right: 7vw;
    width: 50%;
    height: 80%;
    background: white;
    box-shadow: 0 3px 8px rgb(97, 97, 97);
    z-index: 10;
    border-radius: 30px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #627266 #f0faef;
}

.hidden-div.active {
    display: block;
}

.area-desc {
    padding: 20px;
}

.area-desc h1 {
    font-size: 2.3rem;
    font-weight: bold;
    color: #088101;
    margin-bottom: 1.5rem;
}

.area-desc p {
    color: #494e4a;
}

/* Gallery images container */
.gallery-img {
    display: flex;
    flex-wrap: wrap;
}

.gallery-img img {
    margin: 0 auto;
    margin-bottom: 1.5rem;
    width: 300px;
    height: 200px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 3px 5px #384437;
    transition: transform 0.3s ease;
}

/* .gallery-img img:hover {
  transform: scale(1.1);
  z-index: 10;
  box-shadow: 0 0 10px #4a5948;
} */
/* .gallery-img .col-12 {
  padding: 0.5rem;
} */

/* close box style */
.close-box {
    position: sticky;
    top: 0;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #c9fcd5b8;
    padding: 0;
    display: flex;
    float: right;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 4rem;
    color: #969393;
    border: 1px solid #c9c9c9;
    box-shadow: 0 3px 7px #a09f9fb4;
}

.close-box:hover {
    color: #5a5a5a;
}

/* mobile style */
@media (max-width:1200px) {
    .hidden-div {
        width: 60%;
        height: 80%;
    }
}
@media (max-width:998px) {
    .hidden-div {
        width: 80%;
    }
}

@media (max-width:598px) {
    .hidden-div {
        width: 90%;
        right: 3.5vw;
    }
    .gallery-img {
        width: 100%;
        margin: 0 auto;
    }
    .gallery-img img {
        height: 160px;
    }
    .btn {
        margin-bottom: 1.2rem;
    }
}
