/* Styles généraux */
body {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Conteneur principal */
.cv-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Header */
header {
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #0056b3, #003c82);
    color: white;
    padding: 50px 20px 30px;
    border-bottom: 5px solid #004a9f;
}

header h1 {
    font-size: 3em;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
}

header .stage {
    font-size: 1.2em;
    font-style: italic;
    margin: 10px 0 0;
    color: #dcdcdc;
}

.contact {
    margin-top: 20px;
    font-size: 1.1em;
}

.contact p {
    margin: 5px 0;
}

/* Sections principales */
section {
    padding: 20px 30px;
    margin: 20px 0;
    border-left: 5px solid #0056b3;
    background: #f8f8fc;
    border-radius: 5px;
}

section h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #0056b3;
    text-transform: uppercase;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
}

section p {
    margin-bottom: 15px;
    font-size: 1em;
    line-height: 1.6;
}

/* Expérience */
.experience ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.experience ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #0056b3;
    font-size: 1.5em;
    line-height: 1;
}

/* Compétences */
.skills ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.skills ul li {
    background: #e3e9f1;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    font-size: 1em;
    color: #0056b3;
    font-weight: bold;
}

/* Formation */
.formation p {
    margin-bottom: 15px;
}

/* Le footer */
footer {
    text-align: center;
    padding: 20px;
    background: #0056b3;
    color: white;
    font-size: 1em;
}

footer a {
    color: #dcdcdc;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Forme du header */
.top-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #004a9f;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    z-index: 1;
}



.cv2 a {
    display: block;
    text-align: center;
    background-color: #4CAF50;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 auto;
    max-width: 200px;
}

.cv2 a:hover {
    background-color: #45a049;
    transition: background-color 0.3s ease;
}
