*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: #0b0c10;
  color: #e5e7eb;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #3b82f6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
}

.site-header, .site-footer {
  border-top: 1px solid #1f2430;
  border-bottom: 1px solid #1f2430;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}

.site-header .container,
.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.site-title {
  margin: 0;
  font-size: 1rem;
  color: #e5e7eb;
}

.site-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: #9ca3af;
}

.site-nav a:hover {
  color: #e5e7eb;
}

.site-footer small {
  color: #9ca3af;
}

.personal {
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.25rem;
  align-items: center;
  padding-block: 2rem;
}
.personal__photo {
  width: 120px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #1f2430;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.personal__data {
  color: #e5e7eb;
}
.personal__name {
  margin: 0 0 0.25rem 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.2;
}
.personal__contact {
  margin: 0 0 0.75rem 0;
  color: #9ca3af;
}
.personal__contact a {
  color: #e5e7eb;
  text-underline-offset: 3px;
}
.personal__links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.personal__links .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.06s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
  background: #3b82f6;
  color: white;
}
.personal__links .btn:active {
  transform: translateY(1px);
}
.personal__links .btn:hover {
  background: #2563eb;
}
.personal__links .btn--outline {
  background: transparent;
  color: #e5e7eb;
  border-color: #1f2430;
}
.personal__links .btn--outline:hover {
  border-color: #3b82f6;
  color: #3b82f6;
}
@media (max-width: 480px) {
  .personal {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .personal__photo {
    margin-inline: auto;
  }
  .personal__links {
    justify-content: center;
  }
}

.teaser {
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
  padding-block: 1rem 2rem;
}
.teaser__title {
  color: #e5e7eb;
  margin-bottom: 0.75rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}
.teaser__box {
  background: #111318;
  border: 1px solid #1f2430;
  border-radius: 16px;
  padding: 1.25rem;
  color: #e5e7eb;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.teaser__box p {
  margin: 0;
  line-height: 1.6;
  color: #9ca3af;
}

.skills {
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
  padding-block: 2rem 3rem;
}
.skills__title {
  color: #e5e7eb;
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
}
.skills__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .skills__grid {
    grid-template-columns: 1fr;
  }
}
.skills__column {
  background: #111318;
  border: 1px solid #1f2430;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.skills__subtitle {
  margin: 0 0 0.5rem 0;
  color: #e5e7eb;
  font-weight: 700;
}
.skills__list {
  margin: 0;
  padding-left: 1.25rem;
  color: #9ca3af;
}
.skills__list li {
  margin: 0.35rem 0;
}

/*# sourceMappingURL=main.css.map */
