* {
    line-height: 2;
}

#glassmorphism {
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    /* flex-direction: column; */
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    padding: 2vw 2vw;
    /* transition: box-shadow 0.3s; */
}
.top-section {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 2vw;
    width: 100%;
    max-width: 1200px;
    align-items: stretch; /* Ensures children are equal height */
}


.top-section,
.journey{
    text-align: center;
}

.about-left, .about-right {
    width: 87vw;
}


.about-left {
    /* width: 84vw; */
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.me img{
    border-radius: 100000px;
    width: 20vw;
    height: 20vw;
    transition: all 0.5s;
    border: 15px solid rgba(0, 0, 0, 0)
}

.me img:hover {
    transform: scale(1.1);
    border: 15px solid rgb(110, 1, 150)
}

.my-stuff {
    margin-left: 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40vw;
    height: auto;
}

.opening-para {
    text-align: center;
    height: auto;
    width: 40vw;
    padding: 5px;
    border-radius: 20px;
}



body, html {
    background-image: url("3312580.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

}

.content {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100vw;
    min-height: 100vh;
    height: auto;
    padding: 2vw;
    box-sizing: border-box;
}



p, li, ul, a {
    font-family: monospace;
    font-size: 14px;
}


h1,h2,h3 {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


/* STYLING */
.about-me-title-box {
    margin-top: 15px;
    min-width: 7.5vw;
    width: 10vw;
    height: auto;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 20px;
}

/* ANIMATIONS */
.about-me-title-box {
    transition:
        border-top 0.5s,
        border-bottom 0.5s,
        scale 0.3s;
}

/* HOVER ANIMATIONS */
.about-me-title-box:hover {
    scale: 1.1;
    border-top: 5px solid rgb(133, 34, 182);
    border-bottom: 5px solid rgb(133, 34, 182);

}

/* STYLING */


li:hover {
    list-style-type: lower-roman;
    scale: 1.1;
}

li {
    transition: scale 0.4s;
    line-height: 2;
}

.journey {
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.journey:hover {
    transform: translateY(-12px) scale(1.03);
}




/* TOP BAR STUFF */

.top-bar{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.15);
    /* box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18); */
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    font-family: monospace;
    padding: 24px 32px;
}

.top-bar{
    font-family: monospace;
    margin-top: 0;
    width: auto;
    height: auto;
    padding: 15px;
    transition: border 0.3s;
}

.top-bar:hover {
    border: 10px solid rgb(185, 12, 185);
}

.home, .about, .contact, .projects{
    margin-left: 15px;
    margin-right: 15px;
    transition: transform 0.5s, box-shadow 0.3s;
    border-radius: 20px;
}

.home:hover,
.about:hover,
.contact:hover,
.projects:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.gotoskillset {
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.1s, scale 0.2s;
}

.gotoskillset:hover {
    color: rgba(255, 255, 255, 1);
    scale: 1.1;
}


.journey-para {
    padding: 8px 16px;
    border-radius: 12px;
    display: inline-block;
    transition:
        box-shadow 0.5s,
        transform 0.5s;
}

.journey-para:hover {
    transform: scale(1.05);
    box-shadow: 10px 15px 20px rgba(0, 0, 0, 0.7);
}

.journey-title {
    border-bottom: 5px double transparent;
    transition: border-bottom-color 0.5s;
}

.journey-title:hover {
    border-bottom: 5px double white;
}

a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.about-me-row {
    margin-top: 3vw;
    width: 87vw;
}




.about-right {
    /* width: 84vw; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1vw;
}

.journey,
.skills,
.hobbies {
    flex-direction: column;
    width: 22vw;
    height: 45vh;
}
.btn{
    margin-left: 3px;
    margin-right: 3px;
    padding: 10px;
    border-radius: 20px;
    background: none;
    border: none;
    /* border: 2px solid blue; */
}

.btn:hover{
    transition: transform 0.2s;
}

@keyframes borderAnim {
    0%   { border: 1.5px solid rgba(255, 255, 255, 0.25);}
    50%  { border: 6px dotted rgb(197, 48, 197);}
    100% { border: 8px solid rgb(197, 48, 197);}
}

@keyframes oppositeBorderAnim {
    100%   { border: 1.5px solid rgba(255, 255, 255, 0.25);}
    50%  { border: 6px dotted rgb(197, 48, 197);}
    0% { border: 8px solid rgb(197, 48, 197);}
}



.skills {
    transition: border 0.3s;
}

.skills:hover {
    animation: borderAnim 1.3s forwards;
}


.skills:not(:hover) {
    animation: oppositeBorderAnim 1.3s forwards !important;
}
.skills {
    animation: none !important;
}
.skills:hover {
    animation: borderAnim 1.3s forwards !important;
}


/* LOADING ANIMATION */
.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-color: #ccc #0000;
    animation: l16 1s infinite linear;
}
.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    margin: 2px;
    border: inherit;
    border-radius: 50%;
}
.loader::before {
    border-color: rgb(197, 48, 197) white;
    animation: inherit;
    animation-duration: .5s;
    animation-direction: reverse;
}
.loader::after {
    margin: 8px;
}
@keyframes l16 {
    100%{transform: rotate(1turn)}
}

.loading-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: linear-gradient(rgb(197, 48, 197), black);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
}

.loading-wrapper p {
    font-size: 20px;
}


.skillset-text {
    transition: all 0.4s;
}

.skillset-text:hover {
    color: rgb(0, 191, 255);
    border-bottom: 2px solid rgb(0, 191, 255);

}
