@font-face {
    font-family: 'Aref Ruqaa';
    src: url('../../../fonts/aref-regular.ttf') format('truetype');
}

body {
    margin: 0;
    padding: 0;
    background-color: #fce4ce;
    /* Light wood/orange background */
    background-image: repeating-linear-gradient(0deg,
            rgba(255, 255, 255, 0.2) 0px,
            rgba(255, 255, 255, 0.2) 20px,
            transparent 20px,
            transparent 40px);
    font-family: 'Tajawal', sans-serif;
    display: flex;
    justify-content: center;
}

.shahada-container {
    width: 80%;
    margin: 40px auto;
    max-width: 700px;
    background: #fff;
    border: 3px solid #e0e0e0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 30px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-title {
    text-align: center;
    font-family: 'Aref Ruqaa', serif;
    font-size: 3rem;
    color: #d2b48c;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    margin-bottom: 40px;
    background: #eef6e1;
    /* greenish highlight */
    display: inline-block;
    padding: 5px 50px;
    border-radius: 10px;
}

.home-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 70px;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 100;
}

.home-btn:hover {
    transform: scale(1.1) rotate(-5deg);
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    align-items: center;
}

.card-item {
    position: relative;
    width: 90%;
    max-width: 500px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
}

.card-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-item img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

/* Divider line between cards (similar to image) */
.card-item::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: #4CAF50;
    /* Green thin line */
    opacity: 0.5;
}

.card-item:last-child::after {
    display: none;
    /* No line after the last item */
}

/* "هيا ننشد" card styling */
.card-item.small-card {
    max-width: 250px;
    align-self: flex-end;
    /* Push to left in RTL */
    margin-left: 20px;
}

.card-item.small-card::after {
    display: none;
}





@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7);
    }

    70% {
        transform: scale(1.15);
        box-shadow: 0 0 0 15px rgba(76, 175, 80, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .page-title {
        font-size: 2rem;
        padding: 5px 30px;
    }

    .home-btn {
        width: 50px;
        top: 10px;
        left: 10px;
    }

    .card-item.small-card {
        max-width: 180px;
        margin-left: 10px;
    }
}