/*
From Josh Comeau's Blog:
https://www.joshwcomeau.com/css/custom-css-reset/
*/
/* 1. Use a more-intuitive box-sizing model */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input,
button,
textarea,
select {
  font: inherit;
}

/* 7. Avoid text overflows */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

:root[data-theme=dark] {
  --text-primary: #f5f2f7;
  --text-muted: #a39bb0;
  --link-color: #c5a14c;
  --link-visited-color: #b19cd9;
  --bg-main: #120917;
  --bg-navbar: rgba(18, 9, 23, 0.9);
  --bg-section-1: rgba(18, 9, 23, 0.75);
  --bg-projects-top: rgba(18, 9, 23, 0);
  --bg-footer: #0a040d;
  --accent-light-gold: #c5a14c;
  --accent-gold: #d7a634;
  --bg-hover: #4c286b;
  --bg-active: #6e3d9e;
  /* Grounded, warm card & badge designs */
  --bg-card: #1b1022;
  --border-card: #271932;
  --border-card-hover: rgba(215, 166, 52, 0.35);
  --shadow-card-hover: rgba(0, 0, 0, 0.4);
  --bg-badge: #261730;
  --border-badge: #382447;
}

/* Font importing. */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Roboto-Light";
  src: url("../fonts/roboto/Roboto-Light.ttf");
}
@font-face {
  font-family: "Avenixel";
  src: url("../fonts/avenixel/Avenixel-Regular.ttf");
}
@font-face {
  font-family: "Sandy-Forest";
  src: url("../fonts/sandy-forest/SandyForest.ttf");
}
@font-face {
  font-family: "Habbo";
  src: url("../fonts/habbo/Habbo.ttf");
}
@font-face {
  font-family: "Unageo";
  src: url("../fonts/unageo/Unageo-Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Unageo";
  src: url("../fonts/unageo/Unageo-Bold.ttf");
  font-weight: bold;
}
* {
  -webkit-tap-highlight-color: transparent;
}

body.overlay-active {
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

nav {
  --text-gap: 40px;
  position: fixed;
  z-index: 10;
  min-width: 273px;
  width: 100%;
  min-height: var(--navbar-height);
  padding: 0 0 0 1vw;
  background-color: var(--bg-navbar);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
nav h1 {
  float: left;
  line-height: var(--navbar-height);
  font-family: "Avenixel";
  font-size: 45px;
  font-weight: normal;
  color: var(--accent-light-gold);
  text-wrap: nowrap;
  user-select: none;
  transition: color 0.3s ease;
}
nav h1:hover {
  color: var(--accent-gold);
}
nav .nav-right {
  display: none;
  height: 100%;
  align-items: center;
  justify-content: flex-end;
}
nav ul.nav-links {
  display: flex;
  height: 100%;
  padding: 0;
  margin: 0;
  align-items: center;
  gap: var(--text-gap);
  list-style: none;
}
nav ul.nav-links li {
  position: relative;
}
nav ul.nav-links li a {
  font-family: "Unageo", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: var(--navbar-height);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}
nav ul.nav-links li a, nav ul.nav-links li a:link, nav ul.nav-links li a:visited {
  color: var(--accent-light-gold);
}
nav ul.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: calc(var(--navbar-height) / 4);
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.3s ease;
}
nav ul.nav-links li a:hover {
  color: var(--text-primary) !important;
}
nav ul.nav-links li a:hover::after {
  width: 100%;
}
nav ul.nav-links li.active a {
  color: var(--accent-gold) !important;
}
nav ul.nav-links li.active a::after {
  width: 100%;
}
nav .nav-separator {
  width: 1px;
  height: 22px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 0 var(--text-gap);
}
nav .nav-utilities {
  display: flex;
  align-items: center;
}
nav .parallax-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  font-family: "Unageo", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: var(--navbar-height);
  color: var(--accent-light-gold);
  background: transparent;
  border: none;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
}
nav .parallax-toggle-btn:hover {
  color: var(--text-primary);
}
nav .parallax-toggle-btn .ios-switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  background-color: var(--accent-gold);
  border-radius: 10px;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}
