/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* En-tête */
header {
    background-color: #2c5282;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Bannière hero */
.hero {
    background: linear-gradient(135deg, #2c5282 0%, #4a7ba7 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero h2 {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.95;
}

/* Contenu principal */
main {
    background: white;
    padding: 2rem 20px 3rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Citation biblique */
.bible-quote {
    text-align: center;
    margin: 2rem 0 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-left: 4px solid #2c5282;
    border-radius: 4px;
}

.bible-quote blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: #2c5282;
    margin-bottom: 0.5rem;
}

.bible-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: #666;
}

/* Section bienvenue */
.welcome {
    margin: 2rem 0;
    line-height: 1.8;
}

.welcome h3 {
    color: #2c5282;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.welcome p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Boîtes d'information */
.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 3px solid #2c5282;
}

.info-box h3 {
    color: #2c5282;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-box p {
    margin-bottom: 0.8rem;
}

.info-box a {
    color: #2c5282;
    text-decoration: none;
    font-weight: 500;
}

.info-box a:hover {
    text-decoration: underline;
}

/* Section contact */
.contact-section {
    margin: 3rem 0 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-section h3 {
    color: #2c5282;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-info a {
    color: #2c5282;
    font-weight: 500;
}

/* Pied de page */
footer {
    background-color: #2c5282;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

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

footer p {
    margin: 0.5rem 0;
}

.copyright {
    margin-top: 1rem;
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Pages simples */
.simple-page {
    background: white;
    padding: 3rem 20px;
    margin: 2rem auto;
    max-width: 1200px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.simple-page h1 {
    color: #2c5282;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.simple-page h2 {
    color: #2c5282;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.simple-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.simple-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.simple-page li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .bible-quote blockquote {
        font-size: 1.1rem;
    }
    
    .info-boxes {
        grid-template-columns: 1fr;
    }
}
