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

/* Corps de la page */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* En-tête */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 20px 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

header .logo img:hover {
    transform: scale(1.1);
}

nav ul {
    list-style: none;
    
    display: flex;
    
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight:500;
    font-size: 0.9em;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 1.2em;
    
}

nav ul li a:hover {
    color: #ff6600;
    transform: translateY(-2px);
}

nav ul li a.active {
    color: #ff6600;
    border-bottom: 2px solid #ff6600;
}
nav ul li:not(:last-child)::after {
    content: "|";
    margin: 12px;
    color: #ccc;}


/* Section Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 150px 20px;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
    animation: slideInDown 1s ease-in-out;
}

.hero-content p {
    font-size: 1.4em;
    margin-bottom: 40px;
    animation: slideInUp 1s ease-in-out;
}

.hero-content .btn {
    background-color: #ff6600;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeIn 2s ease-in-out;
}

.hero-content .btn:hover {
    background-color: #e65c00;
    transform: scale(1.05);
}

/* Section About-Service */
.about-service {
    display: flex;
    padding: 80px 40px;
    text-align: center;
    gap: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    margin: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-service img {
    max-height: 400px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.text-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

.text-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #555;
}

.text-content h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #ff6600;
}

.text-content ul {
    list-style: none;
    padding: 0;
}

.text-content ul li {
    margin: 10px 0;
    font-size: 1.1em;
    color: #555;
}

/* Section Service-Details */
.service-details {
    padding: 80px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.service-details h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #333;
}

.service-details ol {
    text-align: left;
    font-size: 1.2em;
    margin: 0 auto;
    width: 80%;
    color: #555;
}

.service-details li {
    margin: 15px 0;
    padding-left: 10px;
    border-left: 3px solid #ff6600;
}

/* Section Appointment-CTA */
.appointment-cta {
    text-align: center;
    background-color: #ff6600;
    color: white;
    padding: 80px 20px;
    border-radius: 10px;
    margin: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.appointment-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.appointment-cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.appointment-cta .button-rouge {
    background-color: #3c72e7;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.appointment-cta .button-rouge:hover {
    background-color: #2c5bb5;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

footer h3 {
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #ff6600;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin: 10px 0;
}

footer ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

footer ul li a:hover {
    color: #ff6600;
}

footer .social-icons img {
    width: 28px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

footer .social-icons img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.footer-bottom img {
    width: 120px;
    margin: 20px 0;
}

footer p {
    margin: 0;
    font-size: 0.9em;
    color: #ccc;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}