/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in {
    animation: slideIn 0.6s ease-out forwards;
}

/* Interactive Elements */
.feature-card {
    transition: all 0.3s ease;
    transform: translateZ(0);
}

.feature-card:hover {
    transform: translateY(-5px) translateZ(0);
}

.price-badge {
    transition: all 0.3s ease;
}

.price-badge:hover {
    transform: scale(1.05);
}

/* Add depth to cards */
.shadow-depth {
    box-shadow: 
        0 1px 3px rgba(0, 0, 0, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.24);
}

.shadow-depth:hover {
    box-shadow: 
        0 14px 28px rgba(0, 0, 0, 0.15),
        0 10px 10px rgba(0, 0, 0, 0.12);
}

/* Screenshot hover effect */
.screenshot-card {
    transition: all 0.4s ease;
}

.screenshot-container {
    transition: all 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-2px);
}

.screenshot-container:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Screenshot modal */
#screenshotModal {
    transition: opacity 0.3s ease;
}

#screenshotModal.show {
    display: flex !important;
}

#screenshotContent {
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Modal Styles */
#contactModal {
    transition: opacity 0.3s ease;
}

#contactModal.show {
    display: flex !important;
}