body {
  margin: 0;
  overflow-x: hidden;
}

.navbar {
  background: transparent;
  position: fixed;
  z-index: 1000;
  width: 100%;
  top: 0;
  padding-left: 1em;
  padding-right: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.navbar .nav-link, .navbar .menu-button, .navbar .navbar-brand span {
  color: #222;
  transition: color 0.3s ease;
}
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
}
.navbar .navbar-brand span {
  font-family: "Plaster", system-ui;
  font-size: 1.7em;
  transition: color 0.3s ease;
}
.navbar .navbar-brand:hover span {
  color: #ff3366;
}
.navbar .menu-button {
  border: none;
  background: none;
  font-size: 1.25em;
  cursor: pointer;
  font-family: "Istok Web", sans-serif;
}
.navbar .menu-button span {
  color: #222;
  transition: color 0.3s ease;
}
.navbar .menu-button:hover span {
  color: #ff3366;
}

#menuOverlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 9999;
}
#menuOverlay a {
  color: #fff;
  font-size: 2em;
  font-family: "Istok Web", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 1em 0;
  text-decoration: none;
  transition: color 0.3s;
}
#menuOverlay a:hover {
  color: #aaa;
}

#menuOverlay.open {
  display: flex;
  opacity: 1;
  visibility: visible;
}

header.home-pg {
  margin-bottom: 6%;
}
header.home-pg h1 {
  margin-top: 28%;
  font-family: "Gochi Hand", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 2.7em;
}
header.home-pg p {
  margin-top: 0.4em;
  font-size: 1em;
  font-family: "Source Serif 4", serif;
  font-style: normal;
}

#work {
  margin-bottom: 1.5em;
}

.work-item .img-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0.7em 0;
}
.work-item .img-wrapper img {
  width: 100%;
  display: block;
}
.work-item .img-wrapper .img-title {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.work-item .img-wrapper .title {
  font-family: "Istok Web", sans-serif;
  font-size: 2em;
  color: #fff;
  text-align: center;
}
.work-item .img-wrapper:hover .img-title {
  opacity: 1;
}

footer {
  background-color: #3D3D3D;
  padding: 2em 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  width: 100%;
  background: linear-gradient(90deg, #ff3366, #ff6fb1, #f0e8ea);
  background-size: 300% 100%;
  animation: gradientShift 8s ease infinite;
}
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
footer .name {
  padding-top: 2em;
}
footer .name h2 {
  font-family: "Gochi Hand", cursive;
  font-size: 3em;
  line-height: 0.8em;
  color: #fff;
  margin-left: 0.3em;
}
@media (min-width: 768px) {
  footer .name {
    font-size: 1.4em;
    margin-left: 0em;
  }
}
@media (min-width: 992px) {
  footer .name {
    font-size: 1.5em;
    margin-left: 0em;

  }
}
footer .footer-contact {
  text-align: left;
}
footer .footer-contact h4 {
  color: #fff;
  font-family: "Istok Web", sans-serif;
  font-size: 1.2em;
  margin-left: 1em;
}
footer .links {
  margin-top: 1em;
  text-align: center;
}
footer .links a {
  margin: 0 10px;
  display: inline-block;
}
footer .links a img {
  width: 30px;
  height: auto;
  transition: transform 0.4s ease;
}
footer .links a img:hover {
  transform: rotate(-10deg) scale(1.2);
}

@media (min-width: 768px) {
  .footer-contact {
    display: flex;
    align-items: center;
  }
  .footer-contact h4 {
    margin: 0 .5em 0 .5em;
  }
  .footer-contact .links {
    margin-top: 0;
    margin-left: auto;
    text-align: right;
  }
  .footer-contact .links img {
    width: 40px;
  }
}
.sub-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2em 2em;
  background: #f5f5f5;
  margin: 0;
  box-sizing: border-box;
}
.sub-footer a {
  text-decoration: none;
}
.sub-footer a h2 {
  font-family: "Istok Web", sans-serif;
  font-size: 1.4em;
  background: rgba(189, 196, 203, 0.3529411765);
  padding: 0.6em 1.2em;
  border-radius: 50px;
  color: #222;
  transition: all 0.3s ease;
  margin: 0;
  display: inline-block;
}
.sub-footer a h2:hover {
  background: #ff3366;
  color: #fff;
  transform: translate(-3px) scale(1.05);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

header.container-fluid {
  padding-left: 0;
  padding-right: 0;
}

#work-start img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border: none;
  display: block;
}

.work-desc {
  padding-top: 1em;
  padding-bottom: 1em;
}
.work-desc .processimg {
  margin-top: 2.5em;
}
.work-desc .processimg img {
  padding-left: 2em;
}
.work-desc h1 {
  padding-top: 1em;
  font-family: "Istok Web", sans-serif;
}
.work-desc h2 {
  font-family: "Istok Web", sans-serif;
  margin-top: 1em;
}
.work-desc p {
  font-family: "Source Serif 4", serif;
  line-height: 1.6;
}
.work-desc img {
  margin-top: 1.5em;
  max-width: 100%;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 6px;
}
@media (min-width: 768px) {
  .work-desc img {
    margin-top: 2em;
  }
}
@media (min-width: 1200px) {
  .work-desc img {
    padding-left: 4em;
  }
}
.work-desc row {
  margin-bottom: 2.5em;
}

header.aboutpg-header {
  background-color: #3D3D3D;
  width: 100%;
  color: #fff;
  line-height: 1.3em;
  padding: 7em 2em 0.2em 2em;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5em;
}
header.aboutpg-header h1 {
  font-family: "Gochi Hand", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 2.7em;
}
header.aboutpg-header h2 {
  font-family: "Istok Web", sans-serif;
  font-size: 1.3em;
  line-height: 1.5em;
  margin-bottom: 1.5em;
}
header.aboutpg-header p {
  font-family: "Source Serif 4", serif;
  font-size: 1.1em;
  line-height: 1.5em;
  margin-bottom: 1em;
}
header.aboutpg-header .hello a {
  font-family: "Istok Web", sans-serif;
  font-size: 1.5em;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  transition: color 0.3s ease;
}
header.aboutpg-header .hello a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.4078431373);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
header.aboutpg-header .hello a:hover {
  color: #fff;
}
header.aboutpg-header .hello a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

