:root {
    --bleu-fonce: #3156a3;
    --bleu-clair: #00adeb;
    --bleu-cyan: #42b3e5;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #666;
    background: #f8f8f8;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'PT Sans', Arial, sans-serif;
    font-weight: normal;
    color: #000;
    margin: 0 0 10px;
}

a {
    color: var(--bleu-fonce);
    border-bottom: 1px dotted var(--bleu-fonce);
    text-decoration: none;
}

a:hover {
    border-bottom-style: solid;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #e2ddd2;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'PT Sans', Arial, sans-serif;
    font-size: 1.3rem;
    color: var(--bleu-fonce);
    border-bottom: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.pilier-icone {
    height: 66px;
    width: auto;
    margin-bottom: 10px;
}

.article-image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 16px;
}

nav a {
    margin-left: 20px;
    color: #666;
    border-bottom: none;
}

nav a:hover { color: var(--bleu-fonce); }

.hero {
    text-align: center;
    padding: 100px 20px;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.hero h1 { color: #fff; }

.dernieres-actus > h2 {
    padding-bottom: 12px;
    margin-bottom: 20px;
    position: relative;
}

.dernieres-actus > h2::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--bleu-clair);
}

.evenements, .piliers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.carte, .pilier {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.evenements .carte {
    color: #fff;
}

.evenements .carte h2 {
    color: #fff;
    margin-top: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: #fff;
}

table th, table td {
    padding: 8px 12px;
    border-bottom: 1px solid #e2ddd2;
    text-align: left;
}

.flash-success {
    background: #dff0d8;
    color: #3c763d;
    padding: 10px 16px;
    border-radius: 4px;
    margin: 20px 0;
}

.site-footer {
    margin-top: 60px;
    background: #202020;
    color: #909090;
    padding: 40px 0 0;
    text-align: left;
    font-size: 0.9rem;
}

.site-footer a {
    color: #d5d5d5;
    border-bottom-color: #555;
}

.site-footer a:hover {
    color: #fff;
}

.coords { list-style: none; padding: 0; }

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-col h3 {
    color: #fff;
    font-size: 1rem;
    margin-top: 0;
    padding-bottom: 12px;
    position: relative;
}

.footer-col h3::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--bleu-clair);
}

.footer-col blockquote {
    margin: 0 0 10px;
    font-style: italic;
}

.quote-author {
    font-size: 0.85rem;
    color: #707070;
}

.footer-articles {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-articles li {
    margin-bottom: 10px;
}

.footer-articles-time {
    display: block;
    font-size: 0.8rem;
    color: #707070;
}

.copyright {
    border-top: 1px solid #353535;
    margin: 0;
    padding: 15px 0;
    font-size: 11px;
    color: #707070;
    text-align: center;
}

/* ---------- Liste d'articles (Stages) : cartes flottantes façon thème d'origine ---------- */
.liste-articles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
}

@media (max-width: 640px) {
    .liste-articles {
        grid-template-columns: 1fr;
    }
}

.carte-article {
    padding-bottom: 25px;
    margin-top: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.comment_box {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
}

.comment_box .comments {
    background: var(--bleu-clair);
    color: #fff;
    font-size: 11px;
    text-align: center;
    padding: 9px 10px;
    margin-left: 2px;
}

.comment_box .date {
    position: relative;
    background: var(--bleu-fonce);
    color: #fff;
    font-size: 11px;
    text-align: center;
    padding: 9px 13px;
}

.article-detail .comment_box .date {
    margin-bottom: 12px;
}

table.no-style, table.no-style th, table.no-style td { border: 0; background: none; }

.btn-mail {
    display: inline-block;
    background: var(--bleu-fonce);
    color: #fff;
    border-bottom: none;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 10px;
}

.btn-mail:hover {
    background: var(--bleu-clair);
}
