:root{
    /* Earthy modern palette */
    --bg: #f7f4ef;
    --surface: #fffdf9;
    --text: #393939;
    --muted: #847f7c;
    --accent: #3f436b;     /* olive green */
    --accent-warm: #3f3f3f;/* warm brown */
    --border: #e7e2dc;
    --shadow: 0 8px 24px rgba(45,38,33,0.08);
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
}

/* Layout card */
section {
    max-width: 800px;
    margin: 36px auto;
    background: linear-gradient(180deg, var(--surface), #fffaf6);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--accent-warm);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.25rem;
}

p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--muted);
    padding-top: 8px;
}

/* Links */
a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    transition: color .18s ease, transform .12s ease;
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    color: #1e1e1e;
    text-decoration: underline;
}

/* Lists */
ul, ol {
    margin-bottom: 1rem;
    padding-left: 1.05rem;
}

ul {
    list-style: none;
}

ul li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.6rem;
    color: var(--muted);
    font-size: 1.05rem;
}

ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: .5em;
    height: .5em;
    background: var(--accent);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid var(--border);
}

/* Buttons (utility) */
.button, button {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: transform .12s ease, box-shadow .12s ease;
}

.button:hover, button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(63,107,79,0.12);
}

/* Accessibility */
:focus {
    outline: 3px solid rgba(63,107,79,0.18);
    outline-offset: 3px;
}

/* Misc */
.experience-item {
    margin: 25px auto;
}
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 1.25rem 0;
}

.experience-logo {
    width: 70px;
    heigh: 70px;
    float:left;
    margin-right:15px;
    margin-bottom:15px;
}

/* Navigation */
/* nav {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    justify-content: flex-end;
}

nav ul {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    gap: 2rem;
    list-style: none;;
}

nav li {
    margin: 0;
    padding: 0;
    list-style: none;
}



nav a {
    display: block;
    padding: 1rem 0;
    color: var(--text);
    font-weight: 600;
    border-bottom: 3px solid transparent;
    transition: border-color .18s ease, color .18s ease;
}

nav a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
    text-decoration: none;
}

nav ul li::before{
    width:0;
    height: 0;
} */

h4 {
    font-weight: 500;
}
 

.avatar {
  vertical-align: middle;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}