* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
span.name {
    color: #64ffda;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a192f;
    color: #8892b0;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.logo {
    width: 45px;
    height: 45px;
    border: 2px solid #64ffda;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #64ffda;
    font-size: 20px;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    color: #ccd6f6;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Courier New', monospace;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #64ffda;
}

nav a span {
    color: #64ffda;
    margin-right: 5px;
}

.resume-btn {
    border: 1px solid #64ffda;
    padding: 10px 20px;
    border-radius: 4px;
    color: #64ffda !important;
    transition: background-color 0.3s ease;
}

.resume-btn:hover {
    background-color: rgba(100, 255, 218, 0.1);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 150px;
    width: 100%;
    gap: 80px;
}

.hero-content {
    flex: 1;
}

.profile-image {
    flex-shrink: 0;
    position: relative;
}

.profile-image img {
    width: 300px;
    height: 300px;
    border-radius: 8px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.profile-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid #64ffda;
    border-radius: 8px;
    top: 20px;
    left: 20px;
    z-index: 1;
    transition: transform 0.3s ease;
}

.profile-image:hover img {
    transform: translate(-10px, -10px);
}

.profile-image:hover::before {
    transform: translate(10px, 10px);
}

.profile-image img {
    transition: all 1.6s ease;
}

.intro {
    color: #64ffda;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    margin-bottom: 20px;
}

span.job-title {
    font-family: 'Courier New', monospace;
    font-size: 2.15em;
    margin-bottom: 20px;
}

h1 {
    color: #ccd6f6;
    font-size: 72px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.1;
}

h2 {
    color: #8892b0;
    font-size: 72px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.1;
}

.description {
    color: #8892b0;
    font-size: 18px;
    max-width: 540px;
    margin-bottom: 50px;
}

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

.description a:hover {
    text-decoration: underline;
}

.cta-btn {
    display: inline-block;
    border: 1px solid #64ffda;
    padding: 18px 28px;
    border-radius: 4px;
    color: #64ffda;
    text-decoration: none;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.cta-btn:hover {
    background-color: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    header {
        padding: 20px 30px;
    }

    .hero {
        padding: 0 30px;
        flex-direction: column;
        gap: 40px;
    }

    h1, h2 {
        font-size: 48px;
    }

    nav {
        gap: 15px;
    }

    .profile-image img,
    .profile-image::before {
        width: 250px;
        height: 250px;
    }
}

/* Animation du curseur terminal */
@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.terminal-cursor {
    display: inline-block;
    font-weight: bold;
}