/*****************************
* LANDING PAGE - INFO
*****************************/

#particles-js {
    margin: 0;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    position: absolute;
    z-index: -1000;
}

#landing {
    width: 80vw;
    margin: 0 auto;
    height: 100vh;
    z-index: 1000;
}

#content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 700px;
    font-family: 'Nunito', sans-serif;
}

#name-block {
    display: inline-block;
    text-align: left;
}

#name-row {
    display: flex;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    font-size: clamp(2rem, 7vw, 2.8rem);
    font-weight: 800;
}

#name-underline {
    width: 120px;
    height: 3px;
    background: #235493;
    margin: 1rem 0 2rem 0;  /* NO auto => stays left aligned */
    border-radius: 2px;
}

#name-text {
    display: inline-block;
    white-space: nowrap;
}

#name .emoji {
    margin-left: 0.4rem;
    vertical-align: -0.1em;   /* optional fine-tune */
}

@media (max-width:480px){
    #name-underline{
      width:80px;               /* shorter line on phones */
      margin:0.9rem 0 2rem 0;   /* slightly tighter gap   */
    }
}  

#intro-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: #212121;
}

#social-icons-content a {
    color: #235493;
}

#waving{
    width:1em;
    height:1em;
    margin-left:1rem;      /* space between name and emoji  */
    vertical-align:-0.15em;   /* sit nicely on the baseline */
    transform-origin:70% 70%;
    animation:rotation .4s infinite alternate ease-in-out;
}

@-webkit-keyframes rotation {
    from {
        transform: rotate(20deg);
    }
    to {
        transform: rotate(80deg);
    }
}

.social-icons ul {
    padding: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 1.5rem;
}
  
.social-icons ul li {
    list-style-type: none;
}
  
.social-icons ul li a {
    color: #235493;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}
  
.social-icons ul li a:hover {
    color: black;
}

.social-icons ul li:not(:nth-child(1)):not(:nth-child(4)) {
    margin-left: 20px;
    margin-right: 20px;
}

.social-icons ul li:nth-child(1) {
    margin-right: 20px;
}

.social-icons ul li:nth-child(4) {
    margin-left: 20px;
}

.social-icons {
    font-size: 1.5rem;
}

.emoji {
    margin: 0 4px;
}