article h2 {
  font-family: "Istok Web", sans-serif;
  padding-top: 1em;
}
article h3 {
  font-family: "Istok Web", sans-serif;
}
article h4 {
  font-family: "Source Serif 4", serif;
}
article p {
  font-family: "Source Serif 4", serif;
}
article ul li {
  font-family: "Source Serif 4", serif;
}
article .skill-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8em;
  margin-top: 1em;
}
article .skill-tag {
  font-family: "Source Serif 4", serif;
  display: inline-block;
  white-space: nowrap;
  background-color: #eaeaea;
  color: #222;
  font-size: 0.95em;
  padding: 0.6em 1.2em;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s ease;
}
article .skill-tag:hover {
  background: #ff3366;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
article .links a {
  margin: 0 10px;
}
article .links a img {
  width: 32px;
  height: auto;
  transition: transform 0.4s ease;
}
article .links a img:hover {
  transform: rotate(-10deg) scale(1.2);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-pg p, .aboutpg-header h2, .aboutpg-header p, .aboutpg-header h4 {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.home-pg p:nth-child(1), .aboutpg-header h2:nth-child(1), .aboutpg-header p:nth-child(1), .aboutpg-header h4:nth-child(1) {
  animation-delay: 0.08s;
}
.home-pg p:nth-child(2), .aboutpg-header h2:nth-child(2), .aboutpg-header p:nth-child(2), .aboutpg-header h4:nth-child(2) {
  animation-delay: 0.3s;
}
.home-pg p:nth-child(3), .aboutpg-header h2:nth-child(3), .aboutpg-header p:nth-child(3), .aboutpg-header h4:nth-child(3) {
  animation-delay: 0.5s;
}

.typing-cursor {
  display: inline-block;
  border-right: 2px solid #222;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}/*# sourceMappingURL=custom.css.map */