.btn-primary {
    background-color: #b88a6e;
    border-color: #b88a6e;
}

#galleryTab .nav-link {
    padding: 10px 20px !important;
    color: #b88a6e;
}

#galleryTab .nav-link:hover {
    color: #b88a6e;
}

.card-primary {
    border-color: #b88a6e;
}

.card-album .card-body{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 10px;
    background-color: rgba(0, 0, 0, 0.7) !important;
    backdrop-filter: blur(8px);
}

.card-album .card-title {
    margin-bottom: 0;
}

.card-album {
    border: none;
    font-family: var(--font-cinzel);
    font-size: 14pt;
    text-align: center;
}

#videoModal .modal-dialog.modal-xl, #videoModal.modal-content {
    height: -webkit-fill-available;
}

.lb-outerContainer {
    background-color: #181818;
}

.video-container {
    position: relative;
    display: inline-block;
}

.video-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 50% dark overlay */
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container:hover .overlay {
    opacity: 1; /* Fade in on hover */
}

.video-container .play-button {
    font-size: 4rem; /* Adjust size as needed */
    color: white;
    transition: transform 0.3s ease;
}

.video-container:hover .play-button {
    transform: scale(1.1); /* Slight zoom on hover */
}