/* Final Enhancements for Innovation Details Page */

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Enhanced card animations */
.info-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 86, 188, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 86, 188, 0.15);
}

/* Enhanced hero section */
.hero-section {
    background: linear-gradient(135deg, #0056bc 0%, #003d82 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="white" opacity="0.1"/><circle cx="10" cy="10" r="1" fill="white" opacity="0.05"/><circle cx="40" cy="40" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    pointer-events: none;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-stats {
    margin-top: 2rem;
}

.hero-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.hero-stat i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.hero-stat span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.hero-stat small {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Enhanced status badge */
.status-container {
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 86, 188, 0.3);
    transition: all 0.3s ease;
}

.status-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 86, 188, 0.4);
}

/* Enhanced info items */
.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 86, 188, 0.1);
}

.info-content label {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content strong {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

/* Enhanced lists */
.criteria-list,
.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.criterion-item,
.support-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.criterion-item:hover,
.support-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.criterion-item i,
.support-item i {
    margin-left: 0.75rem;
    font-size: 1.1rem;
}

/* Enhanced tag list */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #0056bc 0%, #003d82 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 86, 188, 0.4);
}

/* Enhanced attachment links */
.attachment-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.attachment-link:hover {
    background: #e9ecef;
    color: #0056bc;
    transform: translateX(5px);
    text-decoration: none;
}

.attachment-link i {
    margin-left: 0.75rem;
    font-size: 1.1rem;
}

/* Enhanced quick actions */
.quick-actions-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-action-item {
    transition: all 0.3s ease;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border: none;
    border-radius: 12px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.quick-action-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 86, 188, 0.1);
    text-decoration: none;
    color: #333;
}

.quick-action-btn.primary-btn {
    background: linear-gradient(135deg, #0056bc 0%, #003d82 100%);
    color: white;
}

.quick-action-btn.primary-btn:hover {
    background: linear-gradient(135deg, #004a9e 0%, #003366 100%);
    color: white;
}

.quick-action-btn.secondary-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
}

.quick-action-btn.info-btn {
    background: #e3f2fd;
    border: 2px solid #bbdefb;
    color: #0056bc;
}

.action-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    font-size: 1.1rem;
}

.primary-btn .action-icon {
    background: rgba(255, 255, 255, 0.3);
}

.action-content {
    flex: 1;
}

.action-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.action-description {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

.action-arrow {
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Enhanced stats cards */
.stats-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0056bc 0%, #003d82 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 86, 188, 0.3);
    transition: all 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 86, 188, 0.4);
}

.stats-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stats-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Enhanced content HTML */
.content-html {
    line-height: 1.6;
    color: #555;
}

.content-html h1,
.content-html h2,
.content-html h3,
.content-html h4,
.content-html h5,
.content-html h6 {
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content-html p {
    margin-bottom: 1rem;
}

.content-html ul,
.content-html ol {
    margin-bottom: 1rem;
    padding-right: 1.5rem;
}

.content-html li {
    margin-bottom: 0.5rem;
}

/* Enhanced feature icons */
.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, #0056bc 0%, #003d82 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 86, 188, 0.3);
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stat {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-stat span {
        font-size: 1.2rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .quick-action-btn {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .action-arrow {
        transform: rotate(90deg);
    }
}

/* Loading states */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Print styles */
@media print {
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    .info-card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
    
    .quick-action-btn,
    .stats-card {
        background: white !important;
        color: black !important;
        border: 1px solid #ddd !important;
    }
} 
