/* Général */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333333;
    padding-top: 80px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* En-tête */
.header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin-top: 40px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.logo {
    max-height: 80px;
    border-radius: 50%;
    border: 3px solid #ffcc00;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: scale(1.4);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.header h1 {
    font-size: 2.5em;
    margin: 0;
    color: #ffcc00;
}

/* Barre de navigation */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(44, 62, 80, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar ul {
    display: flex;
    justify-content: center;
    padding: 15px 0;
    margin: 0;
    list-style: none;
}

.navbar ul li {
    margin: 0 20px;
    position: relative;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.navbar ul li a:hover {
    color: #ffcc00;
    transform: translateY(-3px);
}

.navbar ul li::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffcc00;
    transition: width 0.3s ease;
}

.navbar ul li:hover::after {
    width: 100%;
}

/* Sections */
.section {
    padding: 80px 0;
    background-color: #ffffff;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.image-section {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #ffcc00;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Section Présentation */
#presentation {
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

#presentation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#presentation .container {
    position: relative;
    z-index: 2;
}

#presentation h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #ffcc00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#presentation p {
    font-size: 1.2em;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(44, 62, 80, 0.8);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Section Notre équipe */
#equipe {
    background-color: #ffffff;
    padding: 80px 0;
}

#equipe h2 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.equipe-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.equipe-content .image-section {
    max-width: 50%;
    height: auto;
    border-radius: 15px;
    border: 3px solid #ffcc00;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.equipe-content .image-section:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.equipe-content p {
    flex: 1;
    font-size: 1.2em;
    line-height: 1.8;
    color: #333333;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Services */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
}

.service-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.service-item h3 {
    font-size: 1.5em;
    margin: 15px 0 10px;
    color: #2c3e50;
}

.service-item p {
    font-size: 1em;
    color: #666;
}

/* Section Vidéos */
#videos {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.videos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-item {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.video-item video {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.video-item p {
    font-size: 1.1em;
    color: #2c3e50;
    margin: 0;
}

/* Section Politique */
#politique {
    background-color: #ffffff;
    padding: 80px 0;
}

#politique h2 {
    font-size: 3em;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

#politique p {
    font-size: 1.2em;
    line }