body {
    font-family: Arial, sans-serif;
    direction: rtl;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
}

.gallery-item img {
    width: 500px;
    height: auto;
    cursor: pointer;
    border: 6px solid #ccc;
    border-radius: 10px;
    transition: transform 0.2s ease;
}

.gallery-item img:hover {
    transform: scale(1.1);
}

/* پاپ‌آپ */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup.hidden {
    display: none;
}

.popup-content {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    max-width:600px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.popup-content img {
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

#popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 40px;
    cursor: pointer;
    color: #333;
}

#popup-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: #333;
}

#popup-description {
    font-size: 25px;
    color: #555;
}
