body {
    font-family: sans-serif;
    line-height: 1.5;
    margin: 0;
}

/* General */
* {
    box-sizing: border-box;
}

.container {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

img {
    max-width: 100%;
    display: block;
}

/* Gallery */
.gallery {
    width: 100%;
    min-height: 100vh;
}

/* Filter Menu */
.menu-photography {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    text-align: center;
    margin-bottom: 36px;
}

.menu-photography .filter-item {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.2px;
    line-height: 1.35;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    margin: 0;
    padding: 14px 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.menu-photography .filter-item::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02) 55%, rgba(255, 255, 255, 0.08));
    opacity: 0.55;
    pointer-events: none;
}

.menu-photography .filter-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: -130%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
    transform: skewX(-22deg);
    transition: left 0.45s ease;
    pointer-events: none;
}

.menu-photography .filter-item:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.menu-photography .filter-item:hover::after {
    left: 150%;
}

.menu-photography .filter-item.active {
    color: #ffffff;
    border-color: rgba(255, 153, 163, 0.9);
    background: linear-gradient(135deg, #ef5466 0%, #d63447 52%, #b91f33 100%);
    box-shadow: 0 16px 34px rgba(214, 52, 71, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.24);
    transform: translateY(-3px);
}

.menu-photography .filter-item.active::before {
    opacity: 0.28;
}






/* Gallery Grid */
.gallery .gallery-item {
    width: 100%;
    background-size: cover;
    height: 200px;
    margin-bottom: 35px;
}

.gallery-item-inner {
    overflow: hidden;
}

/* Image */
.gallery-item-inner img {
    width: 100%;
    transition: transform 0.6s ease;
}

/* Hover Zoom */
.gallery-item-inner:hover img {
    transform: scale(1.08);
}

/* Animation */
.gallery .gallery-item.show {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .gallery .gallery-item {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .gallery .gallery-item {
        width: 100%;
    }

    .menu-photography {
        gap: 10px;
    }

    .menu-photography .filter-item {
        width: 100%;
        min-height: 52px;
        font-size: 15px;
        padding: 12px 18px;
    }
}




@media (min-width: 320px) and (max-width: 500px) {

    .gallery-filter {
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .gallery-filter a {
        display: inline-flex !important;
        margin: 0 !important;
        font-size: 14px !important;
    }

    .gallery-item {
        height: 240px;
        /* good for vertical viewing */
        border-radius: 10px !important;
    }

    .col-12 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .gsap-reveal img {
        display: block !important;
        margin: 0px auto !important
    }
}

@media (min-width: 500px) and (max-width: 760px) {

    .gallery-filter {
        text-align: center !important;
        margin-bottom: 24px !important;
    }

    .gallery-filter a {
        display: inline-flex !important;
        margin: 0 !important;
        font-size: 15px !important;
    }

    .gallery-item {
        height: 260px !important;
        border-radius: 12px !important;
    }

    .col-md-4 {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }


    .gsap-reveal img {
        display: block !important;
        margin: 0px auto !important
    }
}
