* {
  cursor: none !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #0b090a;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}
body .cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 4rem; /* adjust size */
  height: 4rem;
  pointer-events: none; /* so it doesn't block clicks */
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease;
  z-index: 1000;
}
body .cursor .cursor.hovering {
  transform: translate(-50%, -50%) scale(1.5);
  filter: brightness(1.5);
}
body .cursor a,
body .cursor button {
  cursor: pointer; /* normal cursor for accessibility */
}

.scroll-progress {
  position: fixed;
  left: 0;
  width: 100%;
  height: 16px;
  z-index: 99;
  pointer-events: none;
}
.scroll-progress__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff006e, #ff6b35, #ffbe0b, #8338ec, #3a86ff, #06ffa5, #ff006e);
  background-size: 200% 100%;
  animation: gradient-shift 3s linear infinite;
  box-shadow: 0 0 30px rgba(255, 0, 110, 0.8), 0 0 60px rgba(255, 107, 53, 0.6), 0 0 90px rgba(255, 190, 11, 0.4), 0 -4px 20px rgba(131, 56, 236, 0.5);
}
.scroll-progress__bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shimmer 2s infinite;
}
.scroll-progress__percentage {
  position: fixed;
  bottom: 50px;
  left: 50px;
  font-family: "Barrio", cursive;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
  text-shadow: 3px 3px 0 #ff006e, -3px -3px 0 #3a86ff, 3px -3px 0 #ffbe0b, -3px 3px 0 #8338ec;
  z-index: 98;
  pointer-events: none;
}
.scroll-progress__percentage::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  border: 4px solid #ff006e;
  z-index: -1;
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}
@keyframes pulse-border {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}
@media (max-width: 768px) {
  .scroll-progress {
    height: 12px;
  }
  .scroll-progress__percentage {
    bottom: 20px;
    left: 20px;
    font-size: 20px;
  }
  .scroll-progress__percentage::before {
    width: 65px;
    height: 65px;
    border-width: 3px;
  }
}
.scroll-progress-vertical {
  position: fixed;
  top: 0;
  right: 20px;
  width: 6px;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}
.scroll-progress-vertical::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 100px;
}
.scroll-progress-vertical__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, #06ffa5, #3a86ff, #8338ec, #ffbe0b, #ff6b35, #ff006e);
  background-size: 100% 200%;
  animation: gradient-shift-vertical 3s linear infinite;
  border-radius: 100px;
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.6), 0 0 40px rgba(255, 107, 53, 0.4);
}

@keyframes gradient-shift-vertical {
  0% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 50% 200%;
  }
}
.header {
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  z-index: 100;
  padding: 2rem 3rem 2rem 0;
  transition: all 0.3s ease;
}

.nav_main {
  display: flex;
  gap: 2rem;
  margin: 0;
  align-items: center;
}

