/* ======================
   STYLES GLOBAUX
   ====================== */
:root {
    --primary-color: #4CAF50;
    --secondary-color: #3e8e41;
    --light-color: #f9f9f9;
    --dark-color: #333;
    --white-color: #fff;
    --text-color: #333;
    --text-light: rgba(255, 255, 255, 0.9);
}

/* ======================
   RESET ET BASE
   ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ======================
   HEADER
   ====================== */
header {
    background-color: var(--white-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
    padding: 15px 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar li {
    margin-left: 20px;
}

.navbar a {
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: var(--primary-color);
}

/* ======================
   HERO
   ====================== */
.hero {
    background: url('/photos/banniere_hero3.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    position: relative;
    padding: 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
    color: var(--white-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    color: var(--white-color);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    max-width: 800px;
    margin: 20px auto;
}

/* ======================
   SECTIONS
   ====================== */
section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ======================
   PARAGRAPH BOX
   ====================== */
.paragraph-box {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

/* ======================
   CTA SPECIFIQUE
   ====================== */
.cta {
    padding: 50px 20px;
}

.cta .paragraph-box {
    background-color: var(--primary-color) !important;
    color: var(--white-color) !important;
}

.cta .paragraph-box h2,
.cta .paragraph-box p {
    color: var(--white-color) !important;
}

/* ======================
   PROGRAM LIST
   ====================== */
.program-list {
    list-style: none;
    padding: 0;
}

.program-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.program-list li:last-child {
    border-bottom: none;
}

.program-list h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ======================
   FOOTER
   ====================== */
footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-section h2,
.footer-section h3 {
    color: var(--white-color);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.footer-text {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white-color);
}

.language-selector {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

.language-selector li a {
    color: var(--text-light);
    padding: 5px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.language-selector li a:hover,
.language-selector li a.active {
    color: var(--white-color);
    background-color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--white-color);
}



/* ======================
   BUTTONS
   ====================== */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--white-color);
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* ======================
   TEXT CENTER
   ====================== */
.text-center {
    text-align: center;
}

