

/* Google Translater css*/
@media (max-width: 770px) {
    .goog-te-gadget {
        font-size: 0px !important;
    }
    .goog-te-gadget img{
        display: none;
    }
    .VIpgJd-ZVi9od-l4eHX-hSRGPd{
        font-size: 0px !important;
    }
    .mean-last{
        display: none;
    }
}
#google_translate_element {
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.goog-te-gadget .goog-te-combo{
    margin: 0 5 0 0;
    padding: 8px 5px;
}
.goog-te-gadget {
    font-size: 0px !important;
}
.VIpgJd-ZVi9od-l4eHX-hSRGPd, .VIpgJd-ZVi9od-l4eHX-hSRGPd:link, .VIpgJd-ZVi9od-l4eHX-hSRGPd:visited, .VIpgJd-ZVi9od-l4eHX-hSRGPd:hover, .VIpgJd-ZVi9od-l4eHX-hSRGPd:active{
    display: none;
}
.section-padding-gallery{
    padding-bottom: 120px;
}

/* REMOVE HORIZONTAL SCROLL */
html, body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
}

/* CONTAINER */
.custom-container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

/* SECTION TITLE */
.sec-title {
    text-align: center;
    margin-bottom: 40px;
}

.sec-title__title {
    font-size: 28px;
    margin: 10px 0;
}

.description {
    color: #666;
}

/* ================= MASONRY ================= */
.masonry {
    column-count: 4;
    column-gap: 20px;
}

@media (max-width: 1200px) {
    .masonry { column-count: 3; }
}
@media (max-width: 768px) {
    .masonry { column-count: 2; }
}
@media (max-width: 480px) {
    .masonry { column-count: 1; }
}

/* CARD */
.media-card {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    position: relative;
    cursor: pointer;
}

.media-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* IMAGE */
.media-card img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.media-card:hover img {
    transform: scale(1.1);
}



/* ================= LIGHTBOX ================= */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
}

#closeBtn {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* GRID → 2 COLUMN */
.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* MOBILE */
@media(max-width:768px){
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* CARD */
.video-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

/* VIDEO */
.video-card video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* PLAY ICON CENTER */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 70px;
    height: 70px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    color: #fff;

    transition: 0.3s;
}

/* HOVER EFFECT */
.video-card:hover .play-icon {
    background: rgba(0,0,0,0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* MODAL */
#videoModal {
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#000;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

#videoModal video {
    width: 90%;
    max-height: 90%;
}

/* CLOSE */
.close-btn {
    position:absolute;
    top:20px;
    right:30px;
    font-size:40px;
    color:#fff;
    cursor:pointer;
}