/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #111111;
    --text-color: #ffffff;
    --accent-color: #666666;
    --hover-color: #888888;
    --ch-width: 0.61em;
    --ch-count: 16;      /* Actual length of "good evening, I'm" */
    --comma-position: 12; /* Position of comma (count the characters up to it) */
    --pause-duration: 15; /* Percentage of animation to pause at comma */
    --type-duration: calc(200ms * var(--ch-count));  /* Increased from 180ms to 250ms */
    --cursor-color: #ffffff;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;  /* Add this to ensure full width within max-width */
}

.project-grid.second-row {
    margin-top: -50px;
    grid-template-columns: repeat(2, 1fr);  /* Match the first row's column layout */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scroll */
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
    scrollbar-width: thin;
}

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;  /* Revert back to space-between */
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--text-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--text-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active::after {
    width: 100%;
}

/* Add these new styles for nav links animation */
.nav-links li {
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInNav 0.5s ease forwards;
}

/* Create animation for each nav item with increasing delays */
.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInNav {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid var(--text-color);
    border-radius: 15px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

.cta-button:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

/* Add this new style for the gradient overlay */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;  /* Adjust height of fade as needed */
    background: linear-gradient(
        to bottom,
        rgba(17, 17, 17, 0) 0%,
        rgba(17, 17, 17, 0.8) 50%,
        rgba(17, 17, 17, 1) 100%
    );
    z-index: 2;
}

/* Featured Projects */
.featured-projects {
    position: relative;
    margin-top: -100px;
    padding-top: 8rem;
    background-color: var(--bg-color);
    z-index: 3;
}

.featured-projects h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Add the @property definition for the animation */
@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

/* Update project card styles */
.project-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transform: translateY(0);
    transition: all 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: auto;
    position: relative;
    isolation: isolate;
    border: 2px solid transparent;
    background-clip: padding-box;
    cursor: default; /* Remove pointer cursor from card itself */
    opacity: 0.9;  /* Start dimmed */
    filter: brightness(0.8);  /* Additional dimming */
    width: 100%;  /* Ensure cards take full width of their grid cell */
}

/* Update gradient border animation */
.project-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    padding: 2px;
    background: conic-gradient(
        from var(--angle),
        var(--accent-color) 0%, 
        var(--text-color) 33%, 
        var(--text-color) 66%, 
        var(--accent-color) 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 10px;
    padding: 2px;
    background: inherit;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.project-card:hover {
    transform: translateY(-10px);
    opacity: 1;  /* Full opacity on hover */
    filter: brightness(1);  /* Full brightness on hover */
}

.project-card:hover::before,
.project-card:hover::after {
    opacity: 1;
    animation: borderRotate 4s linear infinite;
}

.project-image {
    flex-shrink: 0;  /* Prevent image from shrinking */
}

.project-image img {
    width: 60px;  /* Adjust size as needed */
    height: 60px;
    object-fit: contain;
}

.project-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
}

.project-info p {
    color: var(--accent-color);
    margin-bottom: auto;
    flex-grow: 1;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 1px solid var(--text-color);
    border-radius: 8px;
    background: transparent;
    margin-top: 1.5rem;
    width: fit-content;
    transition: all 0.3s ease, opacity 0.3s ease;
    z-index: 2;
    position: relative;
    text-decoration: none;
    opacity: 0.8;
}

/* Keep this hover effect */
.project-link:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

.project-link .material-symbols-outlined {
    font-size: 1.2rem;
    text-decoration: none;
}

/* Footer */
footer {
    width: 100%;
    position: relative;
    background-color: #1a1a1a;
    padding: 3rem 5%;
    margin-top: auto; /* Push footer to bottom if content is short */
}

.social-links {
    margin-bottom: 1rem;
    display: flex;
    gap: 2rem;  /* Add consistent gap between icons */
    justify-content: center;
}

.social-links a {
    color: var(--text-color);
    opacity: 0.7;
    transition: opacity 0.3s ease;
    font-size: 1.5rem;  /* Make icons slightly larger */
}

.social-links a:hover {
    opacity: 1;
}

/* Mobile Navigation */
.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 92vh;
        top: 8vh;
        background-color: rgba(17, 17, 17, 0.95);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 2rem;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .burger {
        display: block;
    }
}

.nav-active {
    transform: translateX(0%);
}

/* Add these new styles */
.animate-title .text-wrapper {
    position: relative;
    display: inline-block;
    padding-top: 0.2em;
}

.animate-title .letters {
    display: inline-block;
    white-space: nowrap;  /* Keep all letters on same line */
}

