/* ========== GALLERY PAGE ========== */
.gallery-full {
    padding: 80px 0;
    background: var(--cream);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 42px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: var(--warm-white);
    border: 1.5px solid rgba(201, 168, 76, 0.2);
    border-radius: 50px;
    color: var(--text-secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(160, 120, 48, 0.06);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(201, 168, 76, 0.06);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 14px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(201, 168, 76, 0.1);
    box-shadow: 0 3px 15px rgba(160, 120, 48, 0.08);
}

.gallery-card.hidden {
    display: none;
}

.gallery-card.tall {
    grid-row: span 2;
}

.gallery-card.wide {
    grid-column: span 2;
}

.gallery-card:hover {
    box-shadow: 0 15px 45px rgba(160, 120, 48, 0.2);
    border-color: rgba(201, 168, 76, 0.3);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(29, 18, 8, 0.82) 0%,
        transparent 55%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 22px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-card-overlay span {
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.88rem;
}

.gallery-card-overlay i {
    color: white;
    font-size: 1.1rem;
    width: 42px;
    height: 42px;
    background: rgba(201, 168, 76, 0.25);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Video Gallery */
.video-gallery {
    padding: 80px 0;
    background: var(--cream-2);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    background: var(--warm-white);
    border: 1px solid rgba(201, 168, 76, 0.12);
    box-shadow: 0 4px 18px rgba(160, 120, 48, 0.08);
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(160, 120, 48, 0.18);
    border-color: rgba(201, 168, 76, 0.3);
}

.video-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: var(--transition);
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(160, 120, 48, 0.4);
}

.video-card:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 15px 40px rgba(160, 120, 48, 0.55);
}

.video-card h4 {
    padding: 20px 22px;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
}

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

    .video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card.wide {
        grid-column: span 1;
    }
}