* {
    box-sizing: border-box;
}
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    scrollbar-gutter: stable;
    max-width: 100vw;
}

body {
    font-family: 'JetBrains Mono', monospace;
    background-color: #0c0c0c;
    text-align: center;
    align-items: center;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #7F00FF 0%, rgba(0, 255, 255, 0) 100%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.05s linear;
    filter: blur(200px);
    z-index: -1;
    opacity: 60%;
    animation-delay: 1ms;
}

.about {
    margin-left: 200px;
    margin-right: 800px;
    color: white;
}

.soon h1 {
    text-align: center;
    margin: auto;
    color: white;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid white;
    border-radius: 15px;
    width: 100%;
    max-width: 700px;
    margin: 20px auto 0 auto;
    box-sizing: border-box;
}

nav a {
    display: inline-block;
    padding: 4px;
    transition: background-color 0.3s, transform 0.3s;
    box-sizing: border-box;
    text-decoration: None;
    color: white;
    border-radius: 10px;
}

nav a img {
    width: 18px;
    height: 18px;
    margin-right: 6px;
    vertical-align: middle;
    filter: invert(100%) sepia(90%) hue-rotate(120deg);
}

nav a:hover {
    background-color: gray;
    border-radius: 10px;
    transform: scale(1.05);
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 5%;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.left-content,
.right-content {
    flex: 1 1 400px;
    max-width: 500px;
}

.intro-text {
    max-width: 500px;
    margin-top: 10px;
    font-size: 1.2rem;
    color: #fff;
    text-align: left;
}

.tagline {
    font-size: 1.5rem;
    font-weight: bold;
    color: cyan;
    margin-top: 10px;
}

.social-icons {
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 10px;
    justify-content: center;
}

.social-icons a img {
    transition: 0.3s;
    text-decoration: none;
    filter: invert(100%) sepia(90%) hue-rotate(120deg);
    margin: 0 10px;
}

.social-icons a:hover img {
    transform: scale(1.3);
    filter: brightness(2);
    filter: invert(200%) sepia(10%) hue-rotate(120deg);
}

.btn {
    display: inline-block;
    padding: 12px 40px;
    font-size: 1.2rem;
    color: white;
    background: cyan;
    border-radius: 300px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    z-index: 0;
    position: relative;
    cursor: pointer;
    color: #FFF;
    outline: none;
    border: none;
    margin-top: 20px;
    text-align: center;
}

.btn::after {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #333;
    left: 0;
    top: 0;
    border-radius: 300px;
}

.btn::before {
    content: "";
    background: linear-gradient(
        45deg,
        red, orange, yellow, green,
        blue, purple, hotpink,red
    );
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px); 
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 300px;
    opacity: 1;
}

.fade-in {
    display: flex;                
    flex-wrap: wrap;             
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    width: 100%; 
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInAnimation 1s ease-out forwards;
}

.fade-in2 {
    width: 100%; 
    opacity: 0;
    transform: translateY(20px); 
    animation: fadeInAnimation2 1s ease-out forwards;
}


@keyframes fadeInAnimation {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInAnimation2 {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowing {
    0% {background-position: 0 0;}
    50% {background-position: 400% 0;}
    100% {background-position: 0 0;}
}

.btn:hover::before {
    opacity: 1;

}

.btn:active:after {
    background: transparent;
}

.btn:active {
    color: red;
    font-weight: bold;
}

.profile-pic {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: cover;
}
  
.container h1{
    text-align: left;
    margin-bottom: 5px;
}

.container img {
    max-width: 300px;
    height: auto;
    align-items: right;
}

.text {
    max-width: 500px;
}

.icon-container {
    display: flex;
    justify-content: left; 
    gap: 15px; 
    margin-top: 10px;
    margin-left: 40px;
}

.icon-container a {
    transition: transform 0.3s;
}

.left-content, .right-content {
    flex: 1 1 400px;
    max-width: 500px;
}
  
  .profile-pic {
    width: 100%;
    max-width: 350px;
    border: 2px solid white;
    border-radius: 12px;
}

.icon-container a:hover {
    transform: scale(1.15); 
}

@media (max-width: 768px) {
    .nav {
        flex-direction: row;        
        flex-wrap: wrap;            
        justify-content: center;
        gap: 8px;                   
    }
    
    .nav a {
        margin: 0;
        flex: 1 0 auto;             
        text-align: center;
    }
  
    .photo-grid {
        grid-template-columns: 1fr;
    }
  
    .social-icons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

