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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

img,
picture,
svg,
video {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  padding: 2rem;
  padding-left: 8rem;
  padding-right: 8rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.0392156863);
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/grid-design.png");
  background-size: 900px auto;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
}
.hero-banner > * {
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.name {
  font-family: "Space Grotesk", sans-serif;
  color: #f0f1f0;
  font-size: 5rem;
  font-weight: 100;
  line-height: 1;
}

.role {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.7rem;
  font-weight: 100;
}

.hero-buttons {
  padding-top: 1rem;
  display: inline-flex;
  gap: 2rem;
  font-weight: 600;
  white-space: nowrap;
}

.projects-btn {
  padding: 1rem 1.6rem;
  border: 1px solid #d43d85;
  color: #d43d85;
  background-color: transparent;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 1rem, 100% 100%, 1rem 100%, 0 calc(100% - 1rem));
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.projects-btn:hover {
  background-color: #d43d85;
  color: #0a0e10;
  box-shadow: 0 0 24px rgba(212, 61, 133, 0.4);
}

.contact-btn {
  padding: 1rem 1.6rem;
  border: 1px solid #53bdc1;
  color: #53bdc1;
  background-color: transparent;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 1rem) 0, 100% 1rem, 100% 100%, 1rem 100%, 0 calc(100% - 1rem));
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.contact-btn:hover {
  background-color: #53bdc1;
  color: #0a0e10;
  box-shadow: 0 0 24px rgba(83, 189, 193, 0.4);
}

.hero-portrait {
  max-width: 900px;
}

.hero-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 20rem;
  gap: 1rem;
}

.base-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.skill-section {
  border-bottom: 2px solid rgba(255, 255, 255, 0.0392156863);
  padding: 1rem;
  padding-left: 8rem;
  padding-right: 8rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 4rem;
}

.skills {
  color: #f0f1f0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  width: 100%;
}

.skill {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skill-img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}

.featured-projects-tab {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.3rem;
  padding-left: 8rem;
  padding-right: 8rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.0392156863);
}
.featured-projects-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/assets/images/grid-design.png");
  background-size: 900px auto;
  background-position: center;
  background-repeat: repeat;
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}
.featured-projects-tab > * {
  position: relative;
  z-index: 1;
}

.featured-projects {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.3rem;
}

@property --hov {
  syntax: "<number>";
  initial-value: 0;
  inherits: true;
}
.project-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 1rem;
  font-size: small;
  max-width: 33%;
  height: auto;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  --border-width: 4px;
  --scan-height: 45%;
  --blur-part: 0.25;
  --hov: 0;
  --scan-start: calc(
    var(--hov) * (100% + var(--scan-height)) - var(--scan-height)
  );
  border: solid var(--border-width) transparent;
  border-radius: 3px;
  background: linear-gradient(#0a0e10, #0a0e10) padding-box, linear-gradient(rgba(255, 255, 255, 0.0392156863), rgba(255, 255, 255, 0.0392156863)) border-box, linear-gradient(to bottom, transparent var(--scan-start), #d43d85 calc(var(--scan-start) + var(--blur-part) * var(--scan-height)) calc(var(--scan-start) + (1 - var(--blur-part)) * var(--scan-height)), transparent calc(var(--scan-start) + var(--scan-height))) border-box;
  background-blend-mode: normal, normal, screen;
  transition: --hov 0.65s ease-out;
}
.project-card:hover, .project-card:focus-within {
  --hov: 1;
}

.project-card-img {
  max-width: 40%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.0392156863);
  opacity: 30%;
  filter: saturate(40%);
  transition: all 0.65s ease-out;
}

.project-card:hover .project-card-img,
.project-card:focus-within .project-card-img {
  border-color: #76274b;
  opacity: 90%;
  filter: saturate(80%);
}

.project-card h4 {
  transition: all 0.65s ease-out;
}

.project-card:hover h4,
.project-card:focus-within h4 {
  color: #d43d85;
  font-weight: 700;
}

.project-card-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-related-skills {
  display: inline-flex;
  gap: 0.5rem;
}

.project-skill {
  padding: 0.3rem 0.5rem;
  border: 1px solid #8a8c8e;
  border-radius: 4px;
  white-space: nowrap;
}

.placeholder {
  border-bottom: 2px solid rgba(255, 255, 255, 0.0392156863);
  padding: 1.3rem;
  padding-left: 8rem;
  padding-right: 8rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 2rem;
  }
  .hero-left {
    width: 100%;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }
  .projects-btn,
  .contact-btn {
    width: 100%;
    justify-content: center;
  }
  .hero-right {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding-right: 0;
    gap: 1.5rem;
  }
  .hero-portrait {
    width: min(100%, 30rem);
    max-width: 100%;
  }
  .base-info {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    text-align: center;
  }
  .skill-section,
  .featured-projects-tab,
  .placeholder {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .skill-section {
    flex-direction: column;
    gap: 2rem;
  }
  .skills {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .featured-projects {
    flex-direction: column;
    gap: 1.5rem;
  }
  .project-card {
    flex-direction: column;
    max-width: 100%;
  }
  .project-card-img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .project-card-right {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hero-banner {
    padding: 1.25rem;
  }
  .name {
    font-size: clamp(3rem, 10vw, 4rem);
  }
  .role,
  .description,
  .section-title {
    font-size: 1rem;
  }
  .hero-buttons {
    gap: 0.75rem;
  }
  .projects-btn,
  .contact-btn {
    padding: 0.85rem 1rem;
  }
  .featured-projects {
    gap: 1rem;
  }
  .project-skill {
    white-space: normal;
  }
}/*# sourceMappingURL=home.css.map */