* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Polices personnalisées */
.great-vibes {
    font-family: 'Great Vibes', cursive;
    color: #c8a040;
}

.scriptina {
    font-family: 'Great Vibes', cursive;
    color: #c8a040;
    font-style: italic;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    height: 60px;
}

nav .logo img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

nav ul li a:hover {
    color: #c8a040;
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: -100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        text-align: center;
        transition: left 0.3s ease;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        padding: 15px 0;
    }

    .menu-toggle {
        display: block;
    }
}

/* Section d'accueil (Hero) */
header.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #1c1c1c, #333);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 55px;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeIn 1.5s ease-in-out forwards;
	    margin: 0 auto 30px; /* Espace en dessous du sous-titre */

}
/* Style général du bouton */
.btn-primary {
    background-color: #c8a040;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(200, 160, 64, 0.3);
    animation: fadeIn 2s ease-in-out forwards;
    margin-top: 20px;
    white-space: nowrap; /* Empêche le texte du bouton de se couper */
    display: inline-block;
    text-align: center; /* Centre le texte */
    overflow: hidden; /* Empêche le texte de sortir */
}

/* Style au survol du bouton */
.btn-primary:hover {
    background-color: #fff;
    color: #333;
    box-shadow: 0 15px 40px rgba(200, 160, 64, 0.5);
}

/* Ajustements pour petits écrans (responsive) */
@media (max-width: 768px) {
    .btn-primary {
        width: 90%; /* Le bouton prend 90% de la largeur de l'écran */
        padding: 12px 0; /* Ajuste les marges internes pour qu'il reste centré */
        text-align: center; /* Assure que le texte reste centré */
        font-size: 16px; /* Diminue légèrement la taille du texte */
        white-space: normal; /* Permet au texte de revenir à la ligne si nécessaire */
    }
}


/* Shapes in Hero Section */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: moveShape 10s infinite alternate;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-duration: 12s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 70%;
    animation-duration: 8s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 75%;
    left: 30%;
    animation-duration: 14s;
}

@keyframes moveShape {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, -100px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Promo Banner */
.promo-banner {
    background-color: rgba(200, 160, 64, 0.8);
    color: #fff;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 20px;
    font-weight: bold;
    animation: fadeIn 2.5s ease-in-out;
}

/* À propos de nous */
#about {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1c1c1c, #444);
    color: #fff;
    text-align: center;
}

#about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#about p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    margin-bottom: 40px;
}

#about .btn-primary {
    background-color: #c8a040;
    padding: 10px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

#about .btn-primary:hover {
    background-color: #fff;
    color: #333;
}

/* Team Section */
.team {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
}

.team-member {
    text-align: center;
}

.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

.team-member h4 {
    color: #c8a040;
    margin-bottom: 10px;
}

.team-member p {
    font-size: 14px;
    color: #fff;
}

/* Services Section */
#services {
    padding: 80px 20px;
    background-color: #f1f1f1;
}

#services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 40px;
    color: #c8a040;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-btn {
    background-color: #c8a040;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.service-btn:hover {
    background-color: #fff;
    color: #333;
    box-shadow: 0 10px 25px rgba(200, 160, 64, 0.3);
}

/* Service Pack */
.service-pack {
    text-align: center;
    background-color: #f1f1f1;
    padding: 20px;
    margin-top: 50px;
    border-radius: 10px;
}

.service-pack h3 {
    color: #c8a040;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Offres Spéciales */
#special-offers {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

#special-offers h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.offer-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Pourquoi nous choisir */
#why-choose-us {
    padding: 80px 20px;
    background-color: #1c1c1c;
    color: #fff;
}

#why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.why-item {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Témoignages */
#testimonials {
    padding: 80px 20px;
    background-color: #fff;
}

#testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testimonial {
    background-color: #f1f1f1;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
#contact {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

#contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 36px;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

form label {
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}

form button {
    background-color: #c8a040;
    color: #333;
    padding: 10px 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #333;
    color: #c8a040;
}

