/* General Styles */
body {
    font-family: "Poppins", sans-serif;
    text-align: center;
    background: #081f29;
    color: white;
    transition: 0.3s, color 0.3s;
    background: url(images/image.png);
}

.video{
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
  }

/* Filter Buttons */
.filter-buttons {
    text-align: center;
    margin-bottom: 20px;

}

.filter-buttons button {
    background: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 5px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;

}

.filter-buttons button.active,
.filter-buttons button:hover {
    background: aqua;
    color: #081f29;
}

/* Gallery */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.gallery-item {
    width: 220px;
    height: 160px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease-in-out;
}
.gallery-item img:hover{
    transform: scale(1.2);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
}

/* Lightbox Controls */
.lightbox .close,
.lightbox .prev,
.lightbox .next,
.lightbox .fullscreen,
.lightbox .download {
    position: absolute;
    color: white;
    font-size: 24px;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    border-radius: 5px;
}
.lightbox .close:hover,
.lightbox .prev:hover,
.lightbox .next:hover,
.lightbox .fullscreen:hover,
.lightbox .download:hover{
background: #00ffff;
color: #081f29;
}

.lightbox .close {
    top: 10px;
    right: 10px;
}

.lightbox .prev {
    left: 20px;
}

.lightbox .next {
    right: 20px;
}

.lightbox .fullscreen {
    bottom: 20px;
    left: 20px;
}

.lightbox .download {
    bottom: 20px;
    right: 20px;
}