.album-header {
    padding: 0 20px 10px;
    color: white;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

.album-header h1 {
    margin: 0;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.album-header .album-meta {
    margin-top: 4px;
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

.album-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    padding: 10px;
}

.album-gallery a {
    position: relative;
    overflow: hidden;
    display: block;
    cursor: zoom-in;
}

.album-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    background: rgba(0, 0, 0, 0.05);
}

.album-gallery a::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.album-gallery a:hover::before {
    opacity: 1;
}

.album-gallery .video-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2px;
    pointer-events: none;
    z-index: 2;
}

@media (max-width: 1200px) {
    .album-gallery { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
    .album-gallery { grid-template-columns: repeat(3, 1fr); }
    .album-gallery img { height: 220px; }
}

@media (max-width: 600px) {
    .album-gallery { grid-template-columns: repeat(2, 1fr); }
    .album-gallery img { height: 180px; }
    .album-header h1 { font-size: 30px; }
    .album-header .album-meta { font-size: 16px; }
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    touch-action: pan-y;
}

.lightbox.open { display: flex; }

.lightbox-img {
    max-width: 96vw;
    max-height: 92vh;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-caption {
    position: absolute;
    bottom: 18px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: white;
    width: 48px;
    height: 64px;
    font-size: 28px;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-btn:hover { background: rgba(255, 255, 255, 0.24); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.24); }

.lightbox-counter {
    position: absolute;
    top: 20px;
    left: 20px;
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    pointer-events: none;
}

@media (max-width: 600px) {
    .lightbox-btn { width: 40px; height: 52px; font-size: 22px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}
