/* App Detail Page Styles */

.app-detail-hero {
    padding: 200px 0 80px 0;
    background: linear-gradient(135deg, #FDF0EA 0%, #fff 100%);
}

.app-detail-hero .app-detail-title {
    font-size: 60px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.app-detail-hero .app-detail-subtitle {
    max-width: 800px;
    color: #8A8A8A;
    margin-bottom: 10px;
}

.app-detail-hero .app-year {
    color: #F35C29;
}

.app-overview {
    padding: 100px 0;
}

.app-overview .app-image-container {
    background: #FDF0EA;
    padding: 40px;
    border-radius: 20px;
}

.app-overview .app-image-container .app-main-image {
    width: 100%;
    border-radius: 10px;
}

.app-overview .app-description {
    font-family: 'DM Sans', sans-serif;
    color: #8A8A8A;
    line-height: 1.8;
}

.app-overview .app-meta {
    margin-top: 30px;
}

.app-overview .app-meta .meta-item {
    font-size: 18px;
}

.app-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #FDF0EA 0%, #fff 100%);
}

.app-features .feature-item {
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 18px rgba(138, 138, 138, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.app-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 62px rgba(0, 0, 0, 0.06);
}

.app-features .feature-item .feature-icon i {
    display: inline-block;
}

.app-features .feature-item .feature-title {
    font-size: 22px;
}

.app-features .feature-item .feature-description {
    font-family: 'DM Sans', sans-serif;
    color: #8A8A8A;
    line-height: 1.6;
    margin-bottom: 0;
}

.app-technologies {
    padding: 100px 0;
}

.app-technologies .technologies-list .tech-item {
    padding: 25px;
    background: #FDF0EA;
    border-radius: 10px;
    border-left: 4px solid #F35C29;
}

.app-technologies .technologies-list .tech-item h5 {
    margin-bottom: 10px;
}

.app-technologies .technologies-list .tech-item p {
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 0;
    line-height: 1.6;
}

.app-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #061434 0%, #0a1d52 100%);
    color: #fff;
}

.app-cta .section-heading {
    color: #fff;
}

.app-cta p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive styles for app detail page */
@media (max-width: 1199px) {
    .app-detail-hero .app-detail-title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .app-detail-hero {
        padding: 180px 0 60px 0;
    }
    
    .app-detail-hero .app-detail-title {
        font-size: 40px;
    }
    
    .app-detail-hero .app-detail-subtitle {
        font-size: 18px;
    }
    
    .app-overview {
        padding: 80px 0;
    }
    
    .app-overview .app-image-container {
        margin-bottom: 40px;
    }
    
    .app-features,
    .app-technologies,
    .app-cta {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .app-detail-hero {
        padding: 150px 0 50px 0;
    }
    
    .app-detail-hero .app-detail-title {
        font-size: 32px;
    }
    
    .app-detail-hero .app-detail-subtitle {
        font-size: 16px;
    }
    
    .app-overview {
        padding: 60px 0;
    }
    
    .app-features,
    .app-technologies,
    .app-cta {
        padding: 60px 0;
    }
    
    .app-features .feature-item {
        padding: 20px;
    }
}
