/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Style général */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.header {
    background-color: #8B0000; /* Rouge foncé */
    color: #fff;
    padding: 10px 20px;
    border-bottom: 4px solid #003366; /* Bleu foncé */
}

.header-container {
    display: flex;
    align-items: Left; /* Aligne tous les éléments verticalement */
    /*justify-content: space-between; /* Espace entre les blocs */
}

/* Logo à gauche */
.logo-container {
    flex: 0 0 auto; /* Empêche le conteneur de s'étendre */
    margin-right: 20px; /* Espace entre le logo et le titre */
}

.logo {
    height: 60px; /* Ajustez selon votre logo */
    width: auto;
}

/* Titre au centre */
.header-title {
    flex: 1; /* Prend l'espace central */
    text-align: Left;
    font-size: 24px;
    font-weight: 700;
    margin: 0; /* Supprime les marges par défaut */
}

/* Navigation à droite */
.navbar {
    display: flex;
    gap: 15px; /* Espace entre les liens */
}

.navbar a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #FFD700; /* Couleur dorée au survol */
}


/* Hero Section 
.hero {
    background: url('RECAP.PNG') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}*/
.hero {
    background: url('arriere plan.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    margin-top: 0px; /* Ajustez cette valeur selon vos besoins */
	margin-bottom: 0px; /* Ajustez cette valeur selon vos besoins */
}

.hero h2 {
    font-size: 2.5rem;
}

.hero p {
    margin: 20px 0;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    background: #f44336;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background: #c62828;
}

/* About Section */
.about {
    padding: 50px 20px;
    background: #f4f4f4;
    text-align: center;
}

/* Services Section */
.services {
    padding: 50px 20px;
}

.service-cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 20px;
}

.card {
    background: #1e88e5;
    color: #fff;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    margin: 10px;
    text-align: center;
}

.card h3 {
    margin-bottom: 10px;
}

.contact-us {
    background-color: #f5f5f5;
    padding: 60px 20px;
    text-align: center;
    color: #333;
}

.contact-us .container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-us h2 {
    font-size: 2.5em;
    color: #8B0000; /* Rouge foncé */
    margin-bottom: 20px;
}

.contact-us p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.1em;
    margin: 10px 0;
}

.contact-info a {
    color: #8B0000;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-media {
    margin-top: 20px;
}

.social-media p {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.social-link {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social-link img {
    width: 40px;
    height: 40px;
}

.social-link:hover {
    transform: scale(1.2);
}


/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}
