/* Custom styles to complement Tailwind CSS */
.hero {
    background-image: url('https://via.placeholder.com/1500x600');
    background-size: cover;
    background-position: center;
}

/* Lightbox styles */
#lightbox {
    transition: opacity 0.3s ease;
}

#lightbox.hidden {
    display: none;
}

.gallery-item {
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Add any additional custom styles here */
