body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f5f5;
    padding: 20px;
}

h2, h3 {
    color: #333;
}

.gallery-preview {
    display: inline-block;
    width: 200px;
    text-align: center;
    margin: 15px;
    cursor: pointer;
}

.gallery-preview img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}

.gallery-preview img:hover {
    transform: scale(1.05);
}

.full-gallery {
    display: none;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

.thumb-lazy {
    width: 200px;
    height: 150px;
    object-fit: cover;
    margin: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

.thumb-lazy:hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
