@charset "UTF-8";
/* CSS Document */


.masonry-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #2c2e33;
	padding:100px 0;
}
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px; /* Base height for the rows */
    gap: 10px;
    width: 90vw; /* Adjust the width based on your preference */
    max-width: 1820px; /* Ensure it doesn't stretch too much on large screens */
}
.grid-item {
    background-size: cover;
    background-position: center;
    cursor: pointer;
}
.horizontal {
    grid-row: span 1; /* Take up one row */
}
.vertical {
    grid-row: span 2; /* Take up two rows */
}
/* Lightbox styles */
.lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow: hidden;
}
.lightbox img {
    max-width: 90%;
    max-height: 90%;
}
.lightbox .close-btn, .lightbox .nav-btn {
    position: absolute;
    color: white;
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}
.lightbox .close-btn {
    top: 20px;
    right: 20px;
}
.lightbox .nav-btn {
    top: 50%;
    transform: translateY(-50%);
}
.lightbox .prev-btn {
    left: 20px;
}
.lightbox .next-btn {
    right: 20px;
}

.button:not(.outline):hover {
    background:#ff7b00!mportant;
}

/* Optional: Responsive adjustments */
@media (max-width: 768px) {
.masonry-grid {
    grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 480px) {
.masonry-grid {
    grid-template-columns: 1fr;
}
}