/* ProjectPulse - Global Styles */

.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #00F5D4, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Project Content Styling */
.project-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #00F5D4;
}

.project-content h2:first-child {
    margin-top: 0;
}

.project-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: #8B5CF6;
}

.project-content p {
    margin-bottom: 1rem;
    line-height: 1.625;
}

.project-content ul, 
.project-content ol {
    margin-bottom: 1rem;
    margin-left: 1.5rem;
}

.project-content li {
    margin-bottom: 0.5rem;
}

.project-content ul li::before {
    content: "▸";
    color: #00F5D4;
    margin-right: 8px;
}

/* Hero Animations */
.hero-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Card Hover Effects */
.project-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 245, 212, 0.1);
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #161B22 25%, #21262D 50%, #161B22 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .project-content h2 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .project-content h3 {
        font-size: 1.125rem;
        margin-top: 1rem;
    }
}
