/* css/index.css */

body {
    font-family: 'Montserrat', sans-serif;
    background-image: url('https://images.unsplash.com/photo-1476231682824-37e0d921d6b2?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.app-card {
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(229, 231, 235, 1);
}

.feature-card {
    transition: all 0.3s ease;
    background-color: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.blur-bg {
    backdrop-filter: blur(5px);
}

/* Infinite Carousel Styles */
.carousel-track-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    width: max-content;
    padding: 1rem 0;
    cursor: grab;
    user-select: none;
}

.carousel-track:active {
    cursor: grabbing;
}

.feature-item {
    width: 320px;
    flex-shrink: 0;
    margin: 0 12px;
}

/* Changelog Styles */
.cl-card {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cl-card.cl-hidden {
    display: none;
}

.cl-card.cl-fade-in {
    animation: clFadeIn 0.4s ease forwards;
}

@keyframes clFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cl-chevron {
    transition: transform 0.35s ease;
}

.cl-chevron.open {
    transform: rotate(180deg);
}

.animate-fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
