@charset "UTF-8";
/* VARIABLES */
/* box-shadow: 0 0 20px rgba(59,130,246,0.15); */
/* DEFAULTS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #fff;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

.container {
  display: grid;
  gap: 2rem;
  padding: 5% 10%;
  text-align: center;
  justify-items: center;
}

.divider-light {
  height: 1px;
  background-color: white;
  width: 100%;
  justify-self: center;
}

.divider-dark {
  height: 1px;
  background-color: black;
  width: 100%;
  justify-self: center;
}

img {
  max-width: 100%;
  max-height: 100%;
}

#header {
  padding: 0 20%;
  position: sticky;
  top: 0;
  background-color: #1e293b;
  color: white;
  z-index: 999;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#header.scrolled .brand {
  font-size: 1.5rem;
}
#header .menu {
  display: flex;
  flex-direction: row;
  padding: 2rem;
  justify-content: space-between;
}
#header .brand {
  font-size: 2rem;
  font-weight: 500;
  transition: font-size 0.3s ease;
}
#header .links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#hero {
  background-color: #1e293b;
  justify-items: center;
}
#hero img {
  width: 28%;
  border-radius: 100%;
}
#hero h1 {
  font-size: 4rem;
  font-weight: 500;
}
#hero h3 {
  font-size: 2rem;
  color: #cbd5e1;
}

main {
  margin: 0 10rem;
  color: black;
}

#about .container {
  justify-items: start;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
#about .about-content {
  display: grid;
  gap: 1.25rem;
  padding: 0 10%;
  text-align: left;
}
#about .about-content h2 {
  max-width: 40rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
}
#about .about-content p {
  color: #475569;
  line-height: 1.8;
}
#about .about-content .about-intro {
  color: #1e293b;
  font-size: 1.15rem;
}
#about .section-label {
  color: #3b82f6;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

#skills {
  background-color: #eee;
}
#skills .container {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
#skills .section-heading {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  max-width: 70%;
}
#skills .section-heading p {
  color: #111;
  line-height: 1.7;
}
#skills .section-label {
  color: #3b82f6;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}
#skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 70rem;
  text-align: left;
}
#skills .skill-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background-color: white;
  box-shadow: 0 0.75rem 2rem rgba(30, 41, 59, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#skills .skill-card:hover {
  transform: translateY(-0.35rem);
  box-shadow: 0 1rem 2.5rem rgba(30, 41, 59, 0.14);
}
#skills .skill-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
}
#skills .skill-card p {
  color: #111;
  font-size: 0.95rem;
  line-height: 1.6;
}
#skills .skill-number {
  color: #3b82f6;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
#skills .skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}
#skills .skill-list li {
  padding: 0.45rem 0.7rem;
  background-color: rgba(59, 130, 246, 0.1);
  border-radius: 2rem;
  color: #245fad;
  font-size: 0.8rem;
  font-weight: 600;
}

#projects .container {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
#projects .project-heading {
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: 46rem;
}
#projects .project-heading p {
  color: #111;
  line-height: 1.7;
}
#projects .section-label {
  color: #3b82f6;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
}
#projects .projects-grid {
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 62rem;
  text-align: left;
}
#projects .project-card {
  display: grid;
  grid-template-columns: 1fr auto;
  min-width: 0;
  padding: 2rem;
  background-color: white;
  border-left: 3px solid transparent;
  color: #000;
  box-shadow: 0 0.35rem 1.25rem rgba(30, 41, 59, 0.07);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
#projects .project-card:hover {
  border-left-color: #3b82f6;
  transform: translateX(0.25rem);
}
#projects .project-type {
  color: #3b82f6;
  font-size: 0.75rem;
  font-weight: 600;
}
#projects .project-content {
  display: grid;
  gap: 0.85rem;
  max-width: 43rem;
}
#projects .project-content h3 {
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.2;
}
#projects .project-content h4 {
  margin-bottom: 0.5rem;
  color: #475569;
  font-size: 0.7rem;
  letter-spacing: 0.06rem;
  text-transform: uppercase;
}
#projects .project-content p {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.65;
}
#projects .project-skills {
  margin-top: 0.4rem;
}
#projects .project-skills ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
#projects .project-skills li {
  color: #475569;
  font-size: 0.8rem;
}
#projects .project-skills li:not(:last-child)::after {
  margin-left: 0.5rem;
  color: #94a3b8;
  content: "·";
}
#projects .project-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-left: 2rem;
}
#projects .project-link {
  color: #3b82f6;
  font-size: 0.8rem;
  font-weight: 600;
}
#projects .project-link:is(a):hover {
  text-decoration: underline;
}
#projects .project-link.unavailable {
  color: #94a3b8;
  font-weight: 400;
}

#footer {
  background-color: #1e293b;
}
#footer .container {
  grid-template-columns: 1fr 1fr;
  padding: 5% 20%;
  text-align: left;
}
#footer .footer-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#footer .footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
#footer .footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: #cbd5e1;
  transition: color 0.2s ease;
}
#footer .footer-links a:hover {
  color: white;
}
#footer .footer-links svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: white;
}
#footer h2 {
  font-size: 2rem;
}

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