/* Variables de couleur */
:root {
    --primary-color: #e61610; /* Rouge */
    --secondary-color: #0b4fa2; /* Bleu */
    --light-color: #f4f4f4;
    --dark-color: #333;
    --max-width: 1200px;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

a {
    text-decoration: none;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    transition: opacity 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    opacity: 0.8;
}

.btn-alt {
    background: var(--secondary-color);
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.5rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem 0 0;
    background: #fff;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 2rem;
    background: #fff;
    flex: 0 0 auto;
}

.logo a {
    display: block;
    background: #fff;
}

.logo img {
    max-height: 160px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 0 transparent);
    background: #fff;
    margin-left: -20px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    font-weight: 600;
    padding-bottom: 0.5rem;
    transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .line {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 5px 0;
}

/* Section Hero */
.hero {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero .btn {
    background: #fff;
    color: var(--primary-color);
}

/* Section About */
.about {
    padding: 4rem 2rem;
    text-align: center;
}

.about h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto 1rem auto;
    font-size: 1.1rem;
}

/* Services Preview */
.services-preview {
    background: #f9f9f9;
    padding: 4rem 2rem;
    text-align: center;
}

.services-preview h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* Section Promo */
.promo {
    background: #1a1a1a;
    padding: 3rem 2rem;
    margin: 0;
    color: #fff;
}

.promo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.promo-image {
    margin-bottom: 1.5rem;
    max-width: 100%;
}

.promo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.promo-text {
    margin-bottom: 1rem;
}

.promo-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.promo-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #ccc;
}

.promo-text .btn {
    margin-top: 0.5rem;
    background: var(--primary-color);
    color: #fff;
}

.promo-text .btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .promo {
        padding: 2rem 1rem;
    }
    
    .promo-text h2 {
        font-size: 1.5rem;
    }
    
    .promo-text p {
        font-size: 1rem;
    }
}

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

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Gallery Preview */
.gallery-preview {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}

.gallery-preview h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Info */
.contact-info {
    padding: 4rem 2rem;
    text-align: center;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 5px;
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.contact-item a {
    color: var(--primary-color);
    font-weight: bold;
}

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

/* Page Header */
.page-header {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #fff;
    text-align: center;
    padding: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
}

/* Services Page */
.services {
    padding: 4rem 2rem;
}

.service-item {
    display: flex;
    margin-bottom: 4rem;
    align-items: center;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-icon {
    flex: 1;
    text-align: center;
}

.service-icon i {
    font-size: 8rem;
    color: var(--primary-color);
}

.service-content {
    flex: 2;
    padding: 0 2rem;
}

.service-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.service-content ul li {
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    color: #fff;
    text-align: center;
    padding: 4rem 2rem;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta .btn {
    background: #fff;
    color: var(--primary-color);
}

.cta .btn-alt {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* Gallery Page */
.gallery {
    padding: 4rem 2rem;
}

.gallery-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.gallery-note {
    text-align: center;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 5px;
    margin-top: 2rem;
}

/* Contact Page */
.contact-info-full {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-info-item {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info-item p {
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
}

.contact-link:hover {
    text-decoration: underline;
}

.hours-list li {
    margin-bottom: 0.5rem;
}

.hours-list li span {
    font-weight: bold;
    color: var(--secondary-color);
}

.map-section {
    padding: 4rem 2rem;
}

.map-section h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    display: block;
}

/* Contact Form */
.contact-form {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.contact-form .container {
    max-width: 800px;
}

.contact-form h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-form > .container > p {
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

.form-success {
    text-align: center;
    background: var(--secondary-color);
    color: #fff;
    padding: 2rem;
    border-radius: 5px;
    margin-top: 2rem;
}

.form-success i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

.footer-info h3, .footer-hours h3, .footer-links h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-info p, .footer-hours p {
    margin-bottom: 0.5rem;
}

.footer-info a, .footer-links a {
    color: #fff;
}

.footer-info a:hover, .footer-links a:hover {
    color: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .logo {
        margin-right: 0;
    }

    .logo img {
        max-height: 140px;
        margin-left: -10px;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        background: #fff;
        width: 100%;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 0;
        padding: 1rem 0;
    }

    nav ul li a {
        display: block;
        padding: 0.5rem 0;
    }

    nav ul li a:hover, nav ul li a.active {
        border-bottom: none;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .service-item, .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-icon {
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta .btn {
        margin-bottom: 1rem;
    }
}

/* Reviews Section */
.reviews {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.reviews h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

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

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-author {
    color: var(--secondary-color);
    font-weight: 600;
}

.reviews-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.google-rating i {
    color: #4285f4;
    font-size: 1.5rem;
}

.google-rating .rating {
    font-weight: 600;
    color: var(--secondary-color);
}

.google-rating .total-reviews {
    color: #666;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews Page */
.reviews-page {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.reviews-header {
    text-align: center;
    margin-bottom: 4rem;
}

.google-rating-large {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.google-rating-large i {
    font-size: 4rem;
    color: #4285f4;
}

.rating-info {
    text-align: left;
}

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-number span {
    font-size: 1.5rem;
    color: #666;
}

.rating-info .stars {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.rating-info .total-reviews {
    color: #666;
    font-size: 1.1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.review-info h3 {
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.reviews-footer {
    text-align: center;
}

.reviews-footer p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #666;
}

@media (max-width: 768px) {
    .google-rating-large {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .rating-info {
        text-align: center;
    }

    .reviews-grid.large {
        grid-template-columns: 1fr;
    }
}

/* Thank You Page */
.thank-you {
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thank-you-content i {
    font-size: 5rem;
    color: #4BB543;
    margin-bottom: 1.5rem;
}

.thank-you-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.thank-you-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.thank-you-contact {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.thank-you-contact p {
    margin: 0;
}

.thank-you-contact i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 0.5rem;
    margin-bottom: 0;
}

.thank-you-content .btn {
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .thank-you-contact {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.contact-email {
    font-size: 1rem;
    text-align: center;
    word-break: break-all;
    line-height: 1.2;
    margin: 0 auto;
    width: 100%;
    display: block;
}

.contact-email a {
    word-break: break-all;
}

.contact-email a.wbr-mail {
    word-break: break-all;
}

.contact-email a.wbr-mail .wbr {
    display: inline;
}

.contact-email a.wbr-mail .wbr:after {
    content: "\A";
    white-space: pre;
} 