.animate-title .letter {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    color: var(--text-color);
    animation: 
        moveUpWithSettle 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards,
        glowLetter 3s ease forwards;
    animation-delay: calc(3.8s + var(--char-index) * 0.1s),
                    calc(4.1s + var(--char-index) * 0.1s);
    will-change: transform, opacity, text-shadow;
    margin-right: -0.05em;
}

/* Special handling for space character */
.animate-title .letter.space {
    margin-right: 0.1em;
}

@keyframes moveUpWithSettle {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    30% {
        opacity: 0;
    }
    70% {
        transform: translateY(-5px);
        opacity: 1;
    }
    85% {
        transform: translateY(2px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes glowLetter {
    0%, 20% {
        text-shadow: none;
    }
    50% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.5),
            0 0 40px rgba(255, 255, 255, 0.3),
            0 0 60px rgba(255, 255, 255, 0.2);
    }
    100% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.3),
            0 0 20px rgba(255, 255, 255, 0.2);
    }
}

/* Add animation for greeting text */
.greeting-text {
    margin-bottom: -0.5rem;
    margin-top: -6rem;
}

/* Add starfield styles */
#starfield-holder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#starfield-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 2s ease;
}

#starfield-effect.visible {
    opacity: 1;
}

/* Add at the top with other root styles */
html {
    scroll-behavior: smooth;
}

/* Add these new scroll animation classes */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(60px);
}

.scroll-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 1s ease;
}

