/* Import main styles */
@import url('main.css');

/* App Header Styles */
.app-header {
    padding-top: 140px;
    padding-bottom: 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.app-header h1,
.app-header .lead {
    color: white;
}

.app-icon-large {
    width: 120px;
    height: 120px;
    border-radius: 30px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
}

.app-icon-large i {
    font-size: 3rem;
    color: white;
}

.app-meta .badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.download-btn {
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(52, 168, 83, 0.3);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(52, 168, 83, 0.4);
}

/* Screenshots Section */
.screenshots-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.screenshot-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.screenshot-item img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1rem 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot-item:hover .screenshot-overlay {
    opacity: 1;
}

/* Features Section */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card .feature-icon i {
    font-size: 2rem;
    color: white;
}

/* Customization Section */
.customization-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.customization-showcase img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.customization-showcase:hover img {
    transform: scale(1.05);
}

.custom-feature {
    display: flex;
    align-items: flex-start;
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* App Details Card */
.app-details-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item i {
    width: 20px;
    text-align: center;
}

/* Data Safety Section */
.data-safety {
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
}

.data-safety h4 {
    color: var(--primary-color);
}

.safety-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.safety-item i {
    width: 20px;
    text-align: center;
}

/* Download CTA Section */
.download-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.download-cta h2 {
    color: white;
}

.download-cta .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.download-cta .btn-outline-primary {
    color: white;
    border-color: white;
}

.download-cta .btn-outline-primary:hover {
    background-color: white;
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .app-header {
        padding-top: 100px;
        text-align: center;
    }
    
    .app-icon-large {
        width: 100px;
        height: 100px;
    }
    
    .app-icon-large i {
        font-size: 2.5rem;
    }
    
    .app-details-card {
        padding: 2rem;
    }
    
    .download-cta .d-flex {
        flex-direction: column;
        align-items: center;
    }
    
    .download-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .app-header h1 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-card .feature-icon i {
        font-size: 1.5rem;
    }
    
    .app-details-card {
        padding: 1.5rem;
    }
    
    .data-safety {
        padding: 1.5rem;
    }
} 