/* Ingelijst Fancy Gallery Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.ingelijst-body {
    background-color: #f8f9fa;
    /* Light gallery wall */
    font-family: 'Montserrat', sans-serif;
}

.ingelijst-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ingelijst-header {
    text-align: center;
    margin-bottom: 60px;
}

.ingelijst-header-text {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    padding: 20px;
}

.ingelijst-header h1 {
    font-family: 'Playfair Display';
    font-size: clamp(2rem, 8vw, 3.5rem);
    color: #1a1a1a;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.ingelijst-header p {
    font-style: italic;
    color: #666;
    font-size: 1.2rem;
}

/* Masonry Layout */
.ingelijst-wall {
    column-count: 3;
    column-gap: 40px;
}

@media (max-width: 1200px) {
    .ingelijst-wall {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .ingelijst-wall {
        column-count: 1;
    }

    .ingelijst-container {
        padding: 20px 0;
    }

    .ingelijst-header {
        padding: 0 20px;
    }
}

.ingelijst-item {
    break-inside: avoid;
    margin-bottom: 60px;
    display: inline-block;
    width: 100%;
    position: relative;
    transition: transform 0.4s ease;
}

.ingelijst-item:hover {
    transform: translateY(-5px);
}

.frame-container {
    display: block;
    text-decoration: none;
    background: #fff;
    padding: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.4s ease;
}
.frame-img{
    position:relative
}

.ingelijst-item:hover .frame-container {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.frame-image {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.05);
}

.museum-label {
    margin-top: 20px;
    padding: 10px 5px;
    border-top: 1px solid #eee;
}

.label-title {
    font-family: 'Playfair Display';
    font-size: 1.4rem;
    color: #222;
    margin-bottom: 5px;
    display: block;
}

.label-meta {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.label-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.like-button-fancy {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 5;
}

.like-button-fancy:hover {
    background: #fff;
    transform: scale(1.1);
}

.like-button-fancy.liked svg {
    fill: #e74c3c;
    stroke: #e74c3c;
}

.like-button-fancy svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #666;
    stroke-width: 2;
    transition: all 0.3s ease;
}