/* @import url("https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --bg: #111;
  --bg-nav: #2a1f3d;
  --surface: #111111;
  --border: #1e1e1e;
  --accent-1: rgb(214, 242, 147);
  --accent: #e8ff00;
  --accent2: #ff3b3b;
  --white: #f1f1f1;
  --text: #f0f0f0;
  --muted: #555;
  --blue: #0356ee;
  --mono: "Space Mono", monospace;
  --display: "Bebas Neue", sans-serif;
  --body: "DM Sans", sans-serif;
  --sidebar-w: 100%;
  --nav-h: 64px;
  --transition: 0.38s cubic-bezier(0.4, 0, 0.2, 1);

  --foreground: var(--bg);
  --background: var(--white);
}
html,
body {
  font-family: "Urbanist", sans-serif;
  scroll-behavior: smooth;
  width: 100%;
  height: 100%;
  background: var(--bg);
  color: var(--text);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
}
/* Custom cursor */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--accent2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    width 0.2s,
    height 0.2s,
    background 0.2s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 3px solid var(--accent2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.15s ease,
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
  opacity: 0.6;
}
header {
  padding: 1rem;
}
nav {
  background: rgba(0, 0, 0, 0.55);
  z-index: 600;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}
.navbar a:hover {
  color: var(--accent);
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 7px;
  margin-left: auto;
  border-radius: 8px;
  transition: background 0.18s;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger span:nth-child(1) {
  width: 20px;
}
.hamburger span:nth-child(2) {
  width: 14px;
}
.hamburger span:nth-child(3) {
  width: 20px;
}
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(2px);
}
.overlay.active {
  opacity: 1;
  pointer-events: all;
}
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--sidebar-w);
  height: 100%;
  background: var(--bg);
  z-index: 700;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--transition);
  border-right: 1px solid var(--nav-border);
}
.drawer.open {
  transform: translateX(0);
}
/* Drawer header */
.aside-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--nav-border);
}
.my-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 18px;
  transition:
    background 0.15s,
    color 0.15s;
}
.aside-close:hover {
  background: var(--bg-nav-hover);
  color: var(--text-primary);
}
.aside-nav {
  flex: 1;
  padding: 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  overflow-y: auto;
}
.aside-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-muted);
  transition:
    background 0.15s,
    color 0.15s;
}
.aside-link:hover,
.aside-link.active {
  background: var(--bg-nav-hover);
  color: var(--text-primary);
  opacity: 1;
}
.aside-link.active {
  color: var(--accent);
}
/* Drawer social icons */
.aside-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--nav-border);
}
.aside-footer-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 12px;
}
.aside-socials {
  display: flex;
  gap: 10px;
}
.hero-bg-text {
  position: absolute;
  bottom: -2rem;
  right: 0px;
  font-family: var(--display);
  font-size: clamp(8rem, 18vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 1px #1a1a1a;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.name-header {
  padding: 5rem 3rem 4rem;
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  width: 100%;
  gap: 1rem;
  grid-auto-flow: dense;
  align-items: center;
}
.name-box {
  z-index: 100;
}
.name-box p {
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 5px;
}
.name-tag {
  font-family: "Funnel Display", sans-serif;
  font-size: 160px;
  text-transform: uppercase;
}
.split {
  gap: 2rem;
}
.divider {
  display: none;
  height: 1.34px;
  width: 180px;
  background-color: #ffffff;
  transform-origin: left;
}
.hero-text {
  font-size: 24px;
  padding-left: 1rem;
  line-height: 1.6;
}
.view-work-box {
  position: relative;
  z-index: 2;
}
.scroll-indicator {
  position: absolute;
  bottom: 220px;
  left: 50%;
  transform: translate(-50%, 0%) translate(-0.1875px, 0px);
  z-index: 10;
  opacity: 1;
}
.scroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 9999px;
  font-weight: 600;
  transition:
    all 300ms ease,
    transform 200ms ease;
  color: #ffffff;
  border: 1px solid #ffffff;
  background-color: rgba(8, 13, 29, 0.2);
  padding: 13px 33px;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
  text-decoration: none;
}
.scroll-btn:hover {
  background: var(--white);
  color: var(--border);
}
.scroll-indicator:hover {
  color: #000000;
}

