:root {
    --bg:     #FFF0DD;
    --text:   #3c4448;
    --accent: #E2A16F;
    --head:   #4a7d8c;
    --line:   #D1D3D4;
    --soft:   #86B0BD;
}

html[data-theme="terra"] {
    --bg:     #FFF0DD;
    --text:   #3c4448;
    --accent: #E2A16F;
    --head:   #4a7d8c;
    --line:   #D1D3D4;
    --soft:   #86B0BD;
}

html[data-theme="sage"] {
    --bg:     #FCF9EA;
    --text:   #3a3f33;
    --accent: #FFA239;
    --head:   #7a8c5e;
    --line:   #e2e6d6;
    --soft:   #A8BBA3;
}

html[data-theme="deniz"] {
    --bg:     #ECEEDF;
    --text:   #4f5b5e;
    --accent: #b98a63;
    --head:   #4d6b76;
    --line:   #dcdccb;
    --soft:   #BBDCE5;
}

html[data-theme="gunes"] {
    --bg:     #FFF9D2;
    --text:   #4a5560;
    --accent: #5b93c4;
    --head:   #3f6d97;
    --line:   #f0e6c2;
    --soft:   #8CC0EB;
}

html[data-theme="krem"] {
    --bg:     #F9F8F6;
    --text:   #55504a;
    --accent: #a68a6a;
    --head:   #4f463c;
    --line:   #e6ded6;
    --soft:   #C9B59C;
}

html[data-theme="gul"] {
    --bg:     #FAF7F3;
    --text:   #5a4f4a;
    --accent: #c07d73;
    --head:   #8a5f57;
    --line:   #ece0d3;
    --soft:   #DCC5B2;
}

html[data-theme="seftali"] {
    --bg:     #FFF2EB;
    --text:   #6b5850;
    --accent: #e08a6a;
    --head:   #b56a52;
    --line:   #ffe0d0;
    --soft:   #e8b3a8;
}

html[data-theme="bulut"] {
    --bg:     #FFFBEB;
    --text:   #5f5a50;
    --accent: #d99560;
    --head:   #5487a3;
    --line:   #f2ead0;
    --soft:   #bfe0f0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Host Grotesk", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

main {
    max-width: 560px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.lang {
    text-align: right;
    font-size: 0.85rem;
    margin: 0 0 1.5rem;
}

.lang a {
    color: var(--soft);
}

.lang a.on {
    color: var(--head);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px;
}

h1 {
    color: var(--head);
    font-weight: 700;
    font-size: 2rem;
    margin: 0;
    letter-spacing: -0.02em;
}

.sub {
    color: var(--text);
    margin: 0.15rem 0 1rem;
}

.alias {
    color: var(--accent);
    font-weight: 500;
}

.links {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    margin: 0 0 2.25rem;
    font-size: 0.9rem;
}

.links a {
    white-space: nowrap;
}

.links a::after {
    content: "↗";
    display: inline-block;
    font-size: 0.8em;
    margin-left: 0.15rem;
    color: var(--soft);
}

.links a:not(:first-child)::before {
    content: "·";
    display: inline-block;
    margin: 0 0.7rem;
    color: var(--line);
}

.links a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.links a:hover::before {
    color: var(--line);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.15s ease;
}

a:hover {
    color: var(--head);
}

.about {
    margin: 0 0 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--line);
}

h2 {
    color: var(--head);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 2.5rem 0 1.1rem;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2.25rem;
}

li {
    margin-bottom: 0.9rem;
}

li a {
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--accent);
}

li a:hover {
    color: var(--accent);
}

.role {
    display: block;
    font-weight: 600;
    color: var(--text);
}

.available {
    margin-bottom: 1.75rem;
}

.avail-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.avail-head .role {
    margin: 0;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: 0.35rem;
    vertical-align: middle;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.35; transform: scale(0.7); }
}

.cta {
    font-weight: 600;
    color: var(--accent);
    white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
    .dot { animation: none; }
}

.date {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
}

.desc {
    display: block;
    margin-top: 0.5rem;
}

.tech {
    display: block;
    margin-top: 0.7rem;
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    color: var(--accent);
}

footer {
    color: var(--soft);
    font-size: 0.85rem;
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--line);
}

@media (max-width: 600px) {
    main {
        padding: 2.75rem 1.25rem;
    }
    h1 {
        font-size: 1.7rem;
    }
    body {
        font-size: 15.5px;
    }
    h2 {
        margin-top: 2rem;
    }
}
