html,
body {
  scroll-behavior: auto !important;
  overflow-x: hidden;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #fff;
  color: #171717;
  cursor: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.header .nav-desktop a {
  display: flex;
  gap: 16px;
}

.resume-svg-btn {
  display: inline-block;
  width: 111px;
  height: 35px;
  cursor: pointer;
  text-decoration: none;
}
.resume-svg-btn svg {
  width: 100%;
  height: auto;
  display: block;
}
.resume-svg-btn .btn-shape {
  fill: #f8f8f8;
  stroke: #d3d3d3;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.resume-svg-btn .btn-label {
  fill: #171717;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: fill 0.3s ease;
  pointer-events: none;
}
.resume-svg-btn:hover .btn-shape {
  fill: #171717;
}
.resume-svg-btn:hover .btn-label {
  fill: #f8f8f8;
}
@media (max-width: 768px) {
  .resume-svg-btn svg {
    max-width: 160px;
  }
  .resume-svg-btn .btn-label {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .resume-svg-btn svg {
    max-width: 140px;
  }
  .resume-svg-btn .btn-label {
    font-size: 12px;
  }
}

.hero {
  position: relative;
  z-index: 0;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0 4px 0;
}
.hero .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0px;
  z-index: -1;
}
.hero h1 {
  font-family: "Noto Serif", serif;
  font-size: 52px;
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 68px;
  color: #171717;
}
.hero p {
  color: #6e6e6e;
  font-size: 16px;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.hero .resume-svg-btn {
  display: inline-block;
  width: 111px;
  height: 35px;
  margin-top: 24px;
  cursor: pointer;
  text-decoration: none;
}
.hero .resume-svg-btn svg {
  width: 100%;
  height: auto;
  display: block;
}
.hero .resume-svg-btn .btn-shape {
  fill: #171717;
  stroke: #d3d3d3;
  transition: fill 0.3s ease, stroke 0.3s ease;
}
.hero .resume-svg-btn .btn-label {
  fill: #f8f8f8;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: fill 0.3s ease;
  pointer-events: none;
}
.hero .resume-svg-btn:hover .btn-shape {
  fill: #f8f8f8;
  stroke: #d3d3d3;
}
.hero .resume-svg-btn:hover .btn-label {
  fill: #171717;
}

.work {
  margin: 32px auto;
}
.work h2 {
  text-align: center;
  margin-bottom: 40px;
}
.work .card-container {
  display: block;
  margin-bottom: 32px;
  color: inherit;
  text-decoration: none;
}
.work .card-container:hover {
  text-decoration: none;
}
.work .card {
  border: 1px solid #E6E6E6;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 12px;
  cursor: pointer;
}
.work .card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.work .card:hover img {
  transform: scale(1.03);
}
.work .card-text {
  padding: 8px;
}
.work .card-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #171717;
}

.footer {
  background: #171717;
  color: #f8f8f8;
  padding: 48px 16px;
}
.footer .footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.footer .footer-content div h1 {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 8px;
}
.footer .footer-content small {
  font-size: 14px;
  color: #dfdfdf;
  font-weight: 300;
}
.footer .footer-content .contact-column h4 {
  font-size: 20px;
  font-weight: 300;
}
.footer .footer-content .contact-column .copy-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 111px;
  height: 35px;
  border: none;
  background: none;
  padding: 0;
  margin: 8px 0px 16px 0;
  cursor: pointer;
}
.footer .footer-content .contact-column .copy-btn svg {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.footer .footer-content .contact-column .copy-btn .btn-fill {
  display: block;
}
.footer .footer-content .contact-column .copy-btn .btn-stroke {
  display: none;
}
.footer .footer-content .contact-column .copy-btn span {
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  z-index: 1;
  color: #171717;
}
.footer .footer-content .contact-column .copy-btn:hover .btn-fill {
  display: none;
}
.footer .footer-content .contact-column .copy-btn:hover .btn-stroke {
  display: block;
}
.footer .footer-content .contact-column .copy-btn:hover span {
  color: #f8f8f8;
}
.footer .footer-content .socials a {
  margin-right: 16px;
  color: #F8F8F8;
  text-decoration: none;
  position: relative;
}
.footer .footer-content .socials a::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 7px;
  height: 7px;
  background-color: currentColor;
  border-radius: 50%;
  transition: transform 0.6s ease;
}
.footer .footer-content .socials a:hover::after {
  transform: translateX(-50%) scale(1);
}

