/* Commons */
/* =========================
   Color palette
   ========================= */
/* =========================
   Fonts
   ========================= */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Orbitron:wght@400..900&family=Sora:wght@100..800&family=Zen+Dots&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Sora:wght@100..800&family=Zen+Dots&display=swap");
/* Commons */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #1d4ed8 0%, #0b1c3d 50%, #020617 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-padding: 100px;
}
@media screen and (max-width: 768px) {
  * {
    scroll-padding: 80px;
  }
}

#content {
  position: relative;
  min-height: 200vh;
}

.glass {
  position: relative;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.15), 0 18px 45px rgba(0, 0, 0, 0.85);
  color: #ffffff;
  overflow: hidden;
}

/* Commons */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.9em 2.2em;
  font-size: clamp(0.9rem, 0.85rem + 0.4vw, 1.1rem);
  font-weight: 600;
  text-transform: uppercase;
  height: 60px;
  color: #1e293b;
  background: linear-gradient(135deg, #22ff88, #00f5a0);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 0 15px rgba(34, 255, 136, 0.5), 0 8px 30px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  text-decoration: none;
}
.btn svg {
  stroke-width: 1px;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 0 30px rgba(34, 255, 136, 0.8), 0 15px 50px rgba(0, 0, 0, 0.8);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 0 12px rgba(34, 255, 136, 0.4), 0 6px 20px rgba(0, 0, 0, 0.6);
}

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
  padding-top: 20px;
  max-width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1200px;
  }
}
/* Sections */
/* Commons */
.toc-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
}
.toc-wrapper .toc {
  position: sticky;
  top: 50vh;
  left: 100%;
  width: 210px;
  transform: translateX(40px);
  z-index: 10;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
@media screen and (max-width: 768px) {
  .toc-wrapper .toc {
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(0px);
  }
}
.toc-wrapper .toc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .toc-wrapper .toc ul {
    flex-direction: row;
    justify-content: space-between;
  }
}
.toc-wrapper .toc ul li a {
  color: #f1f5f9;
  font-weight: 600;
  font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.6rem);
  text-decoration: none;
  transition: all 0.3s ease-in;
}
@media screen and (max-width: 768px) {
  .toc-wrapper .toc ul li a {
    font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.9rem);
  }
}
.toc-wrapper .toc ul li a.active {
  background-color: #22ff88;
  color: #020617;
  border-radius: 5px;
  padding: 5px 20px;
}

/* Commons */
section#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  height: 80vh;
}
@media screen and (max-width: 768px) {
  section#hero {
    padding-top: 100px;
    height: 90vh;
  }
}
section#hero h1 {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 2.2rem + 4vw, 6rem);
  color: #22ff88;
  text-shadow: 0 0 15px rgba(34, 255, 136, 0.6), 0 0 40px rgba(34, 255, 136, 0.3);
}
@media screen and (max-width: 768px) {
  section#hero h1 {
    text-align: center;
  }
}
section#hero p.sub {
  font-family: "Manrope", Helvetica, Arial, sans-serif;
  font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.6rem);
  color: #f1f5f9;
  padding-bottom: 20px;
}
section#hero .tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  max-width: 350px;
}
section#hero .tags .tag {
  padding: 5px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.15);
  color: #fff;
}
section#hero .ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Commons */
section#projects {
  margin: 120px 0;
}
section#projects #hoveringcards {
  width: 100%;
  position: relative;
  margin-top: 120px;
}
section#projects #hoveringcards h2 {
  color: #22ff88;
  text-align: center;
  font-size: 3em;
  margin-bottom: 20px;
}
section#projects #hoveringcards p {
  font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.9rem);
  color: #94a3b8;
  text-align: center;
  max-width: 400px;
  margin: auto;
}
section#projects #hoveringcards .list {
  width: 100%;
  justify-content: center;
  display: flex;
  gap: 2px;
  align-items: center;
  transform-style: preserve-3d;
  transform: perspective(1000px);
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  section#projects #hoveringcards .list {
    flex-direction: column;
    transform-style: flat;
  }
}
section#projects #hoveringcards .list .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 220px;
  height: 350px;
  transition: 0.5s;
  filter: brightness(0.2);
  background-color: #fff;
  padding: 20px;
}
section#projects #hoveringcards .list .item .title {
  text-align: center;
  padding: 20px 0 0 0;
  color: #020617;
  font-weight: 600;
}
section#projects #hoveringcards .list .item .title a {
  text-align: center;
  padding: 20px 0 0 0;
  color: #020617;
  font-weight: 600;
  font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.6rem);
}
section#projects #hoveringcards .list .item .desc {
  color: #020617;
}
section#projects #hoveringcards .list .item:hover {
  filter: brightness(1);
  transform: translateZ(100px);
}
section#projects #hoveringcards .list .item:hover + * {
  filter: brightness(0.8);
  transform: translateZ(50px) rotateY(20deg);
}
section#projects #hoveringcards .list .item:hover + * + * {
  filter: brightness(0.4);
  transform: translateZ(10px) rotateY(5deg);
}
section#projects #hoveringcards .list .item:has(+ *:hover) {
  filter: brightness(0.8);
  transform: translateZ(50px) rotateY(-20deg);
}
section#projects #hoveringcards .list .item:has(+ * + *:hover) {
  filter: brightness(0.4);
  transform: translateZ(10px) rotateY(-5deg);
}
section#projects #hoveringcards .list .item {
  /*img {
      height: 100%;
      width: 100%;
      object-fit: cover;
  }*/
}

/* Commons */
section#about .flex {
  display: flex;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  section#about .flex {
    flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  section#about .flex .left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
section#about .flex .left img {
  height: 300px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
section#about .flex .right {
  flex: 1;
}
section#about .flex .right h2 {
  color: #22ff88;
  font-size: 3em;
}
section#about .flex .right p.sub {
  font-size: 1.5em;
  color: #ffffff;
}
section#about .flex .right p.desc {
  font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.9rem);
  color: #94a3b8;
  margin: 0 auto 20px auto;
}
section#about .flex .right .stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
section#about .flex .right .stack .pill {
  padding: 5px 20px;
  background-color: #22ff88;
  color: rgb(0, 144.5, 66.6923076923);
  border-radius: 999px;
  font-weight: 600;
}

/* Commons */
section#contact {
  margin-top: 150px;
  margin-bottom: 100px;
}
section#contact h2 {
  color: #22ff88;
  text-align: center;
  font-size: 3em;
  margin-bottom: 20px;
}
section#contact p.sub {
  font-size: clamp(0.75rem, 0.7rem + 0.3vw, 0.9rem);
  color: #94a3b8;
  text-align: center;
  max-width: 400px;
  margin: auto;
}
section#contact .btn {
  margin: 30px auto;
  color: #020617;
  text-decoration: none;
  z-index: 111 !important;
  max-width: 300px;
}

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