/* === Legacy static/style.css (fusionné) === */
/* static/css/style.css */
* {
margin: 0;
padding: 0;
	 box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
color: #333;
       background-color: #fff;
}

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

/* Header */
.header {
	background-color: #f8f9fa;
padding: 20px 0;
	 border-bottom: 3px solid #e74c3c;
}

.logo h1 {
	font-size: 3rem;
	font-weight: bold;
color: #2c3e50;
       margin-bottom: 5px;
}

.tagline {
	font-size: 0.9rem;
color: #7f8c8d;
       font-weight: normal;
}

/* Hero Section */
.hero {
padding: 40px 0;
	 background-color: #f8f9fa;
}

.hero-images {
display: grid;
	 grid-template-columns: repeat(5, 1fr);
gap: 15px;
     margin-bottom: 30px;
}

.hero-images img {
width: 100%;
height: 120px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
padding: 60px 0;
	 background-color: #fff;
}

.services h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 50px;
color: #2c3e50;
       font-weight: bold;
}

.services-grid {
display: grid;
	 grid-template-columns: repeat(3, 1fr);
gap: 40px;
     margin-bottom: 40px;
}

.service-item {
	text-align: center;
padding: 20px;
}

.service-item img {
width: 100%;
height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-item h3 {
	font-size: 1.4rem;
	margin-bottom: 15px;
color: #2c3e50;
       font-weight: bold;
}

.service-item p {
	font-size: 1rem;
color: #555;
       line-height: 1.5;
}

.cta {
	text-align: center;
	margin-top: 40px;
}

.cta h3 {
	font-size: 1.8rem;
color: #e74c3c;
       font-weight: bold;
}

/* Expertise Section */
.expertise {
padding: 60px 0;
	 background-color: #f8f9fa;
}

.expertise h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 50px;
color: #2c3e50;
       font-weight: bold;
}

.expertise-item {
display: grid;
	 grid-template-columns: 2fr 1fr;
gap: 40px;
     margin-bottom: 50px;
     align-items: center;
}

.expertise-item:nth-child(even) {
	grid-template-columns: 1fr 2fr;
}

.expertise-item:nth-child(even) .expertise-content {
	order: 2;
}

.expertise-item:nth-child(even) .expertise-image {
	order: 1;
}

.expertise-content h3 {
	font-size: 1.6rem;
	margin-bottom: 20px;
color: #2c3e50;
       font-weight: bold;
}

.expertise-content p {
	font-size: 1rem;
color: #555;
       line-height: 1.6;
}

