@charset "UTF-8";
/*
Theme Name: Mon Theme Minimal
Theme URI: https://monsite.com
Author: Votre Nom
Author URI: https://monsite.com
Description: Un thème WordPress minimal avec header, footer et homepage
Version: 1.0
License: GPL v2 or later
Text Domain: montheme
*/

/* Reset de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #2c3e50;
    color: white;
    padding: 20px 0;
}

header h1 {
    font-size: 2rem;
    font-weight: 600;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

nav a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Main content */
main {
    min-height: 60vh;
    padding: 40px 0;
}

.home-content h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.home-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.home-content ul {
    margin-left: 20px;
}

.home-content p {
    margin-bottom: 15px;
}

/* Articles */
article {
    margin-bottom: 40px;
}

article h2 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Footer */
footer {
    background: #34495e;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
}

footer a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    header h1 {
        font-size: 1.5rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .container {
        padding: 0 15px;
    }
}