@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  color: rgba(221, 160, 221, 1);
}
html {
  scroll-behavior: smooth;

}
body {
  

  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100vh;
  cursor: url(cursor.png), auto;
  
  
}

body {
  font-size: 16px; /* slightly smaller */
  line-height: 1.5;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

a:hover {
  cursor: url(pointer.png), pointer;
}

#intro-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  margin-top: 3rem; /* <--- this is the new part */
  max-width: 100%;
}

#header {
  display: flex;
  justify-content: space-between;
  padding: 6px;
  align-items: center;
  background: rgba(138, 43, 226, 1);
}

#logo {
  background-color: rgba(138, 43, 226, 1);
  padding: 1em 0em 1em 4em;
}
#logo img {
  width: 130px;
}

#links {
  width: 60%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  gap: 110px;
}

#links a {
  text-decoration: none;
}

.box {
  font-size: 20px;
  padding: 20px 20px;
  background: rgb(147, 122, 219);
  border-radius: 10px;
  box-shadow: 0 8px 8px -4px rgb(70, 1, 91);
  transition: 0.5s all;
}

.box:hover {
  box-shadow: 0 16px 16px -4px rgb(70, 1, 91);
}

#selfie {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  padding-left: 2rem;
}

#selfie img {
  width: 350px; /* increased size */
  max-width: 100%; /* ensures it won't overflow on small screens */
  height: auto;
  border-radius: 10px;
}

#text-content {
  flex: 2;
  padding-right: 2rem;
  color: white;
  text-align: left;
}

#aboutme h3 {
  margin-bottom: 1rem;
}

#aboutme {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#info {
  font-weight: normal;
  line-height: 1.6;
}

/* MOBILE STYLES */
@media screen and (max-width: 640px) {
   body {
    font-size: 14px; /* smaller mobile font */
  }
  
  #header {
    flex-direction: column;
    align-items: center;
    padding: 1em;
  }

  #logo {
    padding: 0;
  }

  #logo img {
    width: 100px;
  }

  #links {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 1em;
  }

    #selfie {
    width: 220px; /* smaller image on mobile */
    margin: 0 auto;
  }

   #selfie img {
    width: 80%;
    margin-bottom: 1rem;
  }


  #aboutme {
    flex-direction: column;
    margin: 1em 0;
  }

  #info {
    padding: 1em;
    margin: 0;
    text-align: center;
  }

  .box {
    font-size: 16px;
    padding: 10px 16px;
  }

  #aboutme > * {
    text-align: center;
    width: 100%;
  }

  
 #intro-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }


  #aboutme h3,
  #info {
    text-align: center;
  }

   #text-content {
    max-width: 90%;
  }
}

   #selfie, #text-content {
    padding: 0;
  }








/*cursor: url(cursor.png), auto;