/* Contact Details */
.contact-details {
    text-align: center;
    margin-top: 30px;
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-details i {
    color: #c8a040;
    margin-right: 10px;
}

/* Footer */
footer {
    padding: 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
}

footer p {
    font-size: 14px;
}
/* Services Section */
#services {
    padding: 80px 20px;
    background-color: #f1f1f1;
    text-align: center;
}

#services h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.services-category {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-group {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    width: calc(33.333% - 20px);
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-group h3 {
    font-size: 22px;
    color: #c8a040;
    margin-bottom: 15px;
}

.service-group ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-group ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

.service-group a.service-btn {
    background-color: #c8a040;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-group a.service-btn:hover {
    background-color: #fff;
    color: #333;
    box-shadow: 0 10px 25px rgba(200, 160, 64, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .service-group {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .service-group {
        width: 100%;
        margin-bottom: 30px;
    }
}
.rating {
    color: #c8a040;
    margin-top: 10px;
}

.rating i {
    margin-right: 5px;
}
.whytitle {
    color: #c8a040;
}#contact p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 20px;
}



/* Section Personal Shopper */
#details-personal-shopper {
    padding: 100px 20px;
    background-color: #fdfdfd;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

#details-personal-shopper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#details-personal-shopper h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: #c8a040;
    margin-bottom: 30px;
}

#details-personal-shopper p.intro-text {
    font-size: 20px;
    color: #333;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

#details-personal-shopper p.additional-text {
    font-size: 18px;
    color: #666;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

/* Personal Shopper Features */
.personal-shopper-features {
    text-align: left;
    max-width: 900px;
    margin: 50px auto;
}

.personal-shopper-features h3 {
    font-size: 32px;
    color: #c8a040;
    margin-bottom: 20px;
}

.personal-shopper-features ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.personal-shopper-features ul li {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.personal-shopper-features ul li:before {
    content: "\f111";
    font-family: 'FontAwesome';
    color: #c8a040;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Colorimetry Section */
.colorimetry-section {
    text-align: left;
    max-width: 900px;
    margin: 50px auto;
}

.colorimetry-section h3 {
    font-size: 32px;
    color: #c8a040;
    margin-bottom: 20px;
}

.colorimetry-section ul.colorimetry-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.colorimetry-section ul.colorimetry-list li {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.colorimetry-section ul.colorimetry-list li:before {
    content: "\f111";
    font-family: 'FontAwesome';
    color: #c8a040;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 8px;
}

/* Bouton */
#details-personal-shopper .btn-primary {
    background-color: #c8a040;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(200, 160, 64, 0.3);
    margin-top: 50px;
}

#details-personal-shopper .btn-primary:hover {
    background-color: #fff;
    color: #333;
    box-shadow: 0 15px 40px rgba(200, 160, 64, 0.5);
}





/* Section Makeover et Relooking */
#makeover-relooking {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

#makeover-relooking .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: #fdfdfd;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#makeover-relooking h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: #c8a040;
    margin-bottom: 30px;
}

#makeover-relooking p.intro-text {
    font-size: 20px;
    color: #333;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* Grid pour les sections */
.grid-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.consulting-section {
    flex: 1 1 calc(50% - 20px); /* Deux sections côte à côte avec espace */
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consulting-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Images des sections */
.section-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.section-image:hover {
    transform: scale(1.05);
}

/* Bouton principal */
.btn-primary {
    margin-top: 20px; /* Ajoute un espace suffisant entre le texte et le bouton */
}

/* Animation de bounce */
.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

/* Responsive pour Makeover et Relooking */
@media (max-width: 768px) {
    .consulting-section {
        flex: 1 1 100%; /* Sections pleine largeur sur mobile */
        margin-bottom: 30px;
    }
}

/* Contenu de la section héro */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px !important; /* Force un grand espacement autour du contenu */
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    margin-bottom: 40px !important; /* Espace plus important sous le titre */
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 50px !important; /* Augmente l'espace entre le sous-titre et le bouton */
}

