@import url('https://fonts.googleapis.com/css2?family=Viga&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: radial-gradient(circle at center, #020c1b, #233554);
    background-size: 200% 200%;
    color: #fff;
    line-height: 1.6;

}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.morphing-text {
    font-size: 3rem;
    font-weight: bold;
    margin: 2rem 0;
    min-height: 4rem;
    background: linear-gradient(45deg, #64ffda, #00a1b6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
}

.morphing-text.blur {
    filter: blur(10px);
}

.dust-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(100, 255, 218, 0.2);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    33% {
        transform: translateY(-50px) translateX(50px) rotate(120deg);
    }
    66% {
        transform: translateY(50px) translateX(-50px) rotate(240deg);
    }
    100% {
        transform: translateY(0) translateX(0) rotate(360deg);
    }
}

.social-links {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.social-links a {
    color: #64ffda;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0096aa;
}


.name-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    line-height: 5.8rem;
    z-index: 2;
}

.first-name {
    font-size: 2.2rem;
    color: #64ffda;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    letter-spacing: 0.5rem;
    text-transform: uppercase;
}

.last-name {
    font-size: 7.5rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Viga', sans-serif;
    background: linear-gradient(to right, #64ffda, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.2);
}

.last-name::after {
    content: "✧･ﾟ";
    font-size: 3rem;
    position: absolute;
    top: 25px;
    right: -40px;
    -webkit-text-fill-color: #ffffff;
}

.skills {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.skill-item {
    background: rgba(100, 255, 218, 0.1);
    padding: 0.2rem 1.5rem;
    border: 1px solid #64ffda;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: rgba(100, 255, 218, 0.2);
    transform: scale(1.1);
}

.project-carousel {
    width: 100%;
    max-width: 800px;
    position: relative;
    margin: 3rem auto;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.project-slide {
    min-width: 100%;
    padding: 1rem;
    text-align: center;
}

.project-slide img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #64ffda;
}

.project-slide h3 {
    margin: 1rem 0;
    color: #64ffda;
}

.project-slide p {
    margin-bottom: 1rem;
}

.project-slide a {
    color: #64ffda;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #64ffda;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.project-slide a:hover {
    background: rgba(100, 255, 218, 0.2);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(100, 255, 218, 0.2);
    border: none;
    color: #64ffda;
    padding: 1rem;
    cursor: pointer;
    z-index: 3;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: rgba(100, 255, 218, 0.4);
}

.prev-button {
    left: 1rem;
}

.next-button {
    right: 1rem;
}


.social-hover-text {
    color: #64ffda;
    font-size: 0.8rem;
    letter-spacing: 0.1rem;
}

.footer {
    background: #060f1d;
    color: #8892b0;
    padding: 2rem 0;
    text-align: center;
    position: relative;
    margin-top: 3rem;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
    color: #8892b0;
    transition: color 0.3s ease;
}


.footer a {
    color: #64ffda;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #8892b0;
}
