/* style.css - Dark Mode Theme */
body {
    font-family: 'EB Garamond';
    margin: 0;
    background-color: #121212;
    color: #f0f0f0;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

header {
    background-color: #1f1f1f;
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: 2px solid #333;
}

h2 {
    color: #ffffff;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

h3 {
    color: #9fe870;
}

a {
    color: #77ddff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.skills-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.5rem;
}

.skills-list li {
    background-color: #1e1e1e;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
}

.project {
    background-color: #1a1a1a;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border-left: 4px solid #9fe870;
}

footer {
    background-color: #1f1f1f;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #888;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Hover effects for links and projects */
a:hover {
    color: #fff;
    text-shadow: 0 0 10px #77ddff;
}

.project:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 0 10px rgba(159, 232, 112, 0.3);
}