.nav_link {
  color: #f3d7d7;
  text-decoration: none;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: bold;
  font-family: "Barrio", system-ui;
  transition: color 0.3s ease;
  white-space: nowrap;
  position: relative;
}
.nav_link:hover {
  color: #ff8c00;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 3rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: fixed;
  top: 2rem;
  right: 2rem;
  transition: all 0.3s ease;
}
.burger-menu .burger-line {
  width: 100%;
  height: 3px;
  background: #f3d7d7;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.burger-menu.active .burger-line:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}
.burger-menu.active .burger-line:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
.burger-menu:hover .burger-line {
  background: #ff8c00;
}

@media (max-width: 1024px) {
  .header {
    padding: 1.5rem 2rem 1.5rem 0;
  }
  .nav_main {
    gap: 1.5rem;
  }
  .nav_link {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0;
    justify-content: flex-end;
  }
  .burger-menu {
    display: flex;
  }
  .nav_main {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }
  .nav_main.active {
    right: 0;
  }
  .nav_link {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: white;
    padding: 1rem 2rem;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .burger-menu {
    width: 2.5rem;
    height: 2rem;
    top: 1.5rem;
    right: 1.5rem;
  }
  .burger-menu .burger-line {
    height: 2.5px;
  }
  .burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .nav_main {
    width: 80%;
  }
  .nav_main.active {
    right: 0;
  }
  .nav_link {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  scroll-snap-align: start;
}
.hero .hero-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero .hero-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/hero-wrapper.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: brightness(0.5) saturate(1.5);
  z-index: -1;
}
.hero .hero-wrapper .grunge-overlay {
  position: absolute;
  inset: 0;
  background-image: url(/assets/grunge-overlay.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  mix-blend-mode: multiply;
  z-index: 10;
  pointer-events: none;
}
.hero .hero-wrapper .halftone-overlay {
  position: absolute;
  inset: 0;
  background-image: url(/assets/comic-overlay.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}
.hero .hero-wrapper .hero-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 0px 0px;
  grid-auto-flow: row;
  justify-items: center;
  align-items: center;
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.hero .hero-wrapper .hero-container h1 {
  font-size: clamp(5rem, 15vw, 20rem);
  grid-area: 3/3/4/6;
  text-align: center;
  color: #ff9e00;
  font-family: "Barrio", system-ui;
  line-height: 0.9;
}
.hero .hero-wrapper .hero-container h2 {
  font-size: clamp(3rem, 12vw, 15rem);
  grid-area: 3/4/4/5;
  color: #f0fff1;
  display: flex;
  justify-self: center;
  align-self: center;
  margin-bottom: 1rem;
  font-family: "League Script", cursive;
  z-index: 5;
  line-height: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s ease;
}
.scroll-indicator:hover {
  transform: translateX(-50%) translateY(-5px);
}
.scroll-indicator:hover .scroll-arrow span {
  animation-play-state: paused;
  opacity: 1;
}
.scroll-indicator .scroll-text {
  font-family: "Barrio", system-ui;
  font-size: 1.5rem;
  color: #f3d7d7;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  animation: pulse 2s ease-in-out infinite;
}
.scroll-indicator .scroll-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.scroll-indicator .scroll-arrow span {
  display: block;
  width: 2px;
  height: 15px;
  background: #ff8c00;
  border-radius: 2px;
  animation: scrollDown 2s ease-in-out infinite;
}
.scroll-indicator .scroll-arrow span:nth-child(1) {
  animation-delay: 0s;
}
.scroll-indicator .scroll-arrow span:nth-child(2) {
  animation-delay: 0.15s;
}
.scroll-indicator .scroll-arrow span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes scrollDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .scroll-indicator {
    bottom: 3vh;
  }
  .scroll-indicator .scroll-text {
    font-size: 0.8rem;
  }
  .scroll-indicator .scroll-arrow span {
    width: 1.5px;
    height: 12px;
  }
}
@media (max-width: 480px) {
  .scroll-indicator {
    bottom: 2vh;
    gap: 0.5rem;
  }
  .scroll-indicator .scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
  }
  .scroll-indicator .scroll-arrow {
    gap: 0.2rem;
  }
  .scroll-indicator .scroll-arrow span {
    width: 1px;
    height: 10px;
  }
}
@media (max-width: 1024px) {
  .hero .hero-wrapper .hero-container h1 {
    font-size: clamp(4rem, 12vw, 12rem);
    grid-area: 3/2/4/7;
  }
  .hero .hero-wrapper .hero-container h2 {
    font-size: clamp(2.5rem, 10vw, 10rem);
    grid-area: 3/3/4/6;
  }
}
@media (max-width: 768px) {
  .hero .hero-wrapper .hero-container h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    grid-area: 3/2/4/7;
    padding: 0 1rem;
  }
  .hero .hero-wrapper .hero-container h2 {
    font-size: clamp(2rem, 8vw, 6rem);
    grid-area: 3/2/4/7;
    margin-top: 8rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-wrapper .hero-container h1 {
    font-size: clamp(2.5rem, 12vw, 6rem);
    grid-area: 2/2/4/7;
    padding: 0 0.5rem;
  }
  .hero .hero-wrapper .hero-container h2 {
    font-size: clamp(1.8rem, 10vw, 4rem);
    grid-area: 3/2/5/7;
    margin-top: 6rem;
  }
}
.about {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  scroll-snap-align: start;
}
.about .about-wrapper .grunge-overlay {
  position: absolute;
  inset: 0;
  background-image: url(/assets/grunge-overlay.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  mix-blend-mode: multiply;
  z-index: 10;
  pointer-events: none;
}
.about .about-wrapper .about-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 0px 0px;
  grid-auto-flow: row;
  justify-items: center;
  align-items: center;
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.about .about-wrapper .about-container .cat-doodle {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 25rem;
  height: 25rem;
  background-image: url(/assets/cat-doodle.png);
  background-size: contain;
  background-repeat: no-repeat;
  animation: float 4s ease-in-out infinite;
  z-index: 0;
  filter: brightness(0) invert(1);
}
.about .about-wrapper .about-container .heart-doodle {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 30rem;
  height: 30rem;
  background-image: url(/assets/heart-doodle.png);
  background-size: contain;
  background-repeat: no-repeat;
  animation: float 4s ease-in-out infinite;
  z-index: 0;
  filter: brightness(0) invert(1);
}
.about .about-wrapper .about-container .mark-doodle {
  position: absolute;
  top: 10%;
  right: 21%;
  width: 20rem;
  height: 20rem;
  background-image: url(/assets/mark-doodle.png);
  background-size: contain;
  background-repeat: no-repeat;
  animation: float 4s ease-in-out infinite;
  z-index: 0;
  filter: brightness(0) invert(1);
}
.about .about-wrapper .about-container .plane-doodle {
  position: absolute;
  top: 10%;
  right: 60%;
  width: 20rem;
  height: 20rem;
  background-image: url(/assets/plane-doodle.png);
  background-size: contain;
  background-repeat: no-repeat;
  animation: float 4s ease-in-out infinite;
  z-index: 0;
  filter: brightness(0) invert(1);
}
.about .about-wrapper .about-container .smile-doodle {
  position: absolute;
  top: 65%;
  right: 50%;
  width: 20rem;
  height: 20rem;
  background-image: url(/assets/smile-doodle.png);
  background-size: contain;
  background-repeat: no-repeat;
  animation: float 4s ease-in-out infinite;
  z-index: 0;
  filter: brightness(0) invert(1);
}
.about .about-wrapper .about-container h1 {
  font-size: clamp(10rem, 3vw, 10rem);
  grid-area: 2/3/3/6;
  text-align: center;
  font-family: "Barrio", system-ui;
  color: #ff9e00;
  margin: 1rem 1rem;
  margin-top: 10rem;
  z-index: 0;
}
.about .about-wrapper .about-container h1 span {
  font-family: "League Script", cursive;
}
.about .about-wrapper .about-container p {
  font-size: clamp(2rem, 3vw, 2rem);
  grid-area: 3/3/4/6;
  display: flex;
  justify-self: center;
  align-self: start;
  text-align: center;
  color: #f3d7d7;
  font-family: "Barrio", system-ui;
  margin: 0 0;
  z-index: 0;
}
.about .about-wrapper .about-container .social-icons {
  grid-area: 4/3/5/6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
  z-index: 0;
}
.about .about-wrapper .about-container .social-icons .social-link {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.about .about-wrapper .about-container .social-icons .social-link img {
  width: 5rem;
  height: 5rem;
  transition: all 0.3s ease;
}
.about .about-wrapper .about-container .social-icons .social-link:hover {
  background: rgba(255, 140, 0, 0.9);
  border-color: #ff8c00;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 0.5rem 1.5rem rgba(255, 140, 0, 0.4);
}
.about .about-wrapper .about-container .social-icons .social-link:hover img {
  transform: rotate(10deg);
}
.about .about-wrapper .about-container .social-icons .social-link:active {
  transform: translateY(0) scale(1);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .about .about-wrapper .about-container .cat-doodle {
    width: 15rem;
    height: 15rem;
    left: 5%;
    top: 25%;
  }
  .about .about-wrapper .about-container .heart-doodle {
    width: 18rem;
    height: 18rem;
    right: 3%;
    top: 45%;
  }
  .about .about-wrapper .about-container .mark-doodle {
    width: 12rem;
    height: 12rem;
    right: 15%;
  }
  .about .about-wrapper .about-container .plane-doodle {
    width: 12rem;
    height: 12rem;
    right: 65%;
  }
  .about .about-wrapper .about-container .smile-doodle {
    width: 12rem;
    height: 12rem;
    right: 55%;
  }
  .about .about-wrapper .about-container h1 {
    font-size: clamp(7rem, 8vw, 9rem);
  }
  .about .about-wrapper .about-container p {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    grid-area: 3/2/4/7;
  }
  .about .about-wrapper .about-container .social-icons {
    grid-area: 4/2/5/7;
  }
}
@media (max-width: 768px) {
  .about .about-wrapper .about-container .cat-doodle {
    width: 8rem;
    height: 8rem;
    left: 2%;
    top: 15%;
    opacity: 0.5;
  }
  .about .about-wrapper .about-container .heart-doodle {
    width: 10rem;
    height: 10rem;
    right: 2%;
    top: 20%;
    opacity: 0.5;
  }
  .about .about-wrapper .about-container .mark-doodle {
    width: 6rem;
    height: 6rem;
    right: 10%;
    top: 8%;
    opacity: 0.4;
  }
  .about .about-wrapper .about-container .plane-doodle {
    width: 7rem;
    height: 7rem;
    left: 5%;
    top: 5%;
    opacity: 0.4;
  }
  .about .about-wrapper .about-container .smile-doodle {
    width: 7rem;
    height: 7rem;
    right: 5%;
    top: 70%;
    opacity: 0.4;
  }
  .about .about-wrapper .about-container h1 {
    font-size: clamp(5rem, 12vw, 8rem);
    grid-area: 2/2/3/7;
    margin-top: 5rem;
  }
  .about .about-wrapper .about-container p {
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    grid-area: 3/2/4/7;
    padding: 0 1rem;
  }
  .about .about-wrapper .about-container .social-icons {
    grid-area: 4/2/5/7;
    gap: 1.5rem;
  }
  .about .about-wrapper .about-container .social-icons .social-link {
    width: 3.5rem;
    height: 3.5rem;
  }
  .about .about-wrapper .about-container .social-icons .social-link img {
    width: 4rem;
    height: 4rem;
  }
}
@media (max-width: 480px) {
  .about .about-wrapper .about-container .cat-doodle {
    width: 6rem;
    height: 6rem;
    left: 1%;
    opacity: 0.3;
  }
  .about .about-wrapper .about-container .heart-doodle {
    width: 7rem;
    height: 7rem;
    right: 1%;
    opacity: 0.3;
  }
  .about .about-wrapper .about-container .mark-doodle,
  .about .about-wrapper .about-container .plane-doodle {
    width: 5rem;
    height: 5rem;
    opacity: 0.3;
  }
  .about .about-wrapper .about-container .smile-doodle {
    width: 5rem;
    height: 5rem;
    opacity: 0.3;
  }
  .about .about-wrapper .about-container h1 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    margin-top: 3rem;
  }
  .about .about-wrapper .about-container p {
    font-size: clamp(1rem, 4vw, 1.5rem);
    padding: 0 0.5rem;
  }
  .about .about-wrapper .about-container .social-icons {
    gap: 1rem;
  }
  .about .about-wrapper .about-container .social-icons .social-link {
    width: 3rem;
    height: 3rem;
  }
  .about .about-wrapper .about-container .social-icons .social-link img {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.projects {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  scroll-snap-align: start;
  min-height: auto;
}
.projects .projects-wrapper {
  position: relative;
  width: 100%;
  min-height: auto;
}
.projects .projects-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/doodle-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: brightness(0.3) saturate(1.5);
  z-index: -1;
}
.projects .projects-wrapper .grunge-overlay {
  position: absolute;
  inset: 0;
  background-image: url(/assets/grunge-overlay.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  mix-blend-mode: multiply;
  z-index: 99;
  pointer-events: none;
}
.projects .projects-wrapper .hero-carousel-container {
  width: 100%;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  position: relative;
}
.projects .projects-wrapper .hero-carousel-container .hero-carousel-track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.projects .projects-wrapper .hero-carousel-container .hero-slide {
  flex-shrink: 0;
  width: 100vw;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.projects .projects-wrapper .hero-carousel-container .hero-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  filter: grayscale(20%) brightness(0.9);
  transition: filter 0.3s ease;
}
.projects .projects-wrapper .hero-carousel-container .hero-slide:hover img {
  filter: grayscale(0%) brightness(1);
}
.projects .projects-wrapper .hero-carousel-container .hero-slide .hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}
.projects .projects-wrapper .projects-features {
  width: 100%;
  padding: 6rem 0;
  position: relative;
  z-index: 20;
}
.projects .projects-wrapper .projects-features .features-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}
.projects .projects-wrapper .projects-features .features-container .features-title {
  font-size: clamp(4rem, 8vw, 8rem);
  color: white;
  font-family: "Barrio", system-ui;
  text-align: center;
  margin-bottom: 6rem;
  line-height: 0.9;
}
.projects .projects-wrapper .projects-features .features-container .features-title span {
  color: #ff8c00;
}
.projects .projects-wrapper .projects-features .features-container .feature-item {
  margin-bottom: 8rem;
  position: relative;
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-number {
  font-size: clamp(6rem, 10vw, 12rem);
  font-family: "Barrio", system-ui;
  color: rgba(255, 140, 0, 0.5);
  position: absolute;
  top: -7rem;
  left: -2rem;
  z-index: -1;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-content.reverse .feature-image {
  order: -1;
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #ff8c00;
  font-family: "Barrio", system-ui;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-text .feature-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-text .feature-tags .tag {
  padding: 0.5rem 1.5rem;
  background: rgba(255, 140, 0, 0.15);
  border: 2px solid rgba(255, 140, 0, 0.4);
  color: #ff8c00;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-text .feature-tags .tag:hover {
  background: rgba(255, 140, 0, 0.3);
  border-color: #ff8c00;
  transform: translateY(-2px);
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: transform 0.5s ease;
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-image:hover {
  transform: scale(1.02);
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-image:hover img {
  transform: scale(1.1);
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-image:hover::after {
  opacity: 1;
}

@media (max-width: 1024px) {
  .projects .projects-wrapper .hero-carousel-container {
    height: 65vh;
    min-height: 500px;
  }
  .projects .projects-wrapper .hero-carousel-container .hero-slide img {
    -o-object-fit: cover;
       object-fit: cover;
    filter: grayscale(10%) brightness(0.95);
  }
  .projects .projects-wrapper .hero-carousel-container .hero-slide .hero-slide-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 100%);
  }
  .projects .projects-wrapper .projects-features {
    padding: 4rem 0;
  }
  .projects .projects-wrapper .projects-features .features-container {
    padding: 0 2rem;
  }
  .projects .projects-wrapper .projects-features .features-container .features-title {
    margin-bottom: 4rem;
  }
  .projects .projects-wrapper .projects-features .features-container .feature-item {
    margin-bottom: 6rem;
  }
  .projects .projects-wrapper .projects-features .features-container .feature-item .feature-content {
    gap: 3rem;
  }
  .projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-image {
    height: 350px;
  }
}
@media (max-width: 768px) {
  .projects .projects-wrapper .hero-carousel-container {
    height: 55vh;
    min-height: 400px;
  }
  .projects .projects-wrapper .hero-carousel-container .hero-slide img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    filter: grayscale(5%) brightness(0.95);
  }
  .projects .projects-wrapper .hero-carousel-container .hero-slide:hover img {
    filter: grayscale(0%) brightness(1);
  }
  .projects .projects-wrapper .hero-carousel-container .hero-slide .hero-slide-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  }
  .projects .projects-wrapper .projects-features {
    padding: 3rem 0;
  }
  .projects .projects-wrapper .projects-features .features-container {
    padding: 0 1.5rem;
  }
  .projects .projects-wrapper .projects-features .features-container .features-title {
    font-size: clamp(3rem, 12vw, 5rem);
    margin-bottom: 3rem;
  }
  .projects .projects-wrapper .projects-features .features-container .feature-item {
    margin-bottom: 5rem;
  }
  .projects .projects-wrapper .projects-features .features-container .feature-item .feature-number {
    font-size: clamp(4rem, 15vw, 8rem);
    top: -2rem;
    left: -1rem;
  }
  .projects .projects-wrapper .projects-features .features-container .feature-item .feature-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .projects .projects-wrapper .projects-features .features-container .feature-item .feature-content.reverse .feature-image {
    order: 0;
  }
  .projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-text h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 1rem;
  }
  .projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-text p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-text .feature-tags {
    gap: 0.8rem;
  }
  .projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-text .feature-tags .tag {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }
  .projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-image {
    height: 300px;
  }
}
@media (max-width: 480px) {
  .projects .projects-wrapper .hero-carousel-container {
    height: 45vh;
    min-height: 320px;
  }
  .projects .projects-wrapper .hero-carousel-container .hero-slide img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center 40%;
       object-position: center 40%;
  }
  .projects .projects-wrapper .hero-carousel-container .hero-slide .hero-slide-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%);
  }
  .projects .projects-wrapper .projects-features .features-container {
    padding: 0 1rem;
  }
  .projects .projects-wrapper .projects-features .features-container .feature-item .feature-content .feature-image {
    height: 250px;
  }
}
.contact {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  scroll-snap-align: start;
  z-index: 0;
}
.contact .contact-wrapper .grunge-overlay {
  position: absolute;
  inset: 0;
  background-image: url(/assets/grunge-overlay.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  mix-blend-mode: multiply;
  z-index: 10;
  pointer-events: none;
}
.contact .contact-wrapper .contact-container {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 0px 0px;
  grid-auto-flow: row;
  justify-items: center;
  align-items: center;
  position: relative;
  height: 70vh;
  width: 100vw;
  overflow: hidden;
  margin-top: 3rem;
}
.contact .contact-wrapper .contact-container h1 {
  font-size: clamp(1rem, 5vw, 5rem);
  grid-area: 3/1/4/8;
  color: #ff9e00;
  font-family: "Barrio", system-ui;
}
.contact .contact-wrapper .contact-container .marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 5rem;
  grid-area: 1/1/2/8;
}
.contact .contact-wrapper .contact-container .marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 10s linear infinite;
}
.contact .contact-wrapper .contact-container .marquee-content span {
  font-size: clamp(5rem, 5vw, 5rem);
  font-weight: bold;
  color: #f0fff1;
  font-family: "Barrio", system-ui;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}/*# sourceMappingURL=main.css.map */