:root {
    --padding-section: 3rem 2rem;
    --margin-section: 4rem auto;
    --max-width-section: 1300px;
    --bg-section: #ffffff;
    --radius: 8px;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --secondary-bg: #3498db;
    --accent-color: #a5744a;
    --primary-color: #2c3e50;
    --text-color: #1f2937;
    --gap-flex: 1.5rem;
    --item-width: 200px;
}

section {
    padding: var(--padding-section);
    margin: var(--margin-section);
    max-width: var(--max-width-section);
    background: var(--bg-section);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.a-propos {
    padding: var(--padding-section);
    background-color: var(--bg-section);
}

.a-propos-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1px;
    align-items: center;
}

.a-propos-content p {
    font-size: 1.4rem;
    width: 800px;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    margin-top: 2rem;
    line-height: 1.8;
}


.liste-faits {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.liste-faits li {
    margin-bottom: 0.5rem;
    font-style: italic;
}

.citation {
    margin-top: 2rem;
    font-style: italic;
    color: var(--secondary-bg);
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.liens-profil a {
    display: inline-block;
    margin-right: 1rem;
    text-decoration: underline;
    color: var(--primary-color);
    font-weight: bold;
    transition: color 0.3s ease;
}

.liens-profil a:hover {
    color: var(--accent-color);
}

.a-propos-photo img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-left: 50px;
    border-radius: 40%;
    box-shadow: var(--shadow);
}

.projets-container,
.competences-grid,
.interets-container,
.techno-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-flex);
    justify-content: center;
}

.projet-card,
.competence-item,
.interet-item,
.techno-item {
    background: #f9fafb;
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    width: var(--item-width);
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.projet-image img,
.competence-item img,
.interet-item img,
.techno-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.formation-list {
    list-style: none;
    padding-left: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: .7rem .1rem;
    margin-bottom: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    resize: none;
}

.contact-form .cta {
    background-color: var(--text-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
}
.formation-list li {
    margin-bottom: 1rem;
    font-style: italic;
}

.interet-item img {
    width: 200px;
    height: 200px;
    margin-bottom: 0.5rem;
}
.options-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.options-container article {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.options-container article:hover {
    transform: translateY(-5px);
}

.options-container h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.options-container p {
    color: #606060;
    line-height: 1.6;
}


.parcours-pro h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.parcours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--gap-flex);
}

.parcours-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.parcours-card:hover {
    transform: translateY(-5px);
}

.parcours-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.parcours-card p {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.parcours-card ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.parcours-card ul li {
    list-style-type: disc;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.parcours-card a {
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
}

.parcours-card a:hover {
    color: var(--secondary-bg);
    text-decoration: underline;
}

.veille-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.veille-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.veille-card:hover {
    transform: translateY(-5px);
}

.veille-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.veille-card p {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.veille-card a {
    color: #3498db;
    font-weight: bold;
    text-decoration: none;
}

.veille-card a:hover {
    text-decoration: underline;
}
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

blockquote {
    font-style: italic;
    background-color: #ffffff;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

cite {
    display: block;
    margin-top: 1rem;
    font-weight: bold;
    color: #2c3e50;
}

.projet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.projet-image img { 
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.projet-info h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.projet-technos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.techno-tag {
    background-color: var(--secondary-bg);
    color: #fff;
    font-size: 1.2rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.projet-description {
    font-size: 1.4rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: left;
}

.projet-link {
    align-self: start;
    font-weight: bold;
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.projet-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}
