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

body {
    font-family: 'Georgia', serif;
    color: #333;
    line-height: 1.6;
}

/* Section Hero */
.hero {
    position: relative;
    height: 500px;
    background: url('hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 40px;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-size: 3rem;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 10px;
}

.hero-title .subtitle {
    font-size: 2.5rem;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 300;
}

/* Section Présentation */
.presentation {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.presentation h2 {
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #2c2c2c;
    position: relative;
}

.presentation h2::before,
.presentation h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 150px;
    height: 1px;
    background: #d4af37;
}

.presentation h2::before {
    left: -170px;
}

.presentation h2::after {
    right: -170px;
}

.presentation p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Section Formules */
.formules {
    background: #faf8f3;
    padding: 60px 20px;
}

.formules h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 50px;
    color: #2c2c2c;
    position: relative;
}

.formules h2::before,
.formules h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 1px;
    background: #d4af37;
}

.formules h2::before {
    left: calc(50% - 350px);
}

.formules h2::after {
    right: calc(50% - 350px);
}

.formules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.formule-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

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

.formule-image {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

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

.formule-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: #2c2c2c;
}

.formule-card .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #c41e3a;
}

.formule-card .description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Section Services */
.services {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    text-align: center;
}

.service-image {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
}

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

.service-item h3 {
    font-size: 2rem;
    font-weight: 400;
    color: #2c2c2c;
    position: relative;
}

.service-item h3::before,
.service-item h3::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: #d4af37;
}

.service-item h3::before {
    left: -100px;
}

.service-item h3::after {
    right: -100px;
}

/* Section Contact */
.contact {
    background: #222;
    color: #fff;
    padding: 70px 20px;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 60px;
    color: #d4af37;
    position: relative;
}

/* Lignes décoratives dorées autour du titre */
.contact h2::before,
.contact h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 150px;
    height: 1px;
    background: #d4af37;
}

.contact h2::before { left: calc(50% - 250px); }
.contact h2::after { right: calc(50% - 250px); }

.contact-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 50px;
    align-items: center;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Style spécifique pour votre logo rond */
.contact-logo img {
    max-height: 150px;
    border-radius: 50%; /* Transforme l'image carrée en cercle */
    border: 3px solid #d4af37; /* Bordure dorée */
    margin-bottom: 30px;
    background: white;
    padding: 5px; /* Petit espace blanc entre le logo et la bordure dorée */
}

.info-block {
    margin-bottom: 25px;
}

.info-block i {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-info address {
    font-style: normal;
    font-size: 1.2rem;
    line-height: 1.5;
}

.contact-info .phone {
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
}

.socials {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    text-decoration: none;
    border: 1px solid #d4af37;
    padding: 10px 25px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: bold;
}

.social-link:hover {
    background: #d4af37;
    color: #222;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    border: 4px solid #d4af37;
    border-radius: 4px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background: #111;
    color: #666;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    border-top: 1px solid #333;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .contact h2::before, .contact h2::after {
        display: none;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-map {
        width: 100%;
        height: 300px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-title .subtitle {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .presentation h2::before,
    .presentation h2::after {
        width: 50px;
    }

    .presentation h2::before {
        left: -70px;
    }

    .presentation h2::after {
        right: -70px;
    }

    .formules h2::before,
    .formules h2::after {
        width: 50px;
    }

    .formules h2::before {
        left: 20px;
    }

    .formules h2::after {
        right: 20px;
    }

    .service-item h3::before,
    .service-item h3::after {
        display: none;
    }
}