﻿/*album*/
.album {
    text-align: center;
    margin: 20px;
}

.album-icon {
    width: 140px; /* adjust size here */
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

.album-name {
    margin-top: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* GRID CONTAINER */
.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    padding: 20px 0;
}



/*photo thumb*/

.photo-thumb {
    width: 200px;
    height: auto;
    margin: 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.2s;
}
.photo-thumb:hover {
    transform: scale(1.05);
}

#lightbox {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}
.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}


