/*
Theme Name: MYEC2M
Theme URI: https://example.com/myec2m
Author: Antony Klinger
Author URI: https://example.com
Description: Un thème WordPress simple et léger, prévu pour accueillir des templates de page personnalisés.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: myec2m
*/

/* ---------- Reset léger ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ---------- Mise en page ---------- */
.site-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0;
}

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

.site-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.site-title a {
    color: #1a1a1a;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}

.site-content {
    padding: 40px 0;
}

.site-footer {
    border-top: 1px solid #eaeaea;
    padding: 24px 0;
    color: #666;
    font-size: 0.9rem;
}

/* ---------- Contenu ---------- */
.entry-title {
    font-size: 2rem;
    margin: 0 0 16px;
}

.entry-content {
    font-size: 1.05rem;
}

.entry-content > * + * {
    margin-top: 1.2em;
}

/* ---------- Bouton utilitaire ---------- */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0066cc;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}

.btn:hover {
    background: #0052a3;
    text-decoration: none;
}
