@import './styles.css';
@import "../../node_modules/flag-icons/css/flag-icons.min.css";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.overlay-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.overlay-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.image-letter-container {
  position: absolute;
  z-index: 1002;
  width: 800px;
  height: 400px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
}
.image-letter-container.visible {
  transform: translate(-50%, -50%) scale(1);
}
.image-letter-container.visible .project-content {
  opacity: 1;
  transform: translateY(0);
}
.image-letter-container .project-content {
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.7) 50%, transparent);
  color: white;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease 0.2s;
}
.image-letter-container .project-content h3 {
  margin: 0 0 0.5rem 0;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.02em;
}
.image-letter-container .project-content p {
  margin: 0 0 1.5rem 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}
.image-letter-container .project-content .project-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: black;
  text-decoration: none;
  font-weight: 700;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.image-letter-container .project-content .project-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

main {
  display: flex;
  flex-direction: column;
}
main section.hero {
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
}
main section.hero h1 {
  font-size: calc(8rem + 5vw);
  text-align: center;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
}
main section.hero h1 div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.3s ease;
}
main section.hero h1 div span.hero-letter {
  display: inline-block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}
main section.hero h1 div span.hero-letter:hover {
  transform: scale(1.05) translateY(-10px);
}
main section.hero h2 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 500;
  color: #676767;
  font-family: "Inter", sans-serif;
  margin-top: 2rem;
}
main section.hero .hero-controls {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
}
main section.hero .hero-scroll-hint {
  display: none;
}
main section.hero .hero-toggle {
  position: relative;
  border: 0;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 999px;
  width: 74px;
  height: 38px;
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease, transform 120ms ease;
}
main section.hero .hero-toggle:hover {
  transform: translateY(-1px);
}
main section.hero .hero-toggle:focus-visible {
  outline: 4px solid rgba(0, 0, 0, 0.2);
  outline-offset: 4px;
}
main section.hero .hero-toggle::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 22px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  transition: background-color 150ms ease;
}
main section.hero .hero-toggle::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  transition: left 150ms ease;
}
main section.hero .hero-toggle[aria-pressed=true]::before {
  background: #5C9D16;
}
main section.hero .hero-toggle[aria-pressed=true]::after {
  left: 45px;
}
main section.hero .hero-toggle-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.66);
}
main section.presentation {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem;
  padding-top: 6rem;
  background-image: linear-gradient(180deg, #fff 0%, rgba(113, 188, 32, 0.1) 20%);
}
main section.presentation h2 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
main section.presentation div.presentation-content {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
main section.presentation div.presentation-content div.presentation-content-left {
  width: 30%;
  font-size: 1rem;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
}
main section.presentation div.presentation-content div.presentation-content-left img {
  width: 70%;
}
main section.presentation div.presentation-content div.presentation-content-right {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.6;
}
main section.presentation div.presentation-content div.presentation-content-right h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
main section.presentation div.presentation-content div.presentation-content-right p {
  margin-bottom: 1rem;
}
main section.quote {
  padding: 8rem 4rem;
  background-color: #090909;
  color: white;
}
main section.quote blockquote {
  border-left: 2px solid #fff;
  font-size: 3rem;
  font-weight: 500;
  width: 80%;
}
main section.quote blockquote p {
  margin-left: 4rem;
}
main section.projects {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 6rem 4rem 8rem;
}
main section.projects div.projects-header {
  margin-bottom: 2.5rem;
}
main section.projects div.projects-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
}
main section.projects div.projects-body {
  display: flex;
  gap: 2rem;
  width: 80%;
  justify-content: center;
  margin: 0 auto;
}
main section.projects div.projects-body a.projects-link {
  width: 80%;
  aspect-ratio: 1/1;
  text-decoration: none;
  color: inherit;
  background-size: cover;
  background-position: center;
  border-radius: 2rem;
  padding: 2rem;
  display: flex;
}
main section.projects div.projects-body a.projects-link span {
  color: white;
  font-size: 3rem;
  font-weight: 700;
}
main section.projects div.projects-body a.projects-link.school-projects {
  justify-content: flex-start;
  align-items: flex-start;
}
main section.projects div.projects-body a.projects-link.game-jam-projects {
  justify-content: flex-end;
  align-items: flex-end;
}
main section.projects a.see-more-projects-btn {
  display: flex;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  background-color: #000000;
  border-radius: 2rem;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  main section.quote {
    padding: 5rem 1.5rem;
  }
  main section.quote blockquote {
    font-size: 1.8rem;
    width: 100%;
  }
  main section.quote blockquote p {
    margin-left: 1.25rem;
  }
}
body.home-letters-solid main section.hero h1 div span.hero-letter {
  -webkit-text-fill-color: #5C9D16;
  color: #5C9D16;
  background-image: none !important;
  cursor: default;
  pointer-events: none;
}
body.home-letters-solid main section.hero h1 div span.hero-letter:hover {
  transform: none;
}

@media screen and (max-width: 1000px) {
  main section.presentation div.presentation-content {
    flex-direction: column;
    align-items: center;
  }
  main section.presentation div.presentation-content div.presentation-content-left,
  main section.presentation div.presentation-content div.presentation-content-right {
    width: 80%;
  }
  main section.presentation div.presentation-content div.presentation-content-left img {
    width: 50%;
  }
}
@media screen and (max-width: 860px) {
  .image-letter-container {
    width: min(92vw, 560px);
    height: min(46vh, 360px);
  }
}
@media screen and (max-width: 768px) {
  main section.hero {
    padding: 0 1.25rem;
  }
  main section.hero h1 {
    font-size: clamp(3.8rem, 18vw, 6rem);
  }
  main section.hero h1 div {
    flex-wrap: wrap;
  }
  main section.hero h2 {
    margin-top: 1rem;
    font-size: 1.15rem;
  }
  main section.hero .hero-toggle {
    transform: none;
  }
  main section.hero .hero-toggle-label {
    font-size: 0.9rem;
  }
  .image-letter-container {
    width: min(92vw, 520px);
    height: min(50vh, 360px);
  }
  .image-letter-container .project-content {
    padding: 1.25rem;
  }
  .image-letter-container .project-content h3 {
    font-size: 1.5rem;
  }
  .image-letter-container .project-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  main section.presentation {
    padding: 2rem;
    padding-top: 4rem;
  }
  main section.presentation div.presentation-content div.presentation-content-left,
  main section.presentation div.presentation-content div.presentation-content-right {
    width: 100%;
  }
  main section.presentation div.presentation-content div.presentation-content-left img {
    width: 80%;
  }
  main section.projects {
    padding: 4rem 2rem;
  }
  main section.projects h2 {
    font-size: clamp(2.6rem, 4.2vw, 4.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: center;
  }
  main section.projects div.projects-body {
    flex-direction: column;
    width: 100%;
  }
  main section.projects div.projects-body a.projects-link {
    width: 100%;
    aspect-ratio: 1/1;
    height: 100%;
  }
  main section.projects div.projects-body a.projects-link span {
    font-size: 2rem;
  }
}
main section.tools {
  padding: 6rem 4rem 7rem;
}
main section.tools .tools-header {
  margin-bottom: 2.5rem;
}
main section.tools .tools-header h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
main section.tools .tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.tool-card {
  --tool-size: 132px;
  --tool-open-width: 600px;
  --tool-open-height: 176px;
  --tool-radius: 999px;
  --tool-scale-x: 0.2;
  --tool-scale-y: 0.75;
  --tool-surface: rgba(0, 0, 0, 0.86);
  --tool-text: rgba(0, 0, 0, 0.86);
  --tool-muted: rgba(0, 0, 0, 0.86);
  --tool-accent: #00D084;
  position: relative;
  width: var(--tool-size);
  height: var(--tool-size);
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--tool-radius);
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: visible;
}
.tool-card:hover, .tool-card.is-open {
  z-index: 20;
}
.tool-card:focus-visible {
  outline: 4px solid rgba(0, 0, 0, 0.18);
  outline-offset: 6px;
}
.tool-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: var(--tool-open-width);
  height: var(--tool-open-height);
  border-radius: var(--tool-radius);
  background: var(--tool-accent);
  transform-origin: left top;
  transform: scale(var(--tool-scale-x), var(--tool-scale-y));
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 0;
}
.tool-card__icon {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--tool-accent);
  color: rgba(0, 0, 0, 0.88);
  font-size: 3rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
  position: relative;
  z-index: 2;
}
.tool-card__icon img {
  width: 60%;
  height: 60%;
  -o-object-fit: contain;
     object-fit: contain;
}
.tool-card__content {
  position: absolute;
  top: 0;
  left: calc(var(--tool-size) + 22px);
  transform: translateX(-8px);
  width: calc(var(--tool-open-width) - var(--tool-size) - 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  color: var(--tool-text);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 220ms cubic-bezier(0.2, 0.9, 0.2, 1);
  z-index: 2;
  text-align: left;
}
.tool-card__title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.tool-card__desc {
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--tool-muted);
  max-width: 42ch;
}
.tool-card:hover .tool-card__icon, .tool-card.is-open .tool-card__icon {
  transform: scale(1.03);
}
.tool-card:hover::before, .tool-card.is-open::before {
  opacity: 1;
  transform: scale(1);
}
.tool-card:hover .tool-card__content, .tool-card.is-open .tool-card__content {
  opacity: 1;
}
.tool-card.tool-card--open-left::before {
  left: auto;
  right: 0;
  transform-origin: right top;
  transform: scale(var(--tool-scale-x), var(--tool-scale-y));
}
.tool-card.tool-card--open-left .tool-card__content {
  left: auto;
  right: calc(var(--tool-size) + 22px);
  transform: translateX(8px);
  text-align: left;
  padding-left: 24px;
}
.tool-card.tool-card--open-left:hover::before, .tool-card.tool-card--open-left.is-open::before {
  transform: scale(1);
}
.tool-card.tool-card--open-left:hover .tool-card__content, .tool-card.tool-card--open-left.is-open .tool-card__content {
  transform: translateX(0) translateY(0);
}

