/* Simple Card Design - Similar to the attached image */

.simple-card-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.simple-project-card {
    background: #000000;
    border-radius: 2px;
    width: 100%;
    max-width: 350px;
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.simple-project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Ribbon styling */
.card-ribbon {
    position: absolute;
    top: 15px;
    left: -30px;
    background: #e91e63;
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transform: rotate(-45deg);
    z-index: 2;
    box-shadow: 0 2px 5px rgba(233, 30, 99, 0.3);
}

/* Card image */
.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Card content */
.card-content {
    padding: 25px;
    text-align: center;
}

.card-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-desc {
    color: #bdc3c7;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Pricing section */
.card-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    color: #00ffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.old-price {
    color: #95a5a6;
    font-size: 1rem;
    text-decoration: line-through;
}

.discount {
    background: #f39c12;
    color: #000000;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Demo link */
.card-demo-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.card-demo-link:hover {
    color: #33ccff;
    text-decoration: none;
}

/* Buy button */
.card-buy-btn {
    background: #00ffff;
    color: #000000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.card-buy-btn:hover {
    background: #33ccff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
}

/* Container styling */
.container h1 {
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.container .subtitle {
    text-align: center;
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 30px;
    font-weight: 400;
}

/* Responsive design */
@media (max-width: 768px) {
    .simple-card-wrapper {
        padding: 20px 15px;
    }
    
    .simple-project-card {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .container h1 {
        font-size: 2rem;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .card-desc {
        font-size: 0.85rem;
    }
}

/* Tablet and small desktop */
@media (max-width: 992px) and (min-width: 769px) {
    .simple-card-wrapper {
        padding: 30px 20px;
    }
    
    .simple-project-card {
        max-width: 320px;
    }
}

/* Large mobile devices */
@media (max-width: 480px) {
    .simple-card-wrapper {
        padding: 15px 10px;
    }
    
    .simple-project-card {
        width: 100%;
        margin: 0 auto;
        border-radius: 8px;
    }
    
    .card-content {
        padding: 18px;
    }
    
    .card-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .card-desc {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .card-img {
        height: 180px;
    }
    
    .card-pricing {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .current-price {
        font-size: 1.3rem;
    }
    
    .old-price {
        font-size: 0.9rem;
    }
    
    .discount {
        padding: 3px 6px;
        font-size: 0.75rem;
    }
    
    .card-buy-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
    
    .container h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .container .subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
}

/* Small mobile devices */
@media (max-width: 375px) {
    .simple-card-wrapper {
        padding: 10px 8px;
    }
    
    .card-content {
        padding: 15px;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .card-desc {
        font-size: 0.75rem;
    }
    
    .card-img {
        height: 160px;
    }
    
    .current-price {
        font-size: 1.2rem;
    }
    
    .card-buy-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    
    .container h1 {
        font-size: 1.6rem;
    }
    
    .card-ribbon {
        font-size: 10px;
        padding: 6px 35px;
    }
}

/* Extra small mobile devices */
@media (max-width: 320px) {
    .simple-card-wrapper {
        padding: 8px 5px;
    }
    
    .card-content {
        padding: 12px;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-desc {
        font-size: 0.7rem;
    }
    
    .card-img {
        height: 140px;
    }
    
    .current-price {
        font-size: 1.1rem;
    }
    
    .old-price {
        font-size: 0.8rem;
    }
    
    .card-buy-btn {
        padding: 8px 15px;
        font-size: 0.75rem;
    }
    
    .container h1 {
        font-size: 1.4rem;
    }
    
    .container .subtitle {
        font-size: 0.9rem;
    }
}