.expertise-image img {
width: 100%;
height: 250px;
	object-fit: cover;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Services Offered */
.services-offered {
padding: 60px 0;
	 background-color: #fff;
}

.services-offered h2 {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 50px;
color: #2c3e50;
       font-weight: bold;
}

.services-offered-grid {
display: grid;
	 grid-template-columns: repeat(3, 1fr);
gap: 40px;
}

.service-offered-item {
	text-align: center;
padding: 20px;
}

.service-offered-item img {
width: 100%;
height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 20px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-offered-item h3 {
	font-size: 1.4rem;
	margin-bottom: 15px;
color: #2c3e50;
       font-weight: bold;
}

.service-offered-item p {
	font-size: 1rem;
color: #555;
       line-height: 1.5;
}

/* Contact Section */
.contact {
padding: 60px 0;
	 background-color: #2c3e50;
color: #fff;
       text-align: center;
}

.contact h2 {
	font-size: 2rem;
	margin-bottom: 30px;
	font-weight: bold;
}

.contact h3 {
	font-size: 1.4rem;
	margin-bottom: 20px;
	font-weight: normal;
}

.social-links {
	margin-bottom: 40px;
}

.social-links a {
color: #fff;
       text-decoration: none;
margin: 0 20px;
	font-size: 1.1rem;
padding: 10px 20px;
border: 2px solid #fff;
	border-radius: 25px;
transition: all 0.3s ease;
display: inline-block;
}

.social-links a:hover {
	background-color: #fff;
color: #2c3e50;
}

.contact-info a {
color: #e74c3c;
       text-decoration: none;
       font-size: 1.2rem;
       font-weight: bold;
}

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

/* Responsive Design */
@media (max-width: 768px) {
	.hero-images {
		grid-template-columns: repeat(2, 1fr);
gap: 10px;
	}

	.services-grid,
		.services-offered-grid {
			grid-template-columns: 1fr;
gap: 30px;
		}

	.expertise-item,
		.expertise-item:nth-child(even) {
			grid-template-columns: 1fr;
			text-align: center;
		}

	.expertise-item:nth-child(even) .expertise-content,
		.expertise-item:nth-child(even) .expertise-image {
order: unset;
		}

	.logo h1 {
		font-size: 2rem;
	}

	.services h2,
		.expertise h2,
		.services-offered h2 {
			font-size: 1.8rem;
		}

	.social-links a {
display: block;
margin: 10px auto;
width: 200px;
	}
}

@media (max-width: 480px) {
	.hero-images {
		grid-template-columns: 1fr;
	}

	.container {
padding: 0 15px;
	}

	.logo h1 {
		font-size: 1.8rem;
	}

	.tagline {
		font-size: 0.8rem;
	}
}

/* === Fin legacy static/style.css === */

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header */
.header {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 2rem 0;
    border-bottom: 3px solid #2c5f2d;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    text-align: center;
    flex-grow: 1;
}

.main-logo {
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.tagline p {
    font-size: 1.1rem;
    color: #000;
    font-weight: 400;
    margin: 0.2rem 0;
}

.small-logo {
    width: 80px;
    height: 80px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Contact box in header */
.contact-box {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-end;
    margin-left: 1rem;
}

.contact-link {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

.contact-link:hover {
    color: #2c5f2d;
}

.contact-link.rdv {
    color: #2c5f2d;
    text-decoration: none;
    background: #e6f3e6;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.contact-link.rdv:hover {
    background: #d3ead3;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Titles */
.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin: 3rem 0 2rem 0;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    margin: 3rem 0;
}

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

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-content p {
    color: #666;
    line-height: 1.6;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4a1f 100%);
    color: #fff;
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 2rem 0;
}

.cta-banner h2 {
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Me Section */
.why-me-section {
    background: linear-gradient(135deg, #f8f4f0 0%, #e8e0d8 100%);
    padding: 3rem 0;
    margin: 3rem -2rem;
}

.why-me-section .section-title {
    margin-top: 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.expertise-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.expertise-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 1.5rem auto 1rem;
    border: 4px solid #2c5f2d;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expertise-content {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
}

.expertise-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.expertise-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Proposed Services Section */
.proposed-services-section {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4e8d4 100%);
    padding: 3rem 0;
    margin: 3rem -2rem;
}

.proposed-services-section .section-title {
    margin-top: 0;
}

.services-proposed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-proposed-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-proposed-card:hover {
    transform: translateY(-5px);
}

.service-proposed-image {
    height: 180px;
    overflow: hidden;
}

.service-proposed-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-proposed-card:hover .service-proposed-image img {
    transform: scale(1.05);
}

.service-proposed-content {
    padding: 1.5rem;
    text-align: center;
}

.service-proposed-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-proposed-content p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4a1f 100%);
    color: #fff;
    padding: 3rem 0 2rem;
    margin-top: 3rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.footer-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #a8d5a8;
}

.email-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #a8d5a8;
}

.footer-logo {
    position: absolute;
    bottom: 0;
    left: 2rem;
    width: 60px;
    height: 60px;
}

.footer-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    .contact-box {
        align-items: center;
        margin-top: 1rem;
    }
    
    .main-logo {
        font-size: 2.5rem;
    }
    
    .small-logo {
        margin-top: 1rem;
    }
    
    .services-grid,
    .expertise-grid,
    .services-proposed-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        position: static;
        margin: 2rem auto 0;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0 1rem;
    }
    
    .why-me-section,
    .proposed-services-section {
        margin: 3rem -1rem;
    }
    
    .expertise-grid,
    .services-proposed-grid {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .main-logo {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.expertise-card,
.service-proposed-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid #2c5f2d;
    outline-offset: 2px;
}


/* Quick contact floating box (moved from index.html) */
.quick-contact {
    position: fixed;
    top: 12px;
    right: 12px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 8px 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 12px;
    align-items: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.quick-contact a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.quick-contact a:hover,
.quick-contact a:focus {
    background-color: rgba(0, 0, 0, 0.06);
    outline: none;
}

@media (max-width: 640px) {
    .quick-contact {
        left: 12px;
        right: 12px;
        top: auto;
        bottom: 12px;
        justify-content: space-between;
    }
    .quick-contact a {
        font-size: 0.9rem;
        padding: 8px 10px;
        flex: 1 1 auto;
        justify-content: center;
    }
}

/* Social icons sizing and centering (moved from index.html) */
.social-links {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    padding: 0;
    text-decoration: none;
}

.social-links a svg {
    width: 28px;
    height: 28px;
    display: block;
}

@media (max-width: 640px) {
    .social-links a {
        width: 56px;
        height: 56px;
        border-radius: 10px;
    }
    .social-links a svg {
        width: 30px;
        height: 30px;
    }
}