/* Add these new section styles */
.about-section,
.contact-section,
.resume-section,
.projects-section {
    min-height: 100vh;
    padding: 120px 5% 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section h1,
.contact-section h1,
.resume-section h1,
.projects-section h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Style for active nav link */
.nav-links a.active {
    color: var(--text-color);
    font-weight: 500;
}

.nav-links a.active::after {
    width: 100%;
}

.contact-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 40px;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 600px;
    background: rgba(26, 26, 26, 0.5);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-origin: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-wrapper.shrink {
    transform: scale(0);
    opacity: 0;
}

.result-card {
    position: absolute;
    background: rgba(26, 26, 26, 0.5);
    padding: 2rem 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.result-card.show {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.form-header p {
    color: var(--accent-color);
}

.form-content {
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group label .material-symbols-outlined {
    vertical-align: middle;
    font-size: 1.2rem;
    margin-right: 0.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-color);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px rgba(102, 102, 102, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input[type="tel"] {
    width: 100%;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-color);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group button {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group button:hover {
    background: var(--text-color);
    color: var(--bg-color);
}

.form-result {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-color);
}

.form-result.success {
    color: #4CAF50;
}

.form-result.error {
    color: #f44336;
}

/* Update placeholder font */
.form-group input::placeholder,
.form-group textarea::placeholder {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

/* Coming Soon styles */
.coming-soon-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    padding-top: 120px; /* Add extra padding for header */
    position: relative; /* Add this */
    width: 100%; /* Add this */
    max-width: 100%; /* Add this */
    margin: 0; /* Add this */
}

.coming-soon-content {
    max-width: 600px;
    width: 90%; /* Add this */
    margin: 0 auto; /* Add this */
    animation: fadeInUp 0.8s ease forwards;
    padding: 2rem; /* Add this */
}

.coming-soon-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.coming-soon-content p {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
}

.back-home {
    display: inline-flex;
    align-items: center;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-home:hover {
    color: var(--accent-color);
}

main {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Update shimmer effect styles */
.shimmer {
    position: relative;
    color: rgba(255, 255, 255, 0.9); /* Slightly dimmer base text */
    background: linear-gradient(
        110deg,
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.7) 45%,
        rgba(255, 255, 255, 1) 47%,
        rgba(255, 255, 255, 1) 53%,
        rgba(255, 255, 255, 0.7) 55%,
        rgba(255, 255, 255, 0.7) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s ease-in-out infinite;
}

/* Remove or comment out the .shimmer::after block entirely */
/* .shimmer::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    color: transparent;
    filter: blur(8px);
    animation: shimmerGlow 5s ease-in-out infinite;
} */

@keyframes shimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 100% 0;
    }
}

@keyframes shimmerGlow {
    0%, 100% {
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 0),
            0 0 30px rgba(255, 255, 255, 0),
            0 0 45px rgba(255, 255, 255, 0);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 0.8),
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 45px rgba(255, 255, 255, 0.2);
    }
}

/* Add back the rotation animation */
@keyframes borderRotate {
    from {
        --angle: 0deg;
    }
    to {
        --angle: 360deg;
    }
}

/* Make sure this is after the @property definition */
.project-card:hover::before,
.project-card:hover::after {
    opacity: 1;
    animation: borderRotate 4s linear infinite;
}

.code-button {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    padding: 0.2rem 0.6rem;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
    color: var(--accent-color);
    background: transparent;
    transition: all 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    z-index: 2;  /* Ensure it's above other elements */
    position: relative;  /* For z-index to work */
    opacity: 0.8;
}

.project-card:hover .code-button {
    border-color: var(--text-color);
    color: var(--text-color);
    opacity: 1;
}

.code-button:hover {
    background: var(--text-color);
    color: var(--bg-color) !important;  /* Override the card hover state */
}

/* Hide default scrollbar */
::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: background 0.3s ease;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Show scrollbar only when hovering over scrollable area */
body:not(:hover)::-webkit-scrollbar-thumb {
    background: transparent;
}

/* Typing animation variables */
.type-animation {
    display: inline-block;
    width: 0;  /* Start completely hidden */
    overflow: hidden;
    padding-right: 0;  /* Remove initial padding */
    position: relative;
    color: var(--accent-color);
    white-space: nowrap;
}

.type-animation::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1.2em;
    width: 2px;
    background: var(--cursor-color);
    opacity: 0;  /* Start invisible */
}

.type-animation.animating {
    animation: type var(--type-duration);
    animation-fill-mode: forwards;
    animation-delay: 0.8s;
}

.type-animation.animating::after {
    animation: cursor 1s ease-in-out infinite;
    animation-delay: 0.8s;
    animation-play-state: running;
}

.type-animation.animating.completed::after {
    animation: none;
    opacity: 0;
}

@keyframes cursor {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

@keyframes type {
    0% { 
        width: 0;
        padding-right: 0.08em;
    }
    /* Type until comma (12 characters: "good evening,") */
    5% { width: calc(1 * var(--ch-width)); }
    10% { width: calc(2 * var(--ch-width)); }
    15% { width: calc(3 * var(--ch-width)); }
    20% { width: calc(4 * var(--ch-width)); }
    25% { width: calc(5 * var(--ch-width)); }
    30% { width: calc(6 * var(--ch-width)); }
    35% { width: calc(7 * var(--ch-width)); }
    40% { width: calc(8 * var(--ch-width)); }
    45% { width: calc(9 * var(--ch-width)); }
    50% { width: calc(10 * var(--ch-width)); }
    55% { width: calc(11 * var(--ch-width)); }
    60% { width: calc(12 * var(--ch-width)); } /* Comma position */
    /* Longer pause at comma */
    60%, 80% { width: calc(12 * var(--ch-width)); }
    /* Slower typing after comma */
    85% { width: calc(13 * var(--ch-width)); }
    90% { width: calc(14 * var(--ch-width)); }
    93% { width: calc(15 * var(--ch-width)); }
    96%, 100% { 
        width: calc(16 * var(--ch-width));
        padding-right: 0;
    }
}

/* Override Chrome's autofill styles */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px rgba(0, 0, 0, 0.2) inset !important;
    -webkit-text-fill-color: var(--text-color) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Style the autofill dropdown */
input:-webkit-autofill:hover + .form-group input,
input:-webkit-autofill:focus + .form-group input {
    background: rgba(0, 0, 0, 0.2) !important;
    border-color: var(--accent-color);
}

.status-tag {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    transition: all 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    cursor: default;
    z-index: 2;
    position: relative;
    opacity: 0.8;
    color: #53eb58;
    border: 1px solid #53eb58;
    background: transparent;
}

/* Add shimmer overlay */
.status-tag::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 0%,
        transparent 45%,
        rgba(255, 255, 255, 0.7) 47%,
        rgba(255, 255, 255, 0.7) 53%,
        transparent 55%,
        transparent 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s ease-in-out infinite;
    padding: 0.2rem 0.6rem;
}

/* Add border shimmer */
.status-tag::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 4px;
    padding: 1px;
    background: linear-gradient(
        110deg,
        #53eb58 0%,
        #53eb58 45%,
        #7fff83 47%,
        #7fff83 53%,
        #53eb58 55%,
        #53eb58 100%
    );
    background-size: 200% 100%;
    animation: shimmer 5s ease-in-out infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.project-card:hover .status-tag {
    opacity: 1;
}

/* Remove hover styles that were causing issues */
.status-tag:hover {
    background: transparent;
}

#sphere-container {
    position: fixed;
    top: 25px;
    right: 55%;  /* Adjust this value to position it right of "contact" */
    width: 40px;
    height: 40px;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-20px);
    animation: fadeInNav 0.5s ease forwards;
    animation-delay: 0.35s;
}

@keyframes fadeInNav {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
} 