nav .parallax-toggle-btn .ios-switch .switch-handle {
  position: absolute;
  top: 2px;
  left: 18px;
  width: 16px;
  height: 16px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
nav .parallax-toggle-btn.disabled {
  color: rgba(255, 255, 255, 0.5);
}
nav .parallax-toggle-btn.disabled .ios-switch {
  background-color: rgba(255, 255, 255, 0.2);
}
nav .parallax-toggle-btn.disabled .ios-switch .switch-handle {
  transform: translateX(-16px);
}
nav .navicon {
  float: right;
  width: var(--navbar-height);
  height: var(--navbar-height);
  text-align: center;
  line-height: var(--navbar-height);
  font-size: 38px;
  color: white;
  background: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
nav .navicon:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
@media only screen and (max-width: 360px) {
  nav h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 992px) {
  nav.responsive {
    padding: 0;
    background-color: rgba(18, 9, 23, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  nav.responsive h1 {
    padding-left: 20px;
  }
  nav.responsive .navicon {
    position: absolute;
    right: 0;
    top: 0;
  }
  nav.responsive .nav-right {
    display: block;
    width: 100%;
    clear: both;
    text-align: left;
  }
  nav.responsive ul.nav-links {
    display: block;
    width: 100%;
  }
  nav.responsive ul.nav-links li {
    height: var(--navbar-height);
    padding: 0 20px;
    line-height: var(--navbar-height);
    box-sizing: border-box;
  }
  nav.responsive ul.nav-links li:hover {
    background-color: rgba(255, 255, 255, 0.03);
  }
  nav.responsive ul.nav-links li a {
    float: none;
    display: block;
    text-align: left;
  }
  nav.responsive ul.nav-links li a::after {
    display: none;
  }
  nav.responsive ul.nav-links li.active {
    background-color: var(--bg-active);
  }
  nav.responsive ul.nav-links li.active:hover {
    background-color: var(--bg-hover);
  }
  nav.responsive .nav-separator {
    width: calc(100% - 40px);
    height: 1px;
    margin: 8px 20px;
    background-color: rgba(255, 255, 255, 0.1);
  }
  nav.responsive .nav-utilities {
    height: var(--navbar-height);
    padding: 0 20px;
    box-sizing: border-box;
  }
  nav.responsive .nav-utilities:hover {
    background-color: rgba(255, 255, 255, 0.03);
  }
  nav.responsive .nav-utilities .parallax-toggle-btn {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 992px) {
  nav {
    padding: 0 var(--text-gap);
  }
  nav h1 {
    font-size: 60px;
  }
  nav .nav-right {
    display: flex;
  }
  nav .navicon {
    display: none;
  }
}

#overlay {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 5, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  cursor: pointer;
  overflow: auto;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  outline: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
#overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.slideshow-close-btn {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 102;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease;
  padding: 0;
}
.slideshow-close-btn svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  transition: transform 0.25s ease, stroke 0.25s ease;
}
.slideshow-close-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-main);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(215, 166, 52, 0.5);
}
.slideshow-close-btn:hover svg {
  stroke: var(--bg-main);
}
.slideshow-close-btn:active {
  transform: scale(0.95);
}
@media only screen and (min-width: 769px) {
  .slideshow-close-btn {
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }
  .slideshow-close-btn svg {
    width: 24px;
    height: 24px;
  }
}

.click-overrider,
.is-active {
  cursor: initial;
}

.slideshow-wrapper {
  z-index: 101;
  position: relative;
  top: 60px;
  padding: 40px 0;
  color: var(--text-primary);
}

.splide {
  width: 1000px;
  max-width: 95vw;
  margin: 0 auto;
}
@media only screen and (min-width: 769px) {
  .splide {
    -webkit-mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 85%, rgba(255, 255, 255, 0) 100%);
    mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 15%, rgb(255, 255, 255) 85%, rgba(255, 255, 255, 0) 100%);
  }
}