#cursor-outer,
#cursor-inner {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* Outer Circle */
#cursor-outer {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(153, 153, 153, 0.1);
  transition: transform 0.2s ease;
}

/* Inner Dot */
#cursor-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4D4D4D;
  transition: transform 0.15s ease;
}

@media (pointer: coarse) {
  #cursor-outer,
  #cursor-inner {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .header .logo {
    font-size: 18px;
  }
  .resume-svg-btn {
    width: 100px;
  }
  .resume-svg-btn .btn-label {
    font-size: 13px;
  }
  .hero {
    padding: 64px 16px;
  }
  .hero .hero-bg {
    background-size: contain;
    background-position: top;
    background-repeat: no-repeat;
    height: auto;
  }
  .hero h1 {
    font-size: 40px;
    line-height: 44px;
  }
  .hero p {
    font-size: 16px;
  }
  .work {
    margin: 56px auto;
  }
  .work .card {
    margin-bottom: 16px;
  }
  .work .card-text h3 {
    font-size: 18px;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-content .contact-column {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-content .contact-column button {
    display: block;
    margin: 16px auto;
  }
  .footer-content .contact-column .socials {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 16px;
  }
  .footer-content .contact-column .socials a {
    display: inline-block;
    font-size: 16px;
    text-align: center;
    margin: 0;
  }
}
.project-details {
  margin-top: 32px;
}
.project-details .project-image {
  max-width: 1200px;
  margin: 0 auto;
}
.project-details .project-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background-color: #ddd;
}

.other-projects {
  margin: 48px 0;
}
.other-projects h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #171717;
}
.other-projects .project-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.other-projects .project-grid .project-card {
  flex: 0 0 calc(33.333% - 16px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: #171717;
}
.other-projects .project-grid .project-card .image-wrapper {
  width: 100%;
  background: #f8f8f8;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.other-projects .project-grid .project-card .image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.other-projects .project-grid .project-card .project-title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  color: #171717;
}
.other-projects .project-grid .project-card:hover .image-wrapper {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .project-grid {
    flex-direction: column;
  }
  .project-grid .project-card {
    flex: 1 1 100%;
  }
}
/* === Smooth Modal & Zoom Styles === */
.project-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  min-height: 100vh;
  max-height: none;
  background: #F8F8F8;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  padding: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.project-modal.active {
  display: block;
  opacity: 1;
}
.project-modal .modal-content {
  background: #F8F8F8;
  border-radius: 0;
  width: 100%;
  min-height: 100vh;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 40px;
  text-align: center;
  position: relative;
  animation: fadeIn 0.4s ease;
}
.project-modal .modal-content img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 24px;
  cursor: zoom-in;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.project-modal .modal-content h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 32px;
}
.project-modal .modal-content .modal-close {
  position: fixed;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  padding: 0;
  z-index: 10000;
  cursor: pointer;
}
.project-modal .modal-content .modal-close img {
  display: block;
  width: 38px;
  height: 38px;
  background: none;
  cursor: pointer;
}
.project-modal .modal-content .nav-btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 9999;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-modal .modal-content .nav-btn img {
  width: 48px;
  height: 48px;
  display: block;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.project-modal .modal-content .nav-btn:hover img {
  transform: scale(1.1);
}
.project-modal .modal-content .nav-btn.prev {
  left: 24px;
}
.project-modal .modal-content .nav-btn.next {
  right: 24px;
}
.project-modal .modal-content .prev {
  left: 24px;
}
.project-modal .modal-content .next {
  right: 24px;
}

.zoom-overlay {
  display: none;
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #F8F8F8;
  justify-content: center;
  align-items: flex-start;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  padding: 40px;
  cursor: zoom-out;
}
.zoom-overlay img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  animation: fadeUp 0.3s ease;
}
.zoom-overlay.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}
.zoom-overlay .zoom-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.zoom-overlay .zoom-close img {
  display: block;
  width: 32px;
  height: 32px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/*# sourceMappingURL=style.css.map */