@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Gabarito", sans-serif;
}

p {
    font-family: "Bitter", serif;
    text-align: justify;
}

.gallery-banner-image{
    background-image: url(./asstes/img/banner-img-15.png);
    height: 70vh;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.gallery-banner-image-overlay{
    background-color: rgba(0, 0, 0, 0.596);
    height: 70vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.gallery-box {
    box-shadow: 0px 0px 5px 2.5px #efcc4e;
    margin-bottom: 20px;
    border-radius: 8px;
    padding: 5px;
}

.gallery-box img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-box img:hover {
    transform: scale(1.05);
}

.modal-img-container {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

.modal-img-container.active {
    display: flex;
}

.modal-img-container img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10000;
}

.modal-close:hover {
    color: red;
}