@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blinking1 {
    0% { border-color: transparent }
    50% { border-color: #FF6B81 }
    100% { border-color: transparent }
}

html {
    scroll-behavior: smooth;
}

body {
    padding-top: 30px;
    background-color: #FFF7ED;
}

p {
    color: #5A4742;
    font-size: 14px;
    font-family: "Nunito", sans-serif;
    font-weight: normal;
    display: inline;
}

.pink-space {
    color: #ff536d;
    font-weight: bold;
}

.mood {
    display: block;
}

.play {
    height: 40px;
    border-radius: 50%;
}

.intro {
    display: grid;
    grid-template-columns: 2fr 1fr;
}

.music {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    height: 60px;
    gap: 10px;
}

.omori {
    display: grid;
    grid-template-columns: repeat(10, 10%);
    grid-template-rows: repeat(10, 10%);
    border: solid #5A4742;
    border-radius: 15px 15px 15px 15px;
    margin-top: 20px;
    margin-bottom: 30px;
    height: 350px;
    width: 600px;
    background-color:#8fb39a;
    position: relative;
}

.quest-point {
  position: absolute;
  top: 100px;
  left: 105px;
  width: 40px;
  height: 40px;
  z-index: 5;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    filter: drop-shadow(0 0 5px #FF6B81);
  }
  50% {
    filter: drop-shadow(0 0 15px #FFAC8A);
  }
  100% {
    filter: drop-shadow(0 0 5px #FF6B81);
  }
}

.girl {
  position: absolute;
  height: 125px;
  left: 40px; 
  top: 40px;
  transition: transform 0.1s;
  z-index: 100;
}

.grass1 {
    height: 120px;
    grid-column: 1;
    grid-row: 1;
    border-top-left-radius: 15px;
}

.grass2 {
    height: 120px;
    grid-column: 1;
    grid-row: 4;
}

.grass3 {
    height: 120px;
    grid-column: 3;
    grid-row: 1;
}

.grass4 {
    height: 120px;
    grid-column: 3;
    grid-row: 4;
}

.grass5 {
    height: 120px;
    grid-column: 5;
    grid-row: 1;
}

.grass6 {
    height: 120px;
    grid-column: 5;
    grid-row: 4;
}

.grass7 {
    height: 120px;
    grid-column: 7;
    grid-row: 1;
}

.grass8 {
    height: 120px;
    grid-column: 7;
    grid-row: 4;
}

.grass9 {
    height: 120px;
    grid-column: 9;
    grid-row: 1;
    border-top-right-radius: 15px;
}

.grass10 {
    height: 120px;
    grid-column: 9;
    grid-row: 4;
}

.room-box {
    display: grid;
    grid-template-columns: repeat(5, 20%);
    grid-template-rows: repeat(5, 20%);
    border: solid #5A4742;
    background-color:#FFF3E6;
    height: 175px;
    width: 250px;
    grid-column: 5;
    grid-row: 2;
    z-index: 1;
    position: relative;
}

.caption {
    margin-top: 10px; 
    margin-bottom: 10px; 
}

.cat:hover, .laptop:hover, .headphones:hover, .play:hover, .quest-point:hover {
    transform: scale(1.05);
    opacity: 0.8;
    cursor: pointer;
}

.cat {
    height: 125px;
    grid-column: 4;
    grid-row: 3;
    z-index: 2;
}

.laptop {
    height: 100px;
    grid-column: 1;
    grid-row: 1;
}

.headphones {
    height: 80px;
    grid-column: 4;
    grid-row: 1;
}

.dialogue-box {
    height: 100px;
    width: 600px;
    border-radius: 15px;
    border-top: solid 3px #5A4742;
    grid-row: 8;
    position: relative;
    background-color: #fff1ee;
}

.name {
    color: #FF6B81;
    font-size: 18px;
    font-family: "Nunito", sans-serif;
    font-weight: bold;
    padding-top: 10px;
    padding-left: 115px;
    padding-bottom: 5px;
}

.dialogue {
    font-size: 14px;
    font-family: "Nunito", sans-serif;
    padding-left: 115px;
    color: #5A4742;
    font-weight: 400;
    padding-right: 30px;
}

.headshot {
    position: absolute;
    border-radius: 15px 0px 0px 15px;
    top: 248px;
    left: 0px;
    height: 102px;
}

.hero{
    display: flex;
    flex-direction: row-reverse;
    justify-content: start;
    align-items: start;
}

.contact-grid {
    display: grid;
    grid-template-columns: 50px 200px;
    grid-template-rows: repeat(5, 40px);
    height: 200px;
    width: 240px;
    border: solid #5A4742;
    text-align: left;
    align-items: center;
    background-color: #FFF3E6;
}


.contact-icon1 {
    height: 40px;
    width: 240px;
    grid-column: 1;
    grid-row: 1;
    background-color:#FFAC8A;
}

.contact-icon2 {
    height: 40px;
    grid-column: 1;
    grid-row: 2;
}

.contact-icon3 {
    height: 40px;
    grid-column: 1;
    grid-row: 3;
}

.contact-icon4 {
    height: 40px;
    grid-column: 1;
    grid-row: 4;
}

.contact-icon5 {
    height: 40px;
    grid-column: 1;
    grid-row: 5;
}

.contact-icon6 {
    height: 40px;
    margin-left: 150px;
}

.contact-details1 {
    grid-column: 2;
    grid-row: 1;
    color:#FFF3E6;
    font-family: "Nunito", sans-serif;
    font-size: 20px;
    font-weight: 400;
}

.contact-details2 {
    grid-column: 2;
    grid-row: 2;
}

.contact-details3 {
    grid-column: 2;
    grid-row: 3;
}

.contact-details4 {
    grid-column: 2;
    grid-row: 4;
}

.contact-details5 {
    grid-column: 2;
    grid-row: 5;
}

.pic2 {
    width: 450px;
}

.title {
    color: #FF6B81;
    font-size: 50px;
    font-family: "Baloo 2", sans-serif;
    font-style: normal;
    font-weight: bold;
    grid-column: 1;
}

.bar2 {
    background-color: #5A4742;
    height: 1px;
}

.skills-section {
  margin: 80px auto;
  max-width: 1000px;
  padding: 0 1.5rem;
}

.skills-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.skills-bar {
  flex: 1;
  height: 2px;
  background-color: #5A4742;
  opacity: 0.3;
}

.skills-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.skills-icons img {
  height: 45px;
  transition: transform 0.2s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.skills-icons img:hover {
  transform: scale(1.1);
}

.skills-text {
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  color: #5A4742;
  line-height: 1.6;
}

@media (max-width: 1200px) {
  .skills-header {
    justify-content: center;
  }

  .title {
    text-align: center;
  }
}

.pop-ups {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 1000px;
}

@media (min-width: 1000px) {
  .pop-ups {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.rounded-box {
  border: solid #5A4742;
  border-radius: 25px;
  height: 400px;
  width: 100%;
  background-color: #fff1ee;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rounded-box:hover {
  transform: scale(1.02);
  box-shadow: 8px 8px 2px 1px #FFE1CC;
}

.pic2 {
  border: solid #5A4742;
  border-radius: 25px;
  width: 100%;
  max-width: 450px;
  margin-bottom: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pic2:hover {
  transform: scale(1.02);
  box-shadow: 8px 8px 2px 1px #FFE1CC;
}

.red-circle, .yellow-circle, .green-circle {
  border-radius: 50%;
  height: 15px;
  width: 15px;
  margin: 3px;
}

.red-circle {
  background-color: #FF6B81;
}

.yellow-circle {
  background-color: #FFAC8A;
}

.green-circle {
  background-color: #8FB39A;
}

.circles {
  margin: 15px;
  display: flex;
  align-items: center;
}

.exp {
  margin-left: 5px;
  margin-top: 2px;
}

.exp p {
  transition: color 0.2s ease, transform 0.2s ease;
}

.exp p:hover {
  color: #E55270;
  transform: scale(1.02);
}

.description1 {
  margin: 25px;
  color: #5A4742;
  font-size: 14px;
  font-family: "Nunito", sans-serif;
  font-weight: normal;
}

.topic:hover {
  color: #E55270;
  transform: translateY(-2px);
}

ul {
  padding-left: 15px;
}

.thin {
  font-weight: 300;
  font-style: italic;
}

.note {
  margin-top: 1rem;
  font-size: 13px;
  font-style: italic;
  color: #5A4742;
}

.www {
    height: 50px;
}

.bug {
    margin-left: -3px;
}

.description2 {
    margin: 25px;
    color: #5A4742;
    font-size: 14px;
    font-family: "Nunito", sans-serif;
    font-weight: normal;
}

.topic {
    font-weight: 700;
    font-size: 24px;
    color:#FF6B81;
    margin-bottom: 8px;
    font-family: "Nunito", sans-serif;
}

.outer {
    border: solid #5A4742;
    border-radius: 20px;
    height: 300px;
    width: 609px;
    background-color: #ffb3c5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center {
    border-radius: 15px;
    height: 25px;
    width: 609px;
    display: flex;
}

.inner {
    border-radius: 20px;
    border: solid #c7b8b4;
    height: 236px;
    width: 396px;
    background-color: #fff1ee;
    margin-right: 15px;
    margin-left: 10px;
}

.controls1 {
    height: 175px;
}

.controls2 {
    height: 175px;
}

.holes {
    height: 175px;
    margin-right: 10px;
}

.ds-and-games {
    display: flex;
}

.game {
    border: solid #5A4742;
    border-radius: 10px 10px 10px 30px;
    height: 128px;
    width: 121px;
    background-color: #696969;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 20px;
}

.on:hover {
    box-shadow: 0 3px 4px 0 #FFE1CC;
    opacity: 0.9;
    transform: scale(1.02);
    cursor: pointer;
}

.game-tag {
    display: flex;
    border-radius: 10px;
    height: 93px;
    width: 93px;
    margin-top: 10px;
    background-color: #FFF3E6;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.down-arrow {
    height: 15px;
}

.games {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 20%);
    gap: 20px;
    margin-left: 50px;
}

@media (max-width: 1024px) {
  .ds-and-games {
    flex-direction: column;
    align-items: center;
  }

  .games {
    margin-left: 0;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-top: 1.5rem;
  }

  .game {
    height: 110px;
    width: 100px;
  }

  .game-tag {
    height: 80px;
    width: 80px;
  }

  .down-arrow {
    height: 12px;
  }

  .outer {
    width: 90vw;
    max-width: 600px;
    height: auto;
    flex-wrap: wrap;
    padding: 1rem 0;
  }

  .center {
    width: 90vw;
    max-width: 600px;
    height: 22px;
  }

  .inner {
    width: 80%;
    max-width: 420px;
    height: auto;
    padding: 1rem;
    margin: 0;
  }

  .description2 {
    font-size: 13px;
  }

  .topic {
    font-size: 20px;
  }

  .holes,
  .controls1,
  .controls2 {
    display: none;
  }
}

@media (max-width: 600px) {
  .games {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .game {
    height: 100px;
    width: 90px;
  }

  .game-tag {
    height: 70px;
    width: 70px;
  }

  .down-arrow {
    height: 10px;
  }

  .description2 {
    font-size: 12px;
  }

  .topic {
    font-size: 20px;
  }
}

.contact {
    display: flex;
    gap: 20px;
    color: #5A4742;
    font-size: 12px;
    font-family: "Nunito", sans-serif;
    font-weight: normal;
    margin-top: 100px;
    margin-bottom: 10px;
}

.nav {
    display: flex;
    gap: 20px;
    color: black;
    font-size: 12px;
    font-family: "Nunito", sans-serif;
    font-weight: normal;
    position: fixed;
    z-index: 1000;
    top: 0;
    overflow: hidden;
    background-color: #fff1ee;
    padding: 20px;
    width: 100%;
    opacity: 0.8;
}

a:hover {
    color: #FFAC8A;
}

a {
    text-decoration: none;
    color: #5A4742;
}

footer {
    color: #5A4742;
    font-size: 12px;
    font-family: "Nunito", sans-serif;
    font-weight: normal;
    display: inline;
}

.container {
    display: inline-block;
}

.typed-out {
    overflow: hidden;
    width: 0;
    border-right: .15em solid transparent;
    font-size: 50px;
    white-space: nowrap;
    animation: typing 3s steps(23, end) forwards, blinking1 .8s 5, blinking2 .8s 2;
}

.typed-out {
  display: block;
}

.field {
    display: flex;
    width: 960px;
    position: relative;
    justify-content: right;
    align-items: right;
}

.grass {
    height: 120px;
}

@media (max-width: 1200px) {

  * {
    border-width: 1px !important;
  }

  .art-gallery-wrapper {
    border: 20px solid #5A4742 !important;
  }
}

.gallery-flex {
  display: flex;
  justify-content: start;
  align-items: start;
  max-width: 900px;
  margin-top: -20px;
}

.prettypics {
  height: 250px;
}

.prettypics2 {
  height: 150px;
  margin-right: 170px;
}

.prettypics3 {
  height: 150px;
  margin-left: 100px;
  margin-bottom: -35px;
  z-index: 5;
}

.prettypics4 {
  height: 150px;
  margin-top: -500px;
  margin-left: 800px;
  z-index: 5;
}

.prettypics5 {
  height: 100px;
  transform: translate(0px, -15px);
  z-index: 5;
}

.prettypics6 {
  height: 230px;
  transform: translate(-140px, 70px);
  z-index: 5;
}

@media (max-width: 1024px) {
  .intro {
    text-align: start;
  }

  .music {
    display: none;
  }

  .omori {
    display: none;
  }

.container, .typed-out, .title {
  max-width: 100%;
  width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}
}

@media (max-width: 600px) {
  .prettypics6 {
    height: 180px;
  }
}

.art-gallery-wrapper {
  max-width: 800px;
  width: 100%;
  height: 80vh;
  border: 30px solid #5A4742;
  border-radius: 35px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.art-gallery-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.art-gallery-slide {
  flex: 0 0 100%;
  display: flex;
  gap: 2rem;
  padding: 2rem 3rem;
  box-sizing: border-box;
  align-items: center;
  background: #fff1ee;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.art-gallery-slide.active {
  opacity: 1;
}

.art-gallery-big-img {
  max-height: 100%;
  max-width: 60%;
  object-fit: contain;
}

.art-gallery-right {
  display: flex;
  flex-direction: column;
  max-width: 40%;
  height: 100%;
  justify-content: flex-start;
  gap: 1rem;
}

.art-gallery-small-img {
  width: 100%;
  max-height: 60%;
  object-fit: contain;
}

.art-gallery-caption {
  overflow-y: auto;
  flex-grow: 1;
  padding-right: 0.5rem;
  font-size: 15px;
  line-height: 1.6;
}

.art-gallery-caption::-webkit-scrollbar {
  width: 8px;
}
.art-gallery-caption::-webkit-scrollbar-thumb {
  background-color: rgba(0,0,0,0.2);
  border-radius: 4px;
}
.art-gallery-caption::-webkit-scrollbar-track {
  background: transparent;
}

.art-gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FFF3E6;
  border: none;
  padding: 0.4rem 1.2rem;
  cursor: pointer;
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  user-select: none;
  transition: background 0.3s ease;
  z-index: 10;
  color: #5A4742;
}
.art-gallery-btn:hover {
  background: #FFAC8A;
}
.art-gallery-btn.prev {
  left: 15px;
}
.art-gallery-btn.next {
  right: 15px;
}

@media (max-width: 1200px) {
  .intro {
    display: flex;  
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .prettypics {
    height: 220px;
  }
  
}

@media (max-width: 768px) {
  .art-gallery-slide {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .art-gallery-big-img {
    max-width: 100%;
    max-height: 250px;
  }

  .art-gallery-small-img {
    max-height: 200px;
  }

  .art-gallery-right {
    max-width: 100%;
  }

  .art-gallery-wrapper {
    height: auto;
    max-height: none;
    border-width: 20px;
    padding: 1rem 0;
  }

  .art-gallery-caption {
    font-size: 14px;
  }

  .art-gallery-btn {
    font-size: 1.5rem;
    padding: 0.3rem 0.9rem;
  }

  .gallery-flex {
    flex-direction: column;
    text-align: center;
  }

  .prettypics {
    display: none;
  }

  .prettypics2 {
    margin-left: 70px;
  }
}

@media (min-width: 1440px) {
  .outer,
  .room-box,
  .omori,
  .contact-grid,
  .game,
  .rounded-box,
  .pic2 {
    border-width: 2px;
  }
}

