/* BUTTON STYLES GO HERE */
.button {
    background-color: transparent;
    opacity: 0.9;
    border: transparent;

    /* nearly transparent */
}
.social-buttons {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the buttons horizontally */
    flex-direction: row;
    gap: 10px; /* Adjust spacing between buttons as needed */
}

.linkedin-img {
    background-color: transparent;
    border: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 2.5s ease-in-out, drop-shadow 2.5s ease-in-out
}

.linkedin-img:hover svg {
    filter: drop-shadow(0 0 10px #081461f3); /* Blue glow */
}
.github-img {
    background-color: transparent;
    border: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 2.5s ease-in-out, drop-shadow 2.5s ease-in-out
}

.github-img:hover svg {
    filter: drop-shadow(0 0 10px #081461f3); /* Blue glow */
}


.scroll-button {
    font-size: 1.5rem;
    position: fixed;
    bottom: 50px;
    left: 50px;
    background-color: transparent;
    color: #F9F9F9;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 100;

    /* Initial state: hidden */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* When visible, fade in and slide to natural position */
.scroll-button.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.email-hover a:hover {
    color: blue; /* or whatever color you prefer */
    text-decoration: underline;
  }
