/* css styles */
/* -------------------------------
   GENERAL STYLING
---------------------------------*/
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdfdfd;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    font-weight: 600;
    color: #222;
}

a {
    color: #0077cc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* -------------------------------
   NAVBAR
---------------------------------*/
.navbar {
    background-color: #2E4057;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #fff;
}

.navbar a {
    margin: 0 15px;
    font-weight: 500;
    color: #fff;
}


/* -------------------------------
   HERO SECTION (Homepage)
---------------------------------*/
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: #f5f5f5;
    border-bottom: 1px solid #e0e0e0;
}

.hero img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.hero h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
    color: #555;
    max-width: 600px;
}

.about-hero {
    display: flex;
    align-items: center;
    margin: 40px 0;
    font-size: 1.1em;
    line-height: 1.6;
}

.about-hero img {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
/* -------------------------------
   BLOG LISTING
---------------------------------*/
.blog-post {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
}

.blog-post h2 {
    margin: 0;
    font-size: 1.5em;
}

.blog-post p {
    margin: 8px 0;
    color: #555;
}

.blog-categories {
    font-size: 0.9em;
    color: #888;
}

/* -------------------------------
   CV PAGE
---------------------------------*/
.cv-section {
    margin-bottom: 40px;
}

.cv-section h2 {
    border-bottom: 2px solid #0077cc;
    padding-bottom: 6px;
    margin-bottom: 15px;
}

.cv-entry {
    margin-bottom: 15px;
}

.cv-entry strong {
    display: block;
    font-size: 1.1em;
}

/* -------------------------------
   PROJECTS PAGE
---------------------------------*/
.project-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.project-card h3 {
    margin-top: 0;
}

.project-card a.github-link img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-left: 8px;
}

/* -------------------------------
   RESPONSIVE DESIGN
---------------------------------*/
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }
}

.footer {
    color: #C0D461;
}
