/* General page */
body{
  font-family: Arial;
  background-color: rgb(35, 35, 53);
  display:flex;
  flex-direction: column;
  align-items: center;
  margin-top:40px;
}

.body-container{
  background-color: rgb(25, 29, 40);
  color: white;
  display: flex;
  flex-direction: column;
  width: 70%;
  min-width: 400px;
  max-width: 1000px;
  border-radius:20px;
  padding: 30px 40px;
  margin-bottom: 40px;
}

strong{
  font-weight:700;
  color: rgb(226,226,226);
}

.bio-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.5rem;
}

.bio-header-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Profile picture */
.bio-profile-picture{
  display:block;
  object-fit: cover;
  object-position:100% 0%;
  border-radius: 2000px;
  height:10rem;;
  width:10rem;
}


/* General container contents */  
.block-title{
  color: rgb(226,226,226);
  font-size: 3.5rem;
  font-weight:500;
}

.block-subtitle {
  font-size: 1.4rem;
}

.block-content{
  font-size: 1.3rem;
  color:rgb(173, 173, 173);
}



/* Seda Real Estate Group Website */
.sreg, p{
  margin-bottom:2rem;
}


/* Other Projects block */
.project-grid{
  margin-top:30px;
  display:grid;
  row-gap: 10px;
}

.project-grid-row{
  display:flex;
  justify-content: space-between;
}

.project-link,
.resume-link{
  color: rgb(173, 173, 173);
  text-decoration: none;
  text-decoration: underline;
  transition: 0.05s;
}
.project-link:hover{
  color:rgb(229, 229, 229);
}

.language-list{
  display: flex;
  flex-direction: row;
  gap:3px;
}
.language-html{
  color: rgb(253, 132, 132);
}
.language-css{
  color:rgb(111, 159, 255);
}
.language-javaScript{
  color:rgb(255, 165, 117);
}
.language-java{
  color: rgb(252, 220, 133);
}



/* Connect block */
.connect-link-row{
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  height: 30px;
}
.connect-link{
  width:30px;
  display:flex;
  justify-content: center;
}
.connect-icon{
  height: 22px;
  opacity: 0.7;
  transition: 0.05s;
}
.connect-icon:hover{
  opacity:1;
  height:23px;
}




/* === Mobile Responsiveness === */
@media (max-width: 600px) {
  body {
    margin-top: 20px;
    padding: 0 10px;
  }

  .body-container {
    width: 95%;
    min-width: unset;
    padding: 20px;
    border-radius: 15px;
  }

  .bio-header {
    flex-direction: column;
    gap: 0;
  }

  .bio-profile-picture {
    width: 10rem;
    height: auto;
    margin: 0 auto 15px auto;
    
  }

  .block-title {
    font-size: 2rem;
    text-align: center;
  }

  .block-content {
    font-size: 1.1rem;
    text-align: left;
  }

  .project-grid-row {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-bottom: 25px;
  }

  .connect-link-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .connect-link {
    width: 25px;
  }

  .connect-icon {
    height: 20px;
  }
}
