@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    background-color: #121212;
    color: #e0e0e0;
    margin: 0;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
}

header {
    background: #1f1f1f;
    border-bottom: #333 1px solid;
    padding: 10px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    color: #ffffff;
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

header .logo:hover {
    color: #bb86fc;
}

header nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

header nav ul li {
    display: inline;
    margin-left: 20px;
}

header nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

header nav ul li a:hover {
    color: #bb86fc;
    transform: translateY(-2px);
}

#about {
    padding: 40px 0;
    display: flex;
    align-items: center;
}

#about .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.profile-pic {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-pic:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(187, 134, 252, 0.3);
}

.about-text h2 {
    color: #ffffff;
    font-weight: 500;
}

.social-links a {
    color: #bb86fc;
    text-decoration: none;
    margin-right: 10px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.social-links a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

#skills, #experience, #projects-summary, #projects {
    padding: 40px 0;
}

#skills ul {
    list-style: none;
    padding: 0;
}

#skills li {
    background: #1f1f1f;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 3px solid #bb86fc;
    transition: transform 0.2s ease, background-color 0.3s ease, border-left-width 0.3s ease;
}

#skills li:hover {
    transform: translateX(10px);
    background-color: #2a2a2a;
    border-left-width: 6px;
}

.job, .project-summary {
    background: #1f1f1f;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.job h3 {
    font-weight: 500;
    margin-bottom: 5px;
}

.job a {
    color: #bb86fc;
    text-decoration: none;
    position: relative;
    padding: 2px 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: rgba(187, 134, 252, 0.1);
    border: 1px solid rgba(187, 134, 252, 0.2);
}

.job a:hover {
    color: #ffffff;
    background: rgba(187, 134, 252, 0.2);
    border-color: rgba(187, 134, 252, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(187, 134, 252, 0.2);
}

/* Project Cards */
.project-card {
    padding: 1.5rem;
    margin: 1rem 0;
    border: 1px solid #333;
    border-radius: 8px;
    background: #1a1a1a;
    transition: all 0.3s ease;
    cursor: pointer;
}

.project-card:hover {
    transform: translateY(-5px);
    border-color: #007acc;
    box-shadow: 0 8px 20px rgba(0, 122, 204, 0.2);
    background: #222;
}

.project-card h3 {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.project-card:hover h3 {
    color: #007acc;
}

.project-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

.btn {
    display: inline-block;
    background: #bb86fc;
    color: #121212;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
    transition: transform 0.2s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(187, 134, 252, 0.4);
    background-color: #9c6fd9;
}

footer {
    background: #1f1f1f;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

h2 {
    font-weight: 500;
    color: #ffffff;
}

h3 {
    font-weight: 500;
}