@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  background-color: rgb(117, 56, 71);
  color: white;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 9%;
  background-color: #272928;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.logo {
  font-size: 3rem;
  color: pink;
  font-weight: bold;
  cursor: pointer;
  transition: 0.5s ease;
}

.logo:hover {
  transform: scale(1.1);
}

nav a {
  font-size: 1.8rem;
  color: white;
  margin-left: 4rem;
  font-weight: 500;
  transition: 0.3s ease;
  border-bottom: 3px solid transparent;
}

nav a:hover,
nav a.active {
  color: rgb(220, 107, 144);
  border-bottom: 3px solid royalblue;
}

@media (max-width: 995px) {
  nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 40%;
    border-left: 3px solid peachpuff;
    border-bottom: 3px solid peachpuff;
    border-bottom-left-radius: 3rem;
    padding: 1rem;
    background-color: #000000;
  }

  nav a {
    display: block;
    font-size: 2rem;
    margin: 3rem 0;
  }

  nav a:hover,
  nav a.active {
    padding: 1rem;
    border-radius: 0.5rem;
    border-bottom: 0.5rem solid white;
  }
}

section {
  min-height: 100%;
  padding: 5rem 9%;
}

.home {
  display: flex;
  
  justify-content: center;
  align-items: center;
  gap: 8rem;
  flex-wrap: wrap;
  padding: 8rem 5%;
}

.home .home-content h1 {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top:-10rem;
}

.home-content {
  max-width: 600px;
}

.image-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 100px auto;
}

.main-img {
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.burst-img,


.burst-img.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(
    calc(-50% + 200px * cos(var(--angle))),
    calc(-50% + 200px * sin(var(--angle)))
  ) 
  translate(-50%,-50%)
  scale(1);
}





@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(-5deg);
  }
}

@media (max-width: 1000px) {
  .home {
    gap: 4rem;
  }
}

@media (max-width: 995px) {
  .home {
    flex-direction: column;
    margin: 5rem 4rem;
  }

  .home .home-content h1 {
    font-size: 5rem;
  }

  .home .home-content h3 {
    font-size: 2.5rem;
  }

  .main-img {
    margin-top: 4rem;
  }
}
.image-container {
  position: relative;
  width: 300px;
  height: 300px;
}





@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(-5deg);
  }
}


.main-img {
  width: 60%;
  height: 60%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;

  
  position: absolute;
  top: 30%;
  left: -120%;
  transform: translate(-50%, -50%);
}

.burst-img,

.emoji {
  position: absolute;
  top: 20%;
  left: -130%;
  height:100px;
  width:130px;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 10;
}

.burst-img.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(
      calc(cos(var(--angle)) * 200px),
      calc(sin(var(--angle)) * 200px)
    )
    scale(1);
}



@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
  100% {
    transform: translateY(0) rotate(-5deg);
  }
}
.typing-text {
  font-size: 3rem;
  font-weight: 600;
  margin-top: 1rem;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}

.typing-text #typed-text {
  color:  rgb(255, 182, 234); /* or any accent you like */
}

.cursor {
  display: inline-block;
  color: white;
  margin-left: 5px;
  font-weight: 700;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.typing-text {
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
    display: flex;
    align-items: center;
}

#typed-text {
    margin-left: 0.5rem;
    color: #b7b4b4;
}

.cursor {
    display: inline-block;
    margin-left: 0.3rem;
    color: white;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
.home-img {
    border-radius: 50%;
    overflow: hidden;
}

.home-img img {
    position: relative;
    width: 32vw;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.home-img img:hover {
    transform: scale(1.05);
}
.backgif {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("building.gif");
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}




















/*who's this page*/


.timeline-vibes {
  margin-top: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.timeline-line {
  position: relative;
  width: 85%;
  height: 6px;

  border-radius: 10px;
  margin-bottom: 4rem;
}

.hearty {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 2.5rem;
  cursor: grab;
  transition: 0.2s ease;
}

.note-zone {
  
  padding: 1rem;
  border: 3px dashed #ff80aa;
  border-radius: 12px;
  width: 240px;
  text-align: center;
  box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.15);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.note-zone img {
  width: 100%;
  border-radius: 10px;
}

#noteYear {
  margin-top: 0.8rem;
  font-size: 1.5rem;
  color: #ff3385;
  font-weight: bold;
}
.timeline-vibes {
  margin-top: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.timeline-line {
  position: relative;
  width: 85%;
  height: 6px;
  background: #ffb6d9;
  border-radius: 10px;
  margin-bottom: 4rem;
}

.hearty {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 2.5rem;
  cursor: grab;
  transition: 0.2s ease;
}

.note-zone {
  background: #fff;
  padding: 1rem;
  border: 3px dashed #ff80aa;
  border-radius: 12px;
  width: 240px;
  text-align: center;
  box-shadow: 3px 5px 10px rgba(0,0,0,0.15);
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.note-zone img {
  width: 100%;
  border-radius: 10px;
}

#noteYear {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  color: #ff3385;
  font-weight: bold;
}

#noteText {
  font-size: 1.3rem;
  color: #4d2d38;
  margin-top: 0.5rem;
}
.fact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.fact-box {
  background-color: #ffe0eb;
  padding: 1rem;
  border-radius: 1.2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
}

.fact-box h3 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  color: #b30059;
}

.fact-box p {
  font-size: 1.4rem;
  color: #91255b;
}
main {
  padding-top: 10rem; 
}
.main-title {
  font-size: 4rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-weight: bold;
  color: #fffbfb; 
  font-size: 3.5rem;
  width: 100%;
 
}
.notmain-title {
  text-align: center;
  font-weight: bold;
  color: #fffbfb; 
  width: 100%;
}
.main-stuff {
  position: center;
  margin: 100px auto 0 auto;
  max-width: 800px;
  opacity: 0.8;
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
  padding-bottom: -20px;
}
























.main-title {
  text-align: center;
  font-size: 2rem;
  margin-top: 20px;
  color: black;
}

.outer-container {
  position: relative;
  width: 100%;
  height: 400px;
  margin-top: 40px;
  background: none;
}

.achievement-box {
  position: absolute;
  top: 10px; /* moved top-left */
  left: 100px;
  width: 500px;
  height: 150px;
  background: #ffe4ec;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  color: black;
  overflow-wrap: break-word;
}

.block {
  width: 30px;
  height: 30px;
  position: absolute;
  border-radius: 6px;
  background-color: #ffb6d9; /* was missing */
  transition: left 0.3s, top 0.3s;
}





.achievement-display {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 400px; /* adjust as needed */
  min-height: 120px;
  padding: 20px;
  background-color: #ffe4ec; /* light pink */
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4); /* black shadow */
  color: black;
  font-weight: bold;
  white-space: pre-line; /* preserves line breaks */
}


















