body {
  margin: 0;
  height: 1100px;       
  display: grid;
  grid-template-columns: 50% 50%;
}

.left {
  background: url('../images/blur-background.webp') no-repeat center/cover;
  text-align: center;
  font-family: 'Raleway', 'Roboto', sans-serif;
  padding-top: 20px;
}

.header-container-left{
  background-color: rgb(23, 16, 16);
 display: flex;
 justify-content: space-around;
font-size: 24px;
gap: 200px;
opacity: 0.5;
margin-left: 10px;
border-bottom-left-radius: 50px;
border-top-left-radius: 50px;
align-items: center;
padding-right: 100px;
}

@media (max-width: 600px){
  .header-container-left{
      flex-direction: column; /* stack items vertically */
    align-items: flex-end;  /* keep them on the right side */
    gap: 10px;              /* smaller gap for small screens */
    padding: 10px;          /* adjust padding */
    border-top-left-radius: 30px;  /* optional: smaller radius */
    border-bottom-left-radius: 30px; 
  }
}


.header-container-left > div {
  color: rgb(255, 255, 255);
  font-weight: bold;
}
.header-container-left > div:hover{
  opacity: 0.5;
  cursor: pointer;
}
.coder {
  font-size: 4rem;
  font-weight: bold;
  color: rgb(79, 123, 234);
  margin-top: 100px;
}

.profile-picture-left{
  
  width: 200px;
  height: 250px;
  margin-left: 50px;
  border-radius: 30px;
  
}

.code-image{
   width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50px;
  object-position: center 190%;
}

.profile-container{
  display: flex;
  margin-left: 70px;
}

.text-introduce{
  margin-top: 60px;
  color: white;
  margin-left: 40px;
  font-size: 50px;
}

.button-container{
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.project-button, .contact-button {
   width: 260px;
   height: 100px;
   border-radius: 300px;
   background-color: rgba(12, 66, 72, 0.857);
   font-size: 20px;
   cursor:zoom-in;
   border-style: solid;
   border-color: green;
   color: rgb(0, 122, 108);
}
.project-button:hover, .contact-button:hover{
  opacity: 0.5;
}

.box-container{
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 40px;
}

.box-1, .box-2{
  width: 300px;
  height: 300px;
  background-color: rgb(0, 0, 0);
  border-style: solid;
  border-radius: 50px;
  color: white;
}


.game-icon {
  width: 300px;   /* control icon size */
  height: 250px;
  margin-top: 10px; /* spacing under text */
  border-radius: 100px;
  cursor: pointer;
}

.game-icon:hover{
  opacity: 0.5;
}

.modal,.modal2,.box-music-modal{
  position: fixed; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  width: 300px;
  max-width: 80%;
  z-index: 1000;
}

.contact-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  width: 300px;
  text-align: center;
}

.close-modal, .close-contact-modal, .close-button-music{
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.overlay, .overlay2,.overlay5,.overlay-music-box{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  z-index: 999;
}






.right {
    background: url('../images/art.webp') no-repeat center/cover;
  text-align: center;
  font-family: 'Raleway', 'Roboto', sans-serif;
  padding-top: 20px;
   position: relative; 
}

.header-right-container{
background-color: rgb(23, 16, 16);
min-height: 58px;
display: flex;
justify-content: center;
font-size: 24px;
gap: 150px;
opacity: 0.7;
padding-left: 20px;
margin-right: 50px;
border-bottom-right-radius: 50px;
border-top-right-radius: 50px;
align-items: center;
}

.header-right-container > div{
  color: white;
  font-weight: bold;
  padding-left: 30px;
  
}

.musician-title{
    font-size: 4rem;
  font-weight: bold;
  color: rgb(79, 123, 234);
  margin-top: 100px;
}


.hidden{
  display: none;
}

.text-introduce-art{
  margin-top: 60px;
  color: black;
  margin-left: 30px;
  font-size: 50px;
}

.profile-picture-right{
  
  width: 200px;
  height: 250px;
  margin-left: 50px;
  border-radius: 30px;
  
}

.code-image-art{
   width: 110%;
  height: 110%;
  object-fit: cover;
  border-radius: 50px;
  object-position: center 190%;
}

.song-audio{
  margin-top: 70px;
  height: 30px;
  color:rgb(0, 0, 0)
}

.header-right-container > div:hover{
  opacity: 0.5;
  cursor: pointer;
}

.box-music{

  height: 300px;
  width: 300px;
 border-radius: 900px;
  position: absolute;
    top: 80%;    /* move to vertical center */
  left: 50%; 
  transform: translate(-50%, -50%); /* perfectly center */
  background: rgba(255, 255, 255, 0.8)
}

@media (max-width: 600px){
  .header-right-container{
      flex-direction: column; /* stack items vertically */
    align-items: flex-end;  /* keep them on the right side */
    gap: 10px;              /* smaller gap for small screens */
    padding: 10px;          /* adjust padding */
    border-top-left-radius: 30px;  /* optional: smaller radius */
    border-bottom-left-radius: 30px; 
  }
}