.scroll-btn:active {
  transform: scale(0.98);
}
/*  */
.btn-primary {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--accent);
  color: #000;
  padding: 1rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    background 0.2s,
    transform 0.2s;
  font-weight: 700;
}
.btn-primary:hover {
  background: #fff;
  transform: translate(-2px, -2px);
}
.btn-outline {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 1rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition:
    border-color 0.2s,
    transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--text);
  transform: translate(-2px, -2px);
}
.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-card {
  width: 320px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: var(--accent);
}
.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.status-text {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: #22c55e;
  letter-spacing: 0.1em;
}
.hero-card-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}
.tool-skills__section {
  padding-block: 4rem;
}
.skill-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
}
.skill-list li {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: #777;
  display: flex;
  justify-content: space-between;
}
.skill-list li span:last-child {
  color: var(--accent);
}
.what-to-expect {
  margin-block: 4rem;
  background: #1c1b1d;
  padding-block: 4rem;
}
.drive-to-success {
  font-size: 3.2rem;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.what-i-offer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  padding: 1rem 2rem;
  gap: 1rem;
  grid-auto-flow: dense;
  width: 100%;
}
.what-i-offer-card {
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
}
.what-i-offer-card:hover {
  transform: translate(-5px, -5px);
  transition: all 0.3s ease-in-out;
}
.wit-text {
  display: inline-block;
  width: 100%;
}
.learn-more {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 500;
  text-transform: uppercase;
}
.learn-more span {
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  margin-right: 5px;
}
.learn-more span:hover {
  transform: rotate(45deg);
}
.svg-div {
  margin-bottom: 3rem;
}
/* manifesto */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 2rem;
}
/* .manifesto-left {
  padding-left: 1.5rem;
} */
.manifesto-left span {
  display: inline-block;
  -webkit-text-stroke: 2px var(--accent2);
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  font-weight: 800;
  padding-top: 1rem;
}
.about-manifesto {
  font-family: "Space Grotesk", sans-serif;
  color: var(--muted);
  font-size: 20px;
  /* max-width: 600px; */
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.6;
}
.manifesto-content p {
  font-size: 1.25rem;
}
/* skills */
.skills-header h2 {
  text-align: center;
  font-family: "Syne", sans-serif !important;
}
.skills-header h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
}
.skills-header p {
  text-align: center;
}
.stroke {
  -webkit-text-stroke: 2px #f0f0f0;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3px;
}
.stack-container {
  padding: 2rem;
}
.stack-frame {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-flow: dense;
  gap: 1.5em;
  max-width: 1200px;
  margin: 0 auto;
}
.stack-frame div {
  min-height: 180px;
  border-radius: 20px 50px;
  border: 2px solid red;
  border-bottom: hidden var(--accent-1);
  display: inline-flex;
  padding-inline: 1em;
  font-style: oblique;
  font-size: 1.2em;
  align-items: center;
}
.stack-frame div:hover {
  transform: scaleX(1.1);
  transform-style: preserve-3d;
  transition: all 0.7s ease-in-out;
}
/* project */
.works-header {
  font-family: "Space Grotesk", sans-serif;
  text-align: center;
  font-size: 4rem;
  font-family: "Montserrat", sans-serif;
  padding-top: 2rem;
}
.projectText {
  display: flex;
  flex-direction: column;
}
.pro-text {
  display: flex;
  flex-direction: column;
}
.pro-text__1 {
  margin-top: 0 auto;
}
.pro-text__1 h2 {
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
}
.pro-text__1 p {
  height: 1px;
  width: 32px;
  background: #888;
}
.pro-text-bottom {
  margin-top: auto;
}
.pro-text-bottom h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: auto;
}
.projects-frame {
  padding: 2rem;
}
.project-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: dense;
  gap: 2rem;
  margin-block-start: 6rem;
}
.item-1 {
  order: 2;
}
.item-2 {
  order: 1;
}
.project-image-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 4rem 2rem;
  gap: 2rem;
  z-index: 100;
}
video {
  width: 100%;
  height: 100%;
}
.project-img {
  width: 100%;
  max-width: 250px;
  max-height: 250px;
  object-fit: contain;
}
.one {
  background: linear-gradient(180deg, var(--white), rgba(0, 95, 0, 1));
  width: 100%;
}
.two {
  background: linear-gradient(
    120deg,
    rgba(233, 224, 207, 1),
    rgba(34, 52, 72, 1)
  );
  display: grid;
}
.two img:nth-of-type(1) {
  grid-column: span 1/4;
}
.two img:nth-of-type(2) {
  grid-row: 1/3;
}
.two img:nth-of-type(3) {
  grid-row: 1/3;
}
.two img {
  max-width: 250px;
  width: 100%;
}
.three {
  background: linear-gradient(280deg, black, red);
}
.four {
  background: linear-gradient(120deg, white, black);
}
.view-more-btn {
  text-align: center;
  width: 100%;
}
.view-more-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  border-radius: 50px;
  min-width: 160px;
  height: 44px;
}
.view-more-btn a:hover {
  background: var(--white);
  color: var(--bg);
  font-weight: 600;
  text-transform: uppercase;
  transform: translate(5px, 10px);
}
/* FAQ */
/* .faq-section {
  padding: 6rem 2rem;
}
.faq-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.faq-title span {
  display: inline-block;
  height: 1px;
  width: 1rem;
  border: 2px solid white;
  border-radius: 50px;
}
#faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top-width: 1px;
  border-top-style: var(--t);
}
.faq-item button {
  border: 2px solid white;
  margin-bottom: 10px;
  height: 54px;
}
.faq-question {
  margin-right: 0.5rem;
}
.faq-body {
  overflow: hidden;
  max-height: 0px;
  transition-property: all;
  transition-duration: 300ms;
}
.faq-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
} */
.got-a-project {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin-top: 7rem;
}
.got-a-project p {
  font-size: 100px;
  letter-spacing: 2px;
  word-spacing: 5px;
  font-weight: 500;
}
.contact-me {
  border: 2px solid white;
  min-width: 180px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: var(--color-white);
  color: var(--bg-nav);
}
footer {
  padding: 64px 0px;
}
.footer-section {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: space-between;
  padding: 3rem;
}
.sayo-socials {
  display: inline-block;
}
.pages h2,
.sayo-socials,
.contacts,
.email {
  margin-bottom: 1rem;
}
.pages li {
  margin-bottom: 10px;
}
.contacts p,
.email p,
.address p,
.footer-details p {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
}
hr {
  width: 90%;
  color: #444;
  margin: 0 auto;
  padding-block: 1rem;
}
.copyright,
.pages li a {
  color: #777;
}
.copyright {
  text-align: center;
  width: 100%;
  display: inline-block;
}
/* media queries */
@media (max-width: 1218px) {
  .name-header {
    display: block;
    padding: 2.5rem 1.5rem 2rem;
  }
  .hero-text {
    padding-left: 0px;
    margin-top: 1rem;
  }
  /* body {
    padding: 1.3rem !important;
  } */
  .manifesto-left {
    padding-left: 0px;
  }
}
@media (max-width: 1023px) {
  .nav-socials,
  .nav-links {
    display: none;
  }
  .name-tag {
    font-size: 130px;
  }
}
@media (max-width: 1024px) {
  .manifesto {
    grid-template-columns: 1fr;
  }
  .about-manifesto {
    padding-top: 10px;
  }
  .works-header h2 {
    font-size: 3rem;
  }
}
@media (max-width: 950px) {
  .name-tag {
    font-size: 110px;
  }
  .scroll-indicator {
    bottom: 180px;
  }
}
@media (max-width: 900px) {
  nav {
    padding: 1.25rem 1.5rem;
  }
  nav .nav-links {
    display: none;
  }
}
@media (max-width: 865px) {
  .name-tag {
    font-size: 100px;
  }
}
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 0px;
  }
  .name-tag {
    font-size: 80px;
  }
  .manifesto-left span {
    font-size: 34px;
  }
  .project-header strong,
  .drive-to-success {
    font-size: 2rem;
  }
  .about-manifesto {
    padding-inline: 1rem;
  }
  .works-header h2 {
    font-size: 2rem;
  }
  .got-a-project div p {
    font-size: 48px;
    margin-bottom: 1rem;
  }
  .footer-section {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .pages,
  .email,
  .contacts {
    margin-top: 2rem;
  }
  .pages h2 {
    font-size: 16px;
  }
  hr {
    margin-block: 1rem;
    display: none;
  }
  .copyright {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding-top: 12px;
  }
}
@media (max-width: 744px) {
  .what-i-offer {
    display: block;
  }
  .what-i-offer-card {
    margin-block: 1rem;
  }
  .project-box {
    grid-template-columns: 1fr;
  }
  .item-1 {
    order: 1;
  }
  .item-2 {
    order: 2;
  }
}
@media (max-width: 600px) {
  .manifesto {
    grid-template-columns: 1fr;
  }
  .manifesto-content {
    padding-left: 10px;
  }
  .manifesto-content {
    display: block;
  }
  .got-a-project div p {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .name-tag {
    font-size: 48px;
  }
  .manifesto-left span {
    font-size: 28px;
  }
  .project-header strong,
  .drive-to-success {
    font-size: 24px;
  }
  .stack-frame {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
  .stack-frame div {
    min-height: 130px;
  }
  .got-a-project div h2 {
    font-size: 20px;
  }
  .works-header h2 {
    font-size: 22px;
  }
  .wit-text h2 {
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .name-tag {
    font-size: 24px;
  }
  .project-image-box {
    padding: 1rem;
  }
}
@media (max-width: 355px) {
  .stack-frame div {
    min-height: 200px;
  }
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
  .overlay {
    display: none !important;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .nav-links a {
    font-size: 15px;
  }
  .divider {
    width: 251px;
  }
}

@media (min-width: 640px) {
  .divider {
    display: block;
  }
}