.fact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.fact-container {
  position: relative;
}

.toggle {
  display: none;
}

.fact-box {
  background-color: #ffe0eb;
  padding: 1rem;
  border-radius: 1.2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.content {
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.toggle:checked + .fact-box .content {
  opacity: 1;
  height: auto;
}

.fact-box h3 {
  margin: 0 0 1rem;
  font-size: 1.8rem;
  color: #b30059;
}

.fact-box p {
  font-size: 1.4rem;
  color: #91255b;
}

.main-title {
  font-size: 3.5rem;
  text-align: center;
  margin-top: 2rem;
  margin-bottom: 3rem;
  font-weight: bold;
  color: #fffbfb;
  width: 100%;
}

.notmain-title {
  text-align: center;
  font-weight: bold;
  color: #fffbfb;
  width: 100%;
}

main {
  padding-top: 10rem;
}
.fact-container {
  position: relative;
}

.toggle {
  display: none;
}

.fact-box {
  background-color: #ffe0eb;
  padding: 1rem;
  border-radius: 1.2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 250px;
  max-width: 300px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.fact-box:hover {
  background-color: #ffd2e5;
}

.fact-box .header {
  font-size: 1.8rem;
  color: #b30059;
  margin-bottom: 1rem;
  font-weight: bold;
}

.content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.toggle:checked + .fact-box .content {
  max-height: 500px;
  opacity: 1;
}



.block {
  background-color: #ffb6d9;
}

























































/*hobbies*/
@import url('https://fonts.cdnfonts.com/css/ica-rubrik-black');
@import url('https://fonts.cdnfonts.com/css/poppins');

.banner{
    width: 100%;
    height: 100vh;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.banner .slider{
    position: absolute;
    width: 150px;
    height: 180px;
    top: 10%;
    left: calc(50% - 100px);
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 20s linear infinite;
    z-index: 2;
}
@keyframes autoRun{
    from{
        transform: perspective(1000px) rotateX(-16deg) rotateY(0deg);
    }to{
        transform: perspective(1000px) rotateX(-16deg) rotateY(360deg);
    }
}

.banner .slider .item{
    position: absolute;
    inset: 0 0 0 0;
    transform: 
        rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(400px);
}
.banner .slider .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .content{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1400px, 100vw);
    height: max-content;
    padding-bottom: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}
.banner .content h1{
    font-family: 'ICA Rubrik';
    font-size: 16em;
    line-height: 1em;
    color: #25283B;
    position: relative;
}
.banner .content h1::after{
    position: absolute;
    inset: 0 0 0 0;
    content: attr(data-content);
    z-index: 2;
    -webkit-text-stroke: 2px #d2d2d2;
    color: transparent;
}
.banner .content .author{
    font-family: Poppins;
    text-align: right;
    max-width: 200px;
}
.banner .content h2{
    font-size: 3em;
}
.banner .content .model{
    background-image: url(images/model.png);
    width: 100%;
    height: 75vh;
    position: absolute;
    bottom: 0;
    left: 0;
    background-size: auto 130%;
    background-repeat: no-repeat;
    background-position: top center;
    z-index: 1;
}
@media screen and (max-width: 1023px) {
    .banner .slider{
        width: 160px;
        height: 200px;
        left: calc(50% - 80px);
    }
    .banner .slider .item{
        transform: 
            rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(300px);
    }
    .banner .content h1{
        text-align: center;
        width: 100%;
        text-shadow: 0 10px 20px #000;
        font-size: 7em;
    }
    .banner .content .author{
        color: #fff;
        padding: 20px;
        text-shadow: 0 10px 20px #000;
        z-index: 2;
        max-width: unset;
        width: 100%;
        text-align: center;
        padding: 0 30px;
    }
}
@media screen and (max-width: 767px) {
    .banner .slider{
        width: 100px;
        height: 150px;
        left: calc(50% - 50px);
    }
    .banner .slider .item{
        transform: 
            rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(180px);
    }
    .banner .content h1{
        font-size: 5em;
    }
}