/* projects.css */

body {
    background-color: #1a202c;
    color: #e2e8f0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

h2 {
    color: #e67e22;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.project-category h3 {
    color: #68d391;
}

.project-item {
    background-color: #2d3748;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.project-item h4 {
    margin: 0;
}

.project-item a {
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
    display: inline-block;
}

.project-item a:hover {
    background-color: #0056b3;
}

.text-accent-color {
    color: #3498db;
}

.text-highlight-color {
    color: #e67e22;
}

/* Add subtle animations */
section {
    animation: fadeIn 0.5s ease-in-out both;
  }
  
  @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }