* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: 'Luckiest Guy', cursive;
  background-color: #fdf3f5;
  overflow-x: hidden;
}

.hero {
  position: relative;
  width: 100%;
  height: 110vh;

 background-image: url('/assets/banner.png');
  background-size: cover;
  background-position: left;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.btn-left, .btn-right {
  position: absolute;
  top: 20px;
  z-index: 2;
}

.btn-left {
  left: 30px;
  display: flex;
  align-items: center;
  animation: floatFade 4s ease-in-out infinite;
}

.btn-right {
  right: 30px;
}

button {
  padding: 12px 24px;
  border: none;
  background-color: #ff69b4;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
  margin: 10px 5px 0 0;
}

button:hover {
  transform: scale(1.1);
}

.btm-right {
  position: absolute;
  top: 55%;
  left: 50px;
  width: 70%;
  color: #000;
  font-size: 1.2rem;
  z-index: 2;
}

.btm-right h2 {
  font-size: 4.5rem;
  font-weight: bold;
  color: #fce36a;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.5),
    0 0 8px rgba(255, 236, 138, 0.4);
  animation: floatFade 4s ease-in-out infinite;
}

@keyframes floatFade {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

.content {
  padding: 50px 30px;
  background: #feb3ca;
  color:#d57a8c;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  

  padding-left: 55px;
}
.content-up {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
.content-text{
  display: flex;
  flex-direction: column;
  
  width:50%;
  text-align: left;
}
#contenth1 {
  font-size: 5rem;
  margin-bottom: 40px;
  color: #fce36a;
  text-align: left;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), 0 0 8px rgba(188, 227, 255, 0.4);
  font-weight: bold;
  padding-left: 100px;
}
#contenttext1{
  font-size: 2rem;
  line-height: 1.6;
 
  margin-top: 20px;
  text-align: left;
  padding-left: 100px;
  width: 80%;

  
  
}
#imgsection {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contentimg {
  width: 580px;
  height: 520px;
  border:10px solid;
  border-color: #fce36a;
  border-radius: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  
}

.leaf {
  position: fixed;
  top: 0;
  width: 30px;
  height: 30px;
  background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/6/66/Maple_Leaf.svg/240px-Maple_Leaf.svg.png');
  background-size: cover;
  animation: fall linear forwards;
  pointer-events: none;
  z-index: 1000;
  
}

@keyframes fall {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes fadeBounce {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

#profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid #000000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.profile-name {
  font-size: 5rem;
  color: #fce36a;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.5),
    0 0 8px rgba(255, 236, 138, 0.4);
  font-weight: bold;
}

/* From Uiverse.io by WAIOKYERE */ 
ul {
  list-style: none;
}

.example-2 {
  display: flex;
  
  align-items: center;
  animation: floatFade 4s ease-in-out infinite;

  margin-top: 20px;;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 15px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 20%;
  color: #4d4d4d;
  background-color: #fce36a;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 50%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}
.example-2 .icon-content a[data-social="spotify"] .filled,
.example-2 .icon-content a[data-social="spotify"] ~ .tooltip {
  background-color: #1db954;
}
.example-2 .icon-content a[data-social="pinterest"] .filled,
.example-2 .icon-content a[data-social="pinterest"] ~ .tooltip {
  background-color: #bd081c;
}
.example-2 .icon-content a[data-social="x"] .filled,
.example-2 .icon-content a[data-social="x"] ~ .tooltip {
  background-color: #000000;
}
.example-2 .icon-content a[data-social="telegram"] .filled,
.example-2 .icon-content a[data-social="telegram"] ~ .tooltip {
  background-color: #0088cc;
}
.example-2 .icon-content a[data-social="Dex"] .filled,
.example-2 .icon-content a[data-social="Dex"] ~ .tooltip {
  background-color: #d57a8c;
}

/* From Uiverse.io by Yaya12085 */ 
.card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 1);
  padding: 20px;
  width: 80%;
  margin-top: 50px;
  height: 300px;
  border-radius: 20px;
}

.stars {
  display: flex;
  grid-gap: 0.125rem;
  gap: 0.125rem;
  color: rgb(238, 203, 8);
}

.star {
  height: 2rem;
  width: 2rem;
}





.description {
  font-size:2.8rem;

  margin-top: 0.4rem;
  line-height: 1.625;
  color: #fce36a;
  text-shadow: 
    2px 2px 6px rgba(0, 0, 0, 0.5),
    0 0 8px rgba(255, 236, 138, 0.4);
}

.author {
  margin-top: 1.3rem;
  font-size: 2rem;
  line-height: 1.25rem;
 
  padding-bottom: 20px;
}
#quote {
  font-size: 2.5rem;
  color: #fce36a;
  text-shadow: 
    2px 2px 6px rgba(0, 0, 0, 0.5),
    0 0 8px rgba(255, 236, 138, 0.4);
  margin-top: 50px;
  text-align: center;
  margin-bottom: 60px;
}
#quote h3{
  font-family: 'Great Vibes', cursive;
  letter-spacing: 0.2rem;
  font-size: 2rem;
  color: #fce36a;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.5),
    0 0 8px rgba(255, 236, 138, 0.4); 
  margin-top: 20px;
}

.falling-leaf-wrapper {
  position: fixed;
  z-index: 9999;
  transition: transform 1.2s ease;
}

.top-left {
  top: 150px;
  left: 50px;
}

.top-right {
  top: 50px;
  right: 50px;
}

.bottom-left {
  bottom: 50px;
  left: 50px;
}

.bottom-right {
  bottom: 50px;
  right: 50px;
}
.top-middle {
  top: 150px;
  left: 56%;
  
}
.bottom-middle {
  bottom:560px;
  left: 70%;
  
}

.falling-leaf {
  width: 80px;
  pointer-events: none;
  animation: floatFade 4s ease-in-out infinite;
}
.falling-leaf-wrapper {
  transition: transform 1s ease, opacity 1s ease;
  opacity: 1;
}

#download {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 55px;
}
#download-text {
  width: 50%;
  padding: 20px;
  text-align: left;
}
#download-text h2 {
  font-size: 3rem;
  color: #fce36a;
  text-shadow:
    2px 2px 6px rgba(0, 0, 0, 0.5),
    0 0 8px rgba(255, 236, 138, 0.4);
}
#download-text p {
  font-size: 2rem;
  color: #d57a8c;
  margin-top: 10px;
}
#download-button {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
} 
.button {
  padding: 20px 30px;
  width: 50%;
  text-align: center;
  border-radius: 20px;
  border: none;
  outline: none;
  font-size: 2.5rem;
  border-radius: 0.3rem;
  font-weight: 600;
  background-color: #fce36a;
  color: #d57a8c;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s  ease-in-out;

  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.button .text {
  position: absolute;
  left: 50px;
  text-align: center;
  transition: 0.4s ease-in-out;
  color: #4d4d4d;
  font-size: 2.5rem;
  letter-spacing: 0.1rem;
  font-family: 'Luckiest Guy', cursive;
}

.svg {
  transform: translateY(-20px) rotate(30deg);
  opacity: 0;
  width: 3rem;
  transition: 0.4s ease-in-out;
  
}

.button:hover {
  background-color: #d57a8c;
}

.button:hover .svg {
  display: inline-block;
  transform: translateY(0px) rotate(0deg);
  opacity: 1;
  
}

.button:hover .text {
  opacity: 0;
}

.button:active {
  scale: 0.97;
}


footer {
  background-color: #fce36a;
  border-top: 5px solid #000000;
  color: #d57a8c;
  text-align: center;
  padding: 20px;
  position: relative;

  bottom: 0;
  width: 100%;
  height: 200px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}
footer p{
  font-size: 2rem;
  padding: 10px 0 10px 0;
}

@media (max-width:1600px){
  .button .text{
    left:0px;
    letter-spacing: 0;
    margin-left: 25%;
  }
  .button{
    width: 80%;
   
  }
 
}

/* ---------- MOBILE RESPONSIVE STYLES ---------- */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    padding-top: 50px;
    background-position: center;
  }

  .btn-left {
    flex-direction: column;
    align-items: center;
    left: 23%;
    transform: translateX(-50%);
    top: 8px;
  }

  .profile-name {
    font-size: 3rem;
    margin-top: 10px;
  }

  .btm-right {
    top: auto;
    left: 0;
    bottom: 50px;
    width: 100%;
    padding: 0 20px;
  }

  .btm-right h2 {
    font-size: 2.2rem;
    text-align: center;
  }

  .example-2 {
    justify-content: center;
    flex-wrap: wrap;
  }

  .content {
    padding: 30px 15px;
    height: auto;
  }

  .content-up {
    flex-direction: column;
    align-items: center;
    height: auto;
  }

  .content-text {
    width: 100%;
    padding: 0;
  }

  #contenth1 {
    font-size: 3rem;
    padding-left: 0;
    text-align: center;
  }

  #contenttext1 {
    font-size: 1.2rem;
    padding-left: 0;
    text-align: center;
    width: 100%;
  }

  #imgsection {
    width: 100%;
    margin-bottom: 30px;
  }

  #contentimg {
    width: 80%;
    height: auto;
    max-height: 400px;
  }

  #quote {
    font-size: 1.6rem;
    padding: 0 10px;
  }

  #quote h3 {
    font-size: 1.2rem;
  }

  footer {
    height: auto;
    padding: 30px 15px;
  }

  footer p {
    font-size: 1.2rem;
  }

  #download{
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;

  }
  #download-text {
    width: 100%;
    text-align: center;
  }
  #download-text h2 {
    font-size: 2.5rem;
  }
  #download-text p {
    font-size: 1.5rem;
  }
  #download-button {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }
  .button {
    width: 80%;
    font-size: 1.5rem;
    padding: 15px;
  }
  .button .text {
    font-size: 1.5rem;
    left: 0;
    margin-left: 35%;
    
  }
  .svg {
    width: 2rem;
  }
  @media (max-width:550px){
    .button .text{
      margin-left: 20%;
    }
  }


}





