/* Home Gallery Section */
.home-gallery-section {
    background-color: #F69541; /* Orange background */
    padding: 0;
    position: relative;
    /* Removed overflow: hidden so deco image can overlap */
}

.gallery-deco {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 90px;
    pointer-events: none; /* Let clicks pass through if needed */
}

.gallery-deco img {
   height: 76px;
   width: auto;
   margin-top: -38px;
}

.gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-row {
    display: flex;
    gap: 15px; 
    height: 425px; /* Fixed height for the row */
}

.gallery-col {
    flex: 1;
    display: flex;
    gap: 15px;
    height: 100%;
}

.gl-item {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    width: 100%;
    transition: transform 0.3s;
    cursor: zoom-in;
}
.gl-item:hover {
    transform: scale(1.02);
}

.gl-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Flex sizing within column */
.gl-item.gl-full {
    height: 100%;
}
.gl-item.gl-half {

}

/* Button */
.gallery-btn-wrap {
    text-align: center;
}
.gallery-btn {
  border-radius: 900px;
  border: 1px solid #FFF;
  width: 246px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-family: Golden;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
  transition: all 0.3s;
}
.gallery-btn:hover {
    background: #FFF;
    color: #F69541;
}

/* Responsive */
@media screen and (max-width: 1279px) {
    .gallery-deco {
        margin-bottom: 60px;
    }
    .gallery-row {
        height: 225px;
    }
    .gallery-btn {
        width: 222px;
        height: 50px;
        font-size: 20px;
    }
}
@media screen and (max-width: 726px) {
    .gallery-deco {
        margin-bottom: 30px;
    }
    .gallery-row {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 10px;
    }
    .gallery-col {
        gap: 10px;
    }
    .gallery-grid {
        gap: 10px;
    }
    
}