/* Styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.couleur-fond-menu {
    background-color: lightgray;
    color: darkslategrey;
}

body {
    font-family: 'Sorts Mill Goudy', serif;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
}

/* Header */
header {
    background-color: lightgrey;
    color: darkslategrey;
    padding-left: 1rem;
    padding-top: 1rem;
    padding-bottom: 0;
    /* margin-bottom: 2rem; */
    border-radius: 8px;
}

header h1 {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 2.5rem;
    font-weight: 300;
    text-transform : capitalize;
}

header h2 {
    padding-left: 2rem;
}

#logo-lt {
    text-align: left;
    color: lightslategray;
}

nav {
    font-size: larger;
}

.navbar-nav .active > .nav-link {
    color: lightslategray;
    font-weight: bolder;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav :hoover > .nav-link {
    color: darkblue;
    font-weight: bolder;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
/* Main content */
main {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

/* Sections */
section {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

section:last-child {
    margin-bottom: 0;
}

/* Animation subtile */
section:hover {
    transform: translateY(-2px);
}

h2 {
    font-family: 'Sorts Mill Goudy', serif;
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    /* border-bottom: 2px solid #0f1e27; */
    padding-bottom: 0.5rem;
    text-transform: capitalize;
}

h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    text-align: justify;
    font-size: 1.1rem;
}

/* Liens */
a {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

a:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

/* Footer */
footer {
    background-color: #737980;
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
}

/* ------- Page home -------- */

/* Styles spécifiques pour les sections */
#les-avents {
    background-color: #ecf0f1;
    border-left: 4px solid #3498db;
}

#amitie-rencontre {
    background-color: #fdf2e9;
    border-left: 4px solid #e67e22;
}

#nouvelles {
    background-color: #e8f5e8;
    border-left: 4px solid #27ae60;
}

/* ------- Page activites -------- */
.intro {
    background-color: #ecf0f1;
    border-left: 4px solid #3498db;
}

.origins {
    border-left: 4px solid #e74c3c;
}

.evolution {
    border-left: 4px solid #f39c12;
}

.functioning {
    border-left: 4px solid #27ae60;
}

.perspectives {
    border-left: 4px solid #9b59b6;
}

.amitie {
    border-left: 4px solid #95a5a6;
}

h4 {
    color: #2c3e50;
    font-size: 1em;
    margin-top: 15px;
    margin-bottom: 10px;
}

/* ------- Page semaines -------- */
.container-semaines {
    padding: 15px;
}

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

/* Entrées par année */
.year-entry {
    background-color: white;
    margin-bottom: 15px;
    padding: 15px;
    border-left: 4px solid #3498db;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.year-entry strong {
    color: #2c3e50;
    font-size: 1.1em;
}

/* Intervenants */
.speakers {
    font-style: italic;
    color: #7f8c8d;
    margin-left: 20px;
}

/* Entrées détaillées */
.year-entry.detailed {
    background-color: #ecf0f1;
    border-left-color: #e74c3c;
}

.year-entry.detailed h4 {
    color: #e74c3c;
    margin-top: 20px;
}

/* Section mémorial */
.memorial {
    background-color: #f8f9fa;
    border-left: 4px solid #6c757d;
}

.memorial p {
    /* font-style: italic; */
    color: #495057;
}

/* Section organisations */
.organisations ul {
    list-style-type: none;
    margin-left: 0;
}

.organisations li {
    background-color: #f1f3f4;
    margin-bottom: 10px;
    padding-left: 10px;
    font-size: 1.1rem;
    border-left: 3px solid #3498db;
}

/* Section fraternité */
.fraternite {
    background-color: #fdf2e9;
    border-left: 4px solid #e67e22;
}

/* Amélioration de la lisibilité */
.memorial p:first-child {
    font-weight: bold;
    color: #2c3e50;
}

/* Style pour les guillemets */
p:contains('"') {
    position: relative;
}

/* Espacement pour les citations */
blockquote {
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid #3498db;
    font-style: italic;
    color: #666;
}

/* ------- Page contact -------- */

.contact-card {
    background-color: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    margin-right: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #3498db;
}

.contact-card h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}


.content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content p {
    margin-bottom: 1rem;
    text-align: justify;
}