/* === Xorika sahifasi dizayni === */
.xorika-gallery {
    text-align: center;
    padding: 50px 20px;
    background: #f5f5f5;
}

/* === Sarlavha (H2) === */
.xorika-gallery h2 {
    font-size: 4rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
    text-transform: uppercase;
}

.xorika-gallery p {
    font-size: 2rem;
    color: #6d5c5c;
    margin-bottom: 30px;
    font-weight: lighter;
    text-transform: none;
}

/* === Galereya konteyneri === */
.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* === Har bir rasm + matn qismi === */
.gallery-item {
    width: 90%;
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    opacity: 0;
}

/* === Alternativ qatorlar (faqat katta ekranlar uchun) === */
@media (min-width: 769px) {
    .gallery-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}

/* === Rasm === */
.gallery-item img {
    width: 45%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

/* === Matn qismi === */
.gallery-item p {
    width: 50%;
    font-size: 1.8rem;
    color: #444;
    line-height: 1.6;
    font-weight: 500;
    margin: 0;
}

/* === Scroll qilganda animatsiya === */
.gallery-item.left {
    transform: translateX(-100%);
}

.gallery-item.right {
    transform: translateX(-100%);
}

.gallery-item.top {
    transform: translateY(-100%);
}

.gallery-item.bottom {
    transform: translateY(100%);
}

.gallery-item.fade-in {
    transform: scale(0.5);
}

.gallery-item.show {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
}

/* === Lightbox oyna === */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

/* === 📱 **MOBIL VERSIYA (768px gacha)** === */
@media (max-width: 768px) {
    .gallery-container {
        gap: 20px;
    }

    .gallery-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        width: 100%;
        padding: 15px;
        opacity: 1;
        transform: translateX(0) translateY(0);
    }

    .gallery-item img {
        width: 90%;
        height: auto;
        max-height: 300px;
    }

    .gallery-item p {
        width: 90%;
        font-size: 1.6rem;
        text-align: center;
        margin-top: 10px;
    }

    /* 📌 **Mobil versiyada rasmlar chap yoki o‘ngdan kelib chiqishi** */
    .gallery-item.left {
        transform: translateX(-100%);
        opacity: 1;
    }

    .gallery-item.right {
        transform: translateX(100%);
        opacity: 1;
    }

    .gallery-item.show.left,
    .gallery-item.show.right {
        transform: translateX(0);
        opacity: 1;
    }

    /* 📌 **Rasmlar yondan va tepadan chiqishi** */
    .gallery-item.top {
        transform: translateY(-50%);
        opacity: 0;
    }

    .gallery-item.bottom {
        transform: translateY(50%);
        opacity: 0;
    }

    .gallery-item.show.top,
    .gallery-item.show.bottom {
        transform: translateY(0);
        opacity: 1;
    }
}