body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.container {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

.initiales {
    position: absolute;
    top: 20px; /* Repositionné tout en haut */
    left: 50px; /* Gardé aligné avec le contenu principal */
    color: #cbfe00;
    font-size: 24px;
    font-weight: bold;
    animation: shimmer 2s infinite alternate;
    font-family: 'Lugrasimo', sans-serif; 
    z-index: 10;
}

main {
    width: 50%;
    display: flex;
    align-items: center;
    padding-left: 50px;
    z-index: 10;
}

.text-content {
    display: flex;
    flex-direction: column;
}

.hello {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
    animation: fadeIn 1s ease-in;
}

.name-container {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
}

.large-text {
    font-size: 48px;
    margin-right: 10px;
    animation: slideIn 1s ease-out;
}

.name {
    color: #cbfe00;
    font-size: 48px;
    animation: shimmer 2s infinite alternate;
}

.profession {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.description {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
}

.hire-button {
    background-color: #cbfe00;
    color: black;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 30px;
    text-align: center;
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 14px;
}

.hire-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #cbfe00;
}

.hire-button .icon-briefcase {
    margin-right: 10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="7" width="20" height="14" rx="2" ry="2"></rect><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"></path></svg>') no-repeat center;
    width: 24px;
    height: 24px;
}

.photo-container {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.profile-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

@keyframes shimmer {
    from { text-shadow: none; }
    to { text-shadow: 0 0 10px #cbfe00; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@media screen and (max-width: 1024px) {
    .container {
        flex-direction: column;
    }
    
    main {
        width: 100%;
        padding: 20px;
        height: 50vh;
        justify-content: center;
        align-items: flex-start;
    }
    
    .photo-container {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 50vh;
    }
    
    .initiales {
        top: 10px;
        left: 10px;
    }
}

@media screen and (max-width: 768px) {
    .large-text, .name {
        font-size: 36px;
    }
    
    .hello, .profession {
        font-size: 20px;
    }
    
    .description {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .large-text, .name {
        font-size: 28px;
    }
    
    .hello, .profession {
        font-size: 18px;
    }
    
    .description {
        font-size: 14px;
    }
    
    .hire-button {
        width: 120px;
        padding: 6px 12px;
        font-size: 12px;
    }
}