/* ReconForge - About Page Styles */

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(0, 220, 130, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 12px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(0, 220, 130, 0.05) 2px,
        rgba(0, 220, 130, 0.05) 4px
    );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 2rem;
}

.logo-image {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(0, 220, 130, 0.6));
    animation: heroLogoFloat 3s ease-in-out infinite;
}

@keyframes heroLogoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(0, 220, 130, 0.5);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light);
    opacity: 0.8;
    font-weight: 300;
}

/* Section Headers */
.section-header {
    margin-bottom: 2rem;
    text-align: center;
}

.section-header h2 {
    color: var(--primary);
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 220, 130, 0.3);
}

.section-header h2 i {
    font-size: 1.8rem;
}

/* Project Section */
.project-section {
    margin-bottom: 4rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.project-card {
    background: var(--darker);
    border: 1px solid rgba(0, 220, 130, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform var(--transition-speed);
}

.project-card:hover::before {
    transform: scaleX(1);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 220, 130, 0.2);
    border-color: var(--primary);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
}

.project-card h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.project-card p {
    color: var(--light);
    line-height: 1.6;
    opacity: 0.9;
}

.project-card ul {
    color: var(--light);
    padding-left: 1.5rem;
}

.project-card li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Developer Section */
.developer-section {
    margin-bottom: 4rem;
}

.developer-card {
    background: var(--darker);
    border: 1px solid rgba(0, 220, 130, 0.2);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.developer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.developer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 220, 130, 0.2);
}

.developer-avatar {
    font-size: 5rem;
    color: var(--primary);
    background: rgba(0, 220, 130, 0.1);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid rgba(0, 220, 130, 0.3);
}

.developer-info {
    flex: 1;
}

.developer-name {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.developer-handle {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
}

.developer-bio {
    color: var(--light);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 220, 130, 0.1);
    border: 1px solid rgba(0, 220, 130, 0.3);
    border-radius: 8px;
    color: var(--light);
    text-decoration: none;
    transition: all var(--transition-speed);
    font-size: 0.9rem;
}

.social-link:hover {
    background: rgba(0, 220, 130, 0.2);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.social-link.github:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    color: #ffffff;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #e6683c;
    color: white;
}

.social-link.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: #0077b5;
    color: #0077b5;
}

/* Disclaimer Section */
.disclaimer-section {
    margin-bottom: 3rem;
}

.disclaimer-card {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.disclaimer-icon {
    font-size: 3rem;
    color: var(--warning);
    margin-bottom: 1rem;
}

.disclaimer-card h3 {
    color: var(--warning);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.disclaimer-card p {
    color: var(--light);
    line-height: 1.6;
    opacity: 0.9;
}

/* Version Section */
.version-section {
    margin-bottom: 3rem;
}

.version-info {
    background: var(--darker);
    border: 1px solid rgba(0, 220, 130, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.version-info h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.version-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.version-details:last-child {
    border-bottom: none;
}

.version-label {
    color: var(--light);
    opacity: 0.8;
}

.version-number,
.version-date,
.version-license {
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--darker);
    border-top: 1px solid rgba(0, 220, 130, 0.2);
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    text-align: center;
    color: var(--light);
    opacity: 0.8;
}

.footer-content p {
    margin-bottom: 0.5rem;
}

.footer-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-content a:hover {
    color: var(--secondary);
}

.footer-content i {
    color: var(--danger);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .developer-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .developer-avatar {
        width: 100px;
        height: 100px;
        font-size: 4rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .version-details {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .logo-image {
        width: 80px;
        height: 80px;
    }
    
    .project-card,
    .developer-card,
    .disclaimer-card,
    .version-info {
        padding: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
}