#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

#lightbox.active {
    opacity: 1;
    visibility: visible;
}

#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
}
/* Tabs styling */
#tabs {
    display: flex;
	flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 15px;
    background-color: #F4C135;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 4px;
    transition: background 0.3s;
	color: #6E1700;
	font-weight: bold;
}

.tab:hover {
    background-color: #B6D7F4;
}

.tab.active {
    background-color: #6E1700;
	color: #F4C135;
}

/* Gallery grid styling */
.gallery-section {
    display: none; /* All sections are hidden initially */
    text-align: center;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.thumbnail {
    width: 120px;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    border-radius: 8px;
}

.thumbnail:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
	.gallery-grid {
		gap: 5px;
	}
}