:root {
    --bg-dark: #0b0c10;
    --text-light: #f9f9f9;
    --accent: #00ff99;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

html {
  scroll-behavior: smooth;
}

header {
    position: sticky;
    top: 0;
    background-color: #0b0c10cc;
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    z-index: 1000;
}

header img.logo {
    max-height: 40px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 0.7rem;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

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

.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1rem;
}

.intro {
    text-align: center;
}

.intro img {
    width: 140px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.intro h1 {
    font-family: 'Source Code Pro', monospace;
    font-size: 2rem;
    color: var(--accent);
}

.intro p {
    max-width: 700px;
    margin: 0 auto;
}

.cta-btn {
    display: inline-block;
    background-color: var(--accent);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    text-decoration: unset;
}

.expertises {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertises h3 {
    font-family: 'Source Code Pro', monospace;
    color: var(--accent);
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 0.5rem;
}

ul li i {
    position: absolute;
    left: 0;
    top: 0.2rem;
    color: var(--accent);
}

.leadership {
    max-width: 800px;
    margin: 0 auto;
}

.leadership h3 {
    font-family: 'Source Code Pro', monospace;
    color: var(--accent);
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1rem;
}


.contact {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background: #1a1b1f;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

form input, form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    background: #0b0c10;
    color: var(--text-light);
    font-family: inherit;
}

form button {
    width: 100%;
    display: inline-block;
    background-color: var(--accent);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

form button:hover {
    background-color: #00cc7a;
}

footer {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    color: #aaa;
}

.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text h3 {
    font-family: 'Source Code Pro', monospace;
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.about-text p {
    line-height: 1.6;
}

.about-languages {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
}

.about-languages li i {
    color: var(--accent);
    margin-right: 5px;
}

.about-img {
    flex: 1;
    min-width: 260px;
    text-align: center;
}

.about-img img {
    max-width: 280px;
    border-radius: 12px;
}

.linkedin-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.linkedin-links a:hover {
    color: var(--accent);
}

altcha-widget {
    display: block;
    max-width: 170px;
    margin: 1rem 0;
    accent-color: var(--accent);
}

.altcha-label {
    margin-bottom: 0.0rem
}

#skills h3  {
    font-family: 'Source Code Pro', monospace;
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.skill-item i {
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.skill-item p {
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

strong {
    /* font-size: 1.1em; */
    color: var(--accent);
}