/* === Umumiy sahifa uslubi === */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* === Sahifa sarlavhasi === */
.title {
    text-align: center;
    font-size: 2.5rem;
    color: #5e473e;
    margin: 30px 0;
}

/* === Loyiha konteyneri === */
.project-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* === Galereya === */
.image-gallery {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.image-gallery img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.image-gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

/* === Kontent (matn) === */
.content {
    text-align: center;
    max-width: 600px;
    margin: 20px auto;
    font-size: 2.5rem;
    line-height: 1.6;
    color: #555;
}

/* === Tugmalar (Knopkalar) === */
.btn {
    display: inline-block;
    background: #5e473e;
    color: #fff;
    padding: 10px 20px;
    font-size: 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #9e7464;
}

/* === Mobil moslashuv === */
@media (max-width: 768px) {
    .image-gallery img {
        width: 90%;
        height: auto;
    }

    .content {
        font-size: 1rem;
        padding: 10px;
    }
}