@media (max-width: 900px) {
  .tool-card {
    --tool-size: 118px;
  }
  .tool-card__title {
    font-size: 2.15rem;
  }
  .tool-card__desc {
    font-size: 1.15rem;
  }
}
@media (max-width: 768px) {
  main section.tools {
    padding: 4.5rem 1.5rem 5rem;
  }
  main section.tools .tools-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
  }
  .tool-card {
    width: 100%;
    height: auto;
    padding: 1rem 0.75rem 1.25rem;
    border-radius: 18px;
    background: var(--tool-accent);
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  .tool-card::before {
    display: none;
  }
  .tool-card__icon {
    width: 92px;
    height: 92px;
    font-size: 2.25rem;
  }
  .tool-card__content {
    position: static;
    width: 100%;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    text-align: center;
    height: auto;
    margin-top: 12px;
  }
  .tool-card__title {
    font-size: 1.1rem;
  }
  .tool-card__desc {
    font-size: 0.95rem;
  }
}
html {
  scroll-behavior: smooth;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  transition: transform 120ms ease, background-color 120ms ease;
}
.back-to-top:hover {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.85);
}
.back-to-top:active {
  transform: translateY(0);
}
.back-to-top:focus-visible {
  outline: 4px solid rgba(0, 0, 0, 0.2);
  outline-offset: 4px;
}

@media (max-width: 768px) {
  .back-to-top {
    right: 1rem;
    bottom: 1rem;
  }
}
@media (max-width: 768px) {
  main section.hero {
    padding-bottom: 4rem;
  }
  main section.hero .hero-scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.06);
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
  }
  main section.hero .hero-scroll-hint__icon {
    font-size: 1rem;
    line-height: 1;
  }
}/*# sourceMappingURL=index.css.map */