.splide__arrow {
  width: 44px !important;
  height: 44px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s ease !important;
  opacity: 0.85 !important;
  cursor: pointer;
}
.splide__arrow svg {
  width: 22px !important;
  height: 22px !important;
  fill: white !important;
  transition: transform 0.25s ease, fill 0.25s ease !important;
}
.splide__arrow:hover {
  background: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  opacity: 1 !important;
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 0 15px rgba(215, 166, 52, 0.5);
}
.splide__arrow:hover svg {
  fill: var(--bg-main) !important;
}
.splide__arrow:active {
  transform: translateY(-50%) scale(0.95) !important;
}
@media only screen and (min-width: 769px) {
  .splide__arrow {
    width: 48px !important;
    height: 48px !important;
  }
  .splide__arrow svg {
    width: 24px !important;
    height: 24px !important;
  }
}

.splide__arrow--prev {
  left: 0.5rem;
}
@media only screen and (min-width: 992px) {
  .splide__arrow--prev {
    left: 12em;
  }
}

.splide__arrow--next {
  right: 0.5rem;
}
@media only screen and (min-width: 992px) {
  .splide__arrow--next {
    right: 12em;
  }
}

.splide__slide {
  width: 640px;
  max-width: 85vw;
  height: auto;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.slideshow-wrapper p {
  width: 640px;
  max-width: 85vw;
  height: auto;
  min-height: 100px;
  margin: 0 auto;
  margin-top: 24px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 20px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: left;
}

:root {
  --navbar-height: 70px;
  --slideshow-height: 800px;
  --footer-height: 75px;
}
@media only screen and (min-width: 992px) {
  :root {
    --navbar-height: 90px;
  }
}

body {
  font-family: "Roboto";
  color: var(--text-primary);
  background-color: var(--bg-main);
  background-image: radial-gradient(circle at 15% 20%, rgba(139, 86, 189, 0.08) 0%, transparent 40%), radial-gradient(circle at 85% 80%, rgba(82, 197, 194, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
  overflow-x: hidden;
}

a {
  transition: color 0.3s ease;
}
a:link {
  color: var(--link-color);
}
a:visited {
  color: var(--link-visited-color);
}
a:hover {
  color: var(--text-primary);
}

section {
  box-sizing: content-box;
  padding-bottom: 60px;
}
section .section-container {
  width: 98vw;
}

.hero {
  display: flex;
  min-height: 579px;
  height: 100vh;
  padding-top: var(--navbar-height);
  padding-bottom: 0;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
  justify-content: center;
}
.hero .hero-parallax {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.hero .hero-parallax .parallax-layer {
  position: absolute;
  top: -25%;
  left: -25%;
  width: 150%;
  height: 150%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  will-change: transform;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}
.hero .hero-parallax .parallax-layer.layer-1 {
  background-image: url("../img/hero/hero-1.png");
  z-index: 1;
}
.hero .hero-parallax .parallax-layer.layer-2 {
  background-image: url("../img/hero/hero-2.png");
  background-repeat: repeat-x;
  z-index: 2;
  animation: cloudDrift 300s linear infinite;
}
.hero .hero-parallax .parallax-layer.layer-3 {
  background-image: url("../img/hero/hero-3.png");
  z-index: 3;
}
.hero .hero-parallax .parallax-layer.layer-4 {
  background-image: url("../img/hero/hero-4.png");
  z-index: 4;
}
.hero .hero-parallax .parallax-layer.layer-5 {
  background-image: url("../img/hero/hero-5.png");
  z-index: 5;
}
.hero .hero-parallax .parallax-layer.layer-6 {
  background-image: url("../img/hero/hero-6.png");
  z-index: 6;
}
.hero .hero-parallax .parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-section-1);
  z-index: 7;
}
.hero .text-and-character {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0 8vw;
  box-sizing: border-box;
  margin-top: 85px;
}
.hero .text-and-character .text {
  text-align: center;
  line-height: 1.1;
  color: var(--accent-gold);
}
.hero .text-and-character .text h2 {
  display: none;
  font-family: "Avenixel";
  font-size: 115px;
  font-weight: normal !important;
  text-shadow: 4px 4px 0px rgba(10, 5, 13, 0.6), 0px 8px 24px rgba(0, 0, 0, 0.7);
}
.hero .text-and-character .text h3 {
  font-family: "Sandy-Forest";
  font-size: 72px;
  text-shadow: 3px 3px 0px rgba(10, 5, 13, 0.6), 0px 6px 18px rgba(0, 0, 0, 0.7);
}
.hero .text-and-character .text h3 span {
  font-size: 58px;
  text-shadow: 2px 2px 0px rgba(10, 5, 13, 0.6), 0px 4px 12px rgba(0, 0, 0, 0.7);
}
.hero .text-and-character .character {
  position: relative;
  top: 70px;
  left: 0;
  width: 140px;
  height: 340px;
  align-self: flex-end;
  margin-right: 4vw;
  overflow: visible;
}
.hero .text-and-character .character img {
  max-width: initial;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  animation: float-character 6s ease-in-out infinite;
}
@media only screen and (max-width: 600px) {
  .hero .text-and-character {
    margin-top: 75px;
    padding: 0 6vw;
  }
  .hero .text-and-character .text h3 {
    font-size: 48px;
  }
  .hero .text-and-character .text h3 span {
    font-size: 38px;
  }
  .hero .text-and-character .character {
    top: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .hero {
    align-items: center;
  }
  .hero .text-and-character {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    width: auto;
    height: auto;
    min-height: initial;
    padding: 0;
    margin-top: 15px;
  }
  .hero .text-and-character .text h2 {
    display: initial;
  }
  .hero .text-and-character .text {
    text-align: right;
  }
  .hero .text-and-character .character {
    top: -150px;
    left: calc((100vw - 100%) / 2 * 0.33);
    width: 0;
    height: 0;
    margin: 0;
    align-self: auto;
  }
}

.main-content-wrapper {
  position: relative;
  z-index: 1;
  margin-top: -50px;
  padding-top: 50px;
  clip-path: polygon(0% 25px, 36% 0px, 36% 25px, 72% 0px, 72% 25px, 100% 0px, 100% 100%, 0% 100%);
  background-color: transparent;
  background-image: radial-gradient(circle at 15% 20%, rgba(139, 86, 189, 0.04) 0%, transparent 40%), radial-gradient(circle at 85% 80%, rgba(215, 166, 52, 0.03) 0%, transparent 40%), linear-gradient(to bottom, var(--bg-projects-top) 0%, var(--bg-main) 800px, var(--bg-main) 100%);
  overflow: hidden;
}

.border-overlay {
  --height: 50px;
  height: var(--height);
  margin-top: calc(-1 * 0.9 * var(--height));
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.border-overlay svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

h2.title {
  width: max-content;
  padding: 9px 0;
  margin: 0 auto;
  font-size: 52px;
  font-family: "Habbo";
  color: var(--text-primary);
  text-align: center;
}
@media only screen and (min-width: 992px) {
  h2.title {
    padding: 9px 0 36px 0;
  }
}

.bg-color-2 {
  background-color: transparent;
}

.projects {
  padding-bottom: 80px;
  margin: 0 auto;
  background-color: transparent;
  background-image: none;
}
.projects .section-container {
  display: flex;
  max-width: 1420px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 auto;
  padding: 0 20px;
}
.projects .section-container .project {
  display: flex;
  width: 100%;
  max-width: 400px;
  font-size: 15px;
  color: var(--text-primary);
  flex-shrink: 0;
  flex-direction: column;
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
}
.projects .section-container .project:hover {
  transform: translateY(-5px);
  border-color: var(--border-card-hover);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}
.projects .section-container .project:hover .image {
  transform: scale(1.03);
}
.projects .section-container .project h3 {
  font-family: "Habbo";
  font-size: 36px;
  color: var(--accent-light-gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.projects .section-container .project .image {
  aspect-ratio: 4/3;
  width: 100%;
  height: 220px;
  margin-bottom: 20px;
  border-radius: 12px;
  background-color: transparent;
  cursor: pointer;
  object-position: center;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s ease;
}
.projects .section-container .project .text {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.projects .section-container .project .text .links {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.projects .section-container .project .text .links a,
.projects .section-container .project .text .links .private-repo {
  flex: 1;
  padding: 8px 16px;
  border-radius: 30px;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.projects .section-container .project .text .links a {
  background-color: var(--bg-badge);
  border: 1px solid var(--border-badge);
  color: var(--link-color) !important;
}
.projects .section-container .project .text .links a:hover {
  background-color: var(--link-color);
  color: var(--bg-main) !important;
  border-color: var(--link-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.projects .section-container .project .text .links .private-repo {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  cursor: not-allowed;
  user-select: none;
}
.projects .section-container .project .text .description {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-top: 5px;
  margin-bottom: 20px;
  overflow: hidden;
  flex-grow: 1;
  text-align: left;
}
.projects .section-container .project .text .softwares {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 15px;
}
.projects .section-container .project .text .softwares .icon {
  display: inline-block;
  height: 28px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.projects .section-container .project .text .softwares .icon:hover {
  opacity: 1;
  transform: scale(1.1);
}
@media only screen and (min-width: 992px) {
  .projects h2.title {
    padding-top: 75px;
  }
}

.about {
  margin: 0 auto;
  padding-bottom: 80px;
  background-color: transparent;
  background-image: none;
}
.about .section-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.about .section-container .about-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 320px;
}
.about .section-container .about-profile .about-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--border-card);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.about .section-container .about-profile .about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about .section-container .about-profile .about-image-wrapper:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}
.about .section-container .about-profile .about-stats {
  width: 100%;
  background-color: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about .section-container .about-profile .about-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-primary);
}
.about .section-container .about-profile .about-stats .stat-item .stat-icon {
  font-size: 18px;
}
.about .section-container .about-profile .about-stats .stat-item .stat-text {
  font-weight: 500;
}
.about .section-container .about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  flex-grow: 1;
}
.about .section-container .about-content .about-tagline {
  font-family: "Habbo";
  font-size: 32px;
  line-height: 1.4;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.about .section-container .about-content .about-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-muted);
}
.about .section-container .about-content .skills-matrix {
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}
.about .section-container .about-content .skills-matrix .skills-heading {
  font-family: "Habbo";
  font-size: 34px;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 600;
}
.about .section-container .about-content .skills-matrix .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.about .section-container .about-content .skills-matrix .skills-grid .skill-category {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 16px;
  transition: border-color 0.3s ease;
}
.about .section-container .about-content .skills-matrix .skills-grid .skill-category:hover {
  border-color: rgba(255, 255, 255, 0.08);
}
.about .section-container .about-content .skills-matrix .skills-grid .skill-category h5 {
  font-family: "Habbo";
  font-size: 22px;
  color: var(--accent-light-gold);
  margin-bottom: 12px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 6px;
}
.about .section-container .about-content .skills-matrix .skills-grid .skill-category .skill-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.about .section-container .about-content .skills-matrix .skills-grid .skill-category .skill-badges .badge {
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: var(--bg-badge);
  border: 1px solid var(--border-badge);
  color: var(--text-primary);
  transition: all 0.3s ease;
  user-select: none;
}
.about .section-container .about-content .skills-matrix .skills-grid .skill-category .skill-badges .badge:hover {
  background-color: rgba(215, 166, 82, 0.12);
  border-color: var(--accent-light-gold);
  transform: translateY(-2px);
}
@media only screen and (min-width: 992px) {
  .about .section-container {
    flex-direction: row;
    align-items: start;
    gap: 60px;
  }
}

footer {
  display: flex;
  min-height: var(--footer-height);
  padding: 20px 24px;
  background-color: var(--bg-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 15px;
}
footer .copyright {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
footer .copyright span {
  text-wrap: nowrap;
}
footer .copyright .attribution {
  font-size: 12px;
  opacity: 0.85;
}
footer .copyright .attribution a {
  color: var(--accent-light-gold);
  text-decoration: none;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
  border-bottom: 1px dashed rgba(197, 161, 76, 0.4);
}
footer .copyright .attribution a:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}
footer .connections {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}
footer .connections .flexbox {
  display: grid;
  grid-template-columns: repeat(1, 56px);
  justify-content: center;
  gap: 16px;
  margin: 0 auto;
}
@media only screen and (min-width: 180px) {
  footer .connections .flexbox {
    grid-template-columns: repeat(2, 56px);
  }
}
@media only screen and (min-width: 320px) {
  footer .connections .flexbox {
    grid-template-columns: repeat(4, 1fr);
    max-width: 320px;
  }
}
@media only screen and (min-width: 600px) {
  footer .connections .flexbox {
    max-width: 550px;
  }
}
footer .connections .connect-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background-color: var(--bg-badge);
  border: 1px solid var(--border-badge);
  transition: all 0.3s ease;
  cursor: pointer;
  justify-self: center;
}
footer .connections .connect-button picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
footer .connections .connect-button img {
  height: 24px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
footer .connections .connect-button:hover {
  border-color: var(--accent-light-gold);
  box-shadow: 0 0 12px rgba(197, 161, 76, 0.2);
  transform: translateY(-3px);
}
footer .connections .connect-button:hover img {
  opacity: 1;
  transform: scale(1.08);
}
@media only screen and (min-width: 600px) {
  footer .connections .connect-button {
    width: 100%;
    max-width: 140px;
    padding: 0 16px;
  }
}
@media only screen and (max-width: 600px) {
  footer .copyright {
    padding: 0;
    text-align: center;
    width: 100%;
  }
  footer .connections {
    width: 100%;
  }
}

@keyframes float-character {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes cloudDrift {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -2400px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-parallax .parallax-layer {
    animation: none !important;
  }
}
/* Motion Permission Overlay (iOS) */
.motion-prompt-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgba(10, 5, 18, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.motion-prompt-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.motion-prompt-overlay .motion-prompt-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-card-hover);
  border-radius: 20px;
  padding: 28px 24px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  text-align: center;
  color: var(--text-primary);
}
.motion-prompt-overlay .motion-prompt-card h3 {
  font-family: "Habbo";
  font-size: 38px;
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.motion-prompt-overlay .motion-prompt-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.motion-prompt-overlay .motion-prompt-card .motion-prompt-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.motion-prompt-overlay .motion-prompt-card .motion-prompt-actions .motion-btn {
  flex: 1;
  padding: 12px 18px;
  border-radius: 10px;
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.motion-prompt-overlay .motion-prompt-card .motion-prompt-actions .motion-btn.primary {
  background-color: var(--bg-active);
  color: #ffffff;
  border: 1px solid var(--accent-gold);
}
.motion-prompt-overlay .motion-prompt-card .motion-prompt-actions .motion-btn.primary:hover {
  background-color: var(--bg-hover);
}
.motion-prompt-overlay .motion-prompt-card .motion-prompt-actions .motion-btn.secondary {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-badge);
}
.motion-prompt-overlay .motion-prompt-card .motion-prompt-actions .motion-btn.secondary:hover {
  color: var(--text-primary);
  border-color: var(--text-muted);
}

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