/* === Reset some defaults === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* === Body styling === */
body {
    line-height: 1.6;
    color: #111;
    background-color: #fefefe;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* === Hero Section === */
header.hero {
    text-align: center;
    padding: 60px 20px 40px;
}

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

header.hero .title {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 15px;
}

header.hero .social-links a {
    text-decoration: none;
    color: #0073b1; /* LinkedIn blue */
    margin: 0 10px;
    font-weight: 500;
}

header.hero .social-links a:hover {
    text-decoration: underline;
}

/* === Section Styling === */
section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

section ul {
    list-style-type: disc;
    margin-left: 20px;
}

section p {
    margin-bottom: 10px;
}

/* === Experience articles === */
.job {
    margin-bottom: 20px;
}

.job h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.job .date {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 5px;
}

/* === Footer === */
footer {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* === Responsive tweaks === */
@media (max-width: 600px) {
    header.hero h1 {
        font-size: 2rem;
    }

    header.hero .title {
        font-size: 1rem;
    }

    body {
        padding: 15px;
    }
}
