body {
    background-color: #1a1a1a;
    color: #e5e5e5;
}

.nav-glass {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
}

.zak-card {
    background: #262626;
    border: 1px solid #333;
}

.accent-text {
    color: #d4af37;
}

/*.accent-text.active {*/
/*    color: #d4af37;*/
/*}*/

/* Gold/Yellow accent from image */
.drawer-transition {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/*gallery*/
.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* 2. Lightbox Pop-up Styles */
#lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}