@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --bg-dark: #0a192f;
    --text-primary: #ccd6f6;
    --text-secondary: #8892b0;
    --accent-green: #64ffda;
    --card-blue: #112240;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    font-size: 16px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Header and Navigation */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}
.logo img { height: 35px; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 40px; }
.main-nav a { color: var(--text-primary); text-decoration: none; font-size: 14px; }
.main-nav a.active { color: var(--accent-green); }

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
}
.hero-text { flex-basis: 60%; }
.hero-text .intro-text { color: var(--text-secondary); margin: 0; }
.hero-text h1 {
    color: var(--accent-green);
    font-size: 48px;
    font-weight: 700;
    margin: 10px 0;
    line-height: 1.2;
}
.hero-text h2 {
    color: var(--text-primary);
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 40px 0;
}
.cta-button {
    background-color: var(--accent-green);
    color: var(--bg-dark);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
}
.hero-image-container {
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image-container img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
}

/* Main Content Layout */
.content-wrapper {
    display: flex;
    gap: 100px; /* Space between the two columns */
}
.left-column { flex: 2; }
.right-column { flex: 1; }

/* Shared Section Styles */
section h3 {
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Project Sections */
.featured-project-card {
    background-color: var(--card-blue);
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 15px;
}
.featured-project-card img {
    max-height: 100%;
    max-width: 100%;
    border-radius: 4px;
}
#detailed-projects { margin-top: 50px; }
.detailed-projects-list p {
    color: var(--text-secondary);
    margin: 0 0 15px 0;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--card-blue);
}

/* Skills Section */
.skills-list .skill-item { margin-bottom: 25px; }
.skills-list h4 {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}
.skills-list p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}