/* ScrappyNote Project Specific Styles */

/* ScrappyNote project specific styling */
.project-card:nth-child(2) .project-image {
    background: url('../images/scrappy-background.png');
    background-size: cover;
    background-position: center;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.phone-container {
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-image {
    max-width: 60%;
    max-height: 120%;
    object-fit: contain;
    display: block;
}

.themes-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    max-width: 300px;
}

.themes-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.themes-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.theme-tag {
    background: #8B5CF6;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Responsive styles for ScrappyNote */
@media (max-width: 768px) {
    .themes-container {
        max-width: 250px;
        padding: 0.75rem;
    }
    
    .themes-title {
        font-size: 0.9rem;
    }
    
    .theme-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .themes-container {
        max-width: 200px;
        padding: 0.5rem;
    }
    
    .themes-title {
        font-size: 0.8rem;
    }
    
    .theme-tag {
        font-size: 0.6rem;
        padding: 0.15rem 0.5rem;
    }
} 