body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4efe6;
    color: #4a4036;
    text-align: center;
}

.title {
    margin: 30px;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Галерея */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.gallery-img {
    width: 300px;
    height: 386px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.gallery-img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Модальное окно */
#modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 40px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(60, 50, 40, 0.85);
}

#modal-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

#close {
    position: absolute;
    top: 15px;
    right: 30px;
    font-size: 40px;
    color: #f4efe6;
    cursor: pointer;
}

.gallery-item {
    text-align: center;
}

.caption {
    margin-top: 6px;
    font-size: 14px;
    color: #5a4f43;
}