@theme {
    --color-bg-primary: #0B3D2E;
    --color-bg-secondary: #145A3A;
    --color-bg-dark: #070B0A;
    --color-accent-primary: #F5F1E8;
    --color-accent-gold: #C8A24A;
    --color-accent-gold-dark: #D4AF37;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}