/* =========================
   📄 Page Title
========================= */

.page-title {
    text-align: center;
    margin-top: 120px;
    font-size: 40px;
    color: #b517ff;
}


/* =========================
   🧱 Cards Grid Layout
========================= */

.cards-container {
    display: grid;

    /* تلقائي ترتيب حسب المساحة */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;

    padding: 30px;
    max-width: 1200px;

    margin: 0 auto;
}


/* =========================
   🟪 Card Design
========================= */

.card {
    background: rgba(20, 16, 35, 0.85);
    border-radius: 15px;

    overflow: hidden;

    text-decoration: none;

    border: 1px solid rgba(181, 23, 255, 0.2);

    transition: 0.3s ease;

    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-6px);
    border-color: rgba(181, 23, 255, 0.6);
}


/* =========================
   🖼️ Image
========================= */

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}


/* =========================
   📝 Title
========================= */

.card h2 {
    text-align: center;

    padding: 15px;

    font-size: 18px;

    color: white;
}


/* =========================
   📱 Mobile Fix
========================= */

@media (max-width: 600px) {

    .page-title {
        font-size: 30px;
        margin-top: 100px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}