.btn-primary {
    background-color: #c8a040;
    color: #fff;
    padding: 15px 40px !important; /* Taille plus importante pour le bouton */
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-bottom: 50px !important; /* Grand espace entre le bouton et le texte en dessous */
}

.promo-banner {
    background-color: rgba(200, 160, 64, 0.8);
    color: #fff;
    padding: 20px 40px !important; /* Augmente la taille de la bannière */
    border-radius: 10px;
    margin-top: 50px !important; /* Ajoute un grand espace entre le bouton et la bannière promo */
    font-weight: bold;
    font-size: 18px; /* Rendre le texte de la bannière plus visible */
}




/* Section Personal Shopper */
#personal-shopper {
    padding: 100px 20px;
    background-color: #fafafa;
    text-align: center;
    position: relative;
}

#personal-shopper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

#personal-shopper h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: #c8a040;
    margin-bottom: 30px;
}

#personal-shopper p.intro-text {
    font-size: 20px;
    color: #555;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
    font-weight: 400;
}

/* Grid layout */
.grid-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.consulting-section {
    flex: 1 1 calc(48% - 20px); /* Alignement côte à côte, avec espace entre les sections */
    background-color: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.consulting-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.consulting-section h3 {
    font-size: 26px;
    color: #c8a040;
    margin-top: 15px;
}

.consulting-section p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* Effet d'image */
.section-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 15px;
    transition: transform 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-image:hover {
    transform: scale(1.05);
}

/* Effet de texte sur image */
.consulting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    z-index: 1;
    transition: all 0.3s ease;
}

.consulting-section:hover::before {
    background: rgba(0, 0, 0, 0.15);
}

/* Bouton d'appel à l'action */
.cta-container {
    text-align: center;
    margin-top: 40px;
}

.cta-container a {
    background-color: #c8a040;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(200, 160, 64, 0.3);
}

.cta-container a:hover {
    background-color: #fff;
    color: #333;
    box-shadow: 0 15px 40px rgba(200, 160, 64, 0.5);
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    .consulting-section {
        flex: 1 1 100%; /* Sections en pleine largeur sur mobile */
        margin-bottom: 30px;
    }

    .section-image {
        max-width: 100%; /* Adaptation de la taille des images sur mobile */
    }
}
.why-background {
    background-image: url('images/A_luxurious_and_chic_Parisian_setting_featuring_.webp');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    color: #fff;
}

.why-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.why-item {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    margin: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 768px) {
    #details-personal-shopper h2 {
        font-size: 32px;
    }

    #details-personal-shopper p.intro-text,
    #details-personal-shopper p.additional-text,
    .personal-shopper-features ul,
    .colorimetry-section ul {
        max-width: 100%;
    }

    .personal-shopper-features ul li,
    .colorimetry-section ul li {
        font-size: 16px;
    }

    #details-personal-shopper .btn-primary {
        padding: 12px 30px;
    }
}


/* Section Makeover et Relooking */
#details-makeover-relooking {
    padding: 100px 20px;
    background-color: #fafafa;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

#details-makeover-relooking .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#details-makeover-relooking h2 {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: #c8a040;
    margin-bottom: 30px;
}

#details-makeover-relooking p.intro-text {
    font-size: 20px;
    color: #333;
    max-width: 900px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

#details-makeover-relooking .services-section,
#details-makeover-relooking .makeover-hairstyle-section,
#details-makeover-relooking .special-wedding-section {
    text-align: left;
    max-width: 900px;
    margin: 50px auto;
}

#details-makeover-relooking h3 {
    font-size: 32px;
    color: #c8a040;
    margin-bottom: 20px;
}

#details-makeover-relooking ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#details-makeover-relooking ul li {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

#details-makeover-relooking ul li:before {
    content: "\f111";
    font-family: 'FontAwesome';
    color: #c8a040;
    font-size: 10px;
    position: absolute;
    left: 0;
    top: 8px;
}

#details-makeover-relooking p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Bouton */
#details-makeover-relooking .btn-primary {
    background-color: #c8a040;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(200, 160, 64, 0.3);
    margin-top: 50px;
}

#details-makeover-relooking .btn-primary:hover {
    background-color: #fff;
    color: #333;
    box-shadow: 0 15px 40px rgba(200, 160, 64, 0.5);
}

/* Responsive Styles */
@media (max-width: 768px) {
    #details-makeover-relooking h2 {
        font-size: 32px;
    }

    #details-makeover-relooking p.intro-text,
    #details-makeover-relooking ul,
    #details-makeover-relooking .special-wedding-section p {
        max-width: 100%;
    }

    #details-makeover-relooking ul li {
        font-size: 16px;
    }

    #details-makeover-relooking .btn-primary {
        padding: 12px 30px;
    }
}






/* Style de base */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

nav .logo img {
    height: 50px;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #c8a040;
}

/* Section Héros */
.hero-section {
    position: relative;
    height: 80vh;
    background: url('hero-image.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-family: 'Great Vibes', cursive;
    font-size: 64px;
    color: #fff;
    margin-bottom: 15px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.6;
    color: #f5f5f5;
    max-width: 700px;
    margin: 0 auto;
}

/* Section de Conseil en Image */
#image-consulting {
    padding: 100px 20px;
    background-color: #fff;
    text-align: center;
}

#image-consulting .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background: #fdfdfd;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#image-consulting h2,
.consulting-section h3 {
    font-family: 'Great Vibes', cursive;
    font-size: 48px;
    color: #c8a040;
}

.consulting-section {
    margin-top: 50px;
}

.consulting-section p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Images */
.section-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.section-image:hover {
    transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.animate-fade-in {
    animation: fadeIn 2s ease-in-out forwards;
}

.animate-slide-up {
    animation: slideUp 2s ease-in-out forwards;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Bouton principal */
.btn-primary {
    background-color: #c8a040;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(200, 160, 64, 0.3);
}

.btn-primary:hover {
    background-color: #fff;
    color: #333;
    box-shadow: 0 15px 40px rgba(200, 160, 64, 0.5);
}

/* Footer */
footer {
    padding: 20px;
    background-color: #333;
    color: #fff;
    text-align: center;
}
/* Style de la section en grille */
.grid-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.consulting-section {
    width: 48%; /* 2 sections côte à côte avec un petit espace entre elles */
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
}

.section-image {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-container {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .consulting-section {
        width: 100%; /* Les sections deviennent pleine largeur sur mobile */
        margin-bottom: 30px;
    }
}



/* Navigation */
nav {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 10;
    top: 0;
    height: 60px; /* Ajout d'une hauteur fixe pour la barre de navigation */
}

/* Section de réservation */
.booking-page {
    padding: 120px 20px;  /* Padding pour compenser la navigation fixe */
    text-align: center;
    min-height: 100vh;
}

/* Autres styles inchangés... */
/* Style pour l'élément de menu actif */
#menu li a.active {
    color: #caa040; /* Changez la couleur ou ajoutez d'autres styles */
    font-weight: bold;
}
/* Section générale */
.elegant-services {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.elegant-services h2 {
    font-size: 3em;
    margin-bottom: 40px;
    color: #333;
}

/* Conteneur de services */
.services-category {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.service-group {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    margin: 20px;
    transition: transform 0.3s ease;
}

.service-group:hover {
    transform: translateY(-10px);
}

/* Icônes */
.service-icon {
    font-size: 3em;
    color: #c8a040;
    margin-bottom: 10px;
}

.service-group h3 {
    font-size: 1.8em;
    color: #444;
    margin-bottom: 10px;
}

.service-group p {
    font-size: 1em;
    color: #777;
    margin-bottom: 20px;
}

.service-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    margin-bottom: 20px;
}

.service-list li {
    font-size: 1em;
    margin-bottom: 10px;
    color: #555;
}

/* Bouton */
.service-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #c8a040;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background-color: #e67e22;
}

/* Animation */
.animate-fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
