.header1 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-style: solid;
  border-color: #444;
  border-width: 2px;
  border-radius: 9px;
  padding: 5px;
  font-weight: bold;
  margin-bottom: 13px;

}

.header2 {
  border-style: solid;
  border-color: #444;
  display: flex;
  position: relative;
  align-items: center;
  border-radius: 10px;
  min-height: 248px;
  vertical-align: center;
  background: #181818;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  border-width: 2px;
}

.tagline {
  padding: 0;
  margin: 0;
}



.profile-pic {
  height: 210px;
  width: 220px;
  border: 4px solid #444;
  border-radius: 24px; /* More pronounced curve */
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  background: #222; /* Subtle background for theme match */
  padding: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.profile-pic:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  transform: scale(1.03);
  
}


.name-headline {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 160px;
  top: 19px;
  bottom: 10px;
  
  
}



.pic {
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 40px;
  height: 218px;
 
}

.name {
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 7px;
}


.tag {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 7px;
}


.email{
  font-size: 15px;
  font-weight: 600;
}

.icon-style {
  height: 34px;
  width: 34px;
  background: #222;         
  border-radius: 8px;       
  padding: 6px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12);
  cursor: pointer;
}

.icon-style:hover {
  background: #444;         
  transform: translateY(-2px) scale(1.08); 
}


.icons-bar {
  display: flex;
  flex-direction: row;
  gap: 16px;                
  margin-top: 10px;
}

@media (max-width: 600px) {
  .header2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: static;
  }
  .pic {
    position: static;
    top: auto;
    left: auto;
    height: 140px;
    margin-bottom: 12px;
  }
  .profile-pic {
    width: 120px;
    height: 120px;
    border-radius: 50%;
  }
  .name-headline {
    position: static;
    right: auto;
    top: auto;
    bottom: auto;
    align-items: center;
    text-align: center;
  }
  .name {
    font-size: 28px;
  }
  .tag {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .header2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: static;
  }
  .pic {
    position: static;
    top: auto;
    left: auto;
    height: 22vw;
    min-height: 100px;
    max-height: 180px;
    margin-bottom: 12px;
  }
  .profile-pic {
    width: 22vw;
    min-width: 100px;
    max-width: 180px;
    height: 22vw;
    min-height: 100px;
    max-height: 180px;
    border-radius: 50%;
  }
  .name-headline {
    position: static;
    right: auto;
    top: auto;
    bottom: auto;
    align-items: center;
    text-align: center;
  }
  .name {
    font-size: clamp(22px, 6vw, 36px);
  }
  .tag {
    font-size: clamp(12px, 3vw, 18px);
  }
}
