/*
 * Gallery Page Styles
 */

.gallery-hero {
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.85), rgba(255, 20, 147, 0.85)), url('/media/gallery/gallery_lobby.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0 80px;
}

.gallery-hero h1,
.gallery-hero .display-4 {
    color: white !important;
}

.gallery-hero .lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

.category-filter .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-filter .btn-primary {
    background: #FF69B4;
    border-color: #FF69B4;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-overlay h5 {
    color: white;
    font-weight: 600;
    text-shadow: none;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(255, 255, 255, 0.9);
    color: #FF69B4;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.3s ease;
    z-index: 2;
}

.gallery-card:hover .zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}