/* banner */

.banner {
    position: relative;
    height: 300px;
    width: 100%;
    align-content: end;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center left;
    background-size: cover;
    margin-top: 95px;
}
.banner::before {
    content:'';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #D4B773;
    opacity: 0.8;
    top: 0;
}

.banner_content {
    position: relative;
    max-width: 100%;
    height: 100%;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px ;
}

.banner_heading {
    font-family: 'Fugaz One';
    font-size: 42px;
    font-weight: 600;
    color: #493812;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 #fff;
}

.banner_para {
    color: #495057;
    font-size: 16px;
    font-weight: normal;
    line-height: 34px;
    margin-bottom: 48px;
    font-family: "Inter", serif;
}

.breadcrumb {
    position: relative;
    justify-content: start;
    padding: 10px 0;
    
}

.breadcrumb ul {
    padding-left: 0 !important;
    margin: 0;
}

.breadcrumb ul li {
    display: inline-block;
    list-style-type: none;
    background-color: #493812;
    padding: 5px 20px;
    border: 2px solid #493812;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}
.breadcrumb ul li:last-child {
    background-color: #D4B773;
    padding: 5px 30px 5px 20px;
    border: 2px dashed #493812;
    border-radius: 0 50px 50px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}


.breadcrumb ul li a {
    font-family: 'kanit';
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.breadcrumb ul li:last-child A{
    color: #493812;
}

@media only screen and (max-width:767px) {
    .banner {
        height: auto;
        margin-top: 50px;
        padding: 15px 0px 0px 0px;
    }
    .breadcrumb {
        justify-content: center;
    }
    .breadcrumb ul li {
        padding: 0 10px;
    }
    .breadcrumb ul li:last-child{
        padding: 0px 30px 0px 10px;
    }
    .banner_heading {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 0;
    }
    .banner {
        height: auto;
    }
    .breadcrumb ul li a {
        font-size: 12px;
    }

}

/* banner */

/* Gallery */

.gallery {
    padding: 40px 0;
}

.photo-gallery {
    display: grid;
    gap: 10px;
    padding: 10px;
}

.photo-gallery .desktop_hide {
    display: none;
}

@media only screen and (min-width: 1025px) {
    .photo-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media only screen and (max-width: 1024px) {
    .photo-gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    .photo-gallery .desktop_hide {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .photo-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 575px) {
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

.photo-gallery img {
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #493812;
    outline: 2px solid #493812;
    border-radius: 10px;
    outline-offset: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.photo-gallery .photo-wrapper {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    padding: 10px;
}

.photo-gallery .photo-wrapper img {
    transition: transform 0.3s ease;
}

.photo-gallery .photo-wrapper:hover img {
    transform: scale(1.1);
}

.photo-gallery .photo-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-gallery .photo-wrapper .overlay span {
    font-size: 2rem;
    color: #fff;
    font-weight: bold;
}

.photo-gallery .photo-wrapper:hover .overlay {
    opacity: 1;
}

/* Gallery */
