/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typographie */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #55403E;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #BE837E, #d4a9a4);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #BE837E, #a06d68);
    color: white;
    box-shadow: 0 4px 15px rgba(190, 131, 126, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(190, 131, 126, 0.4);
}

.btn-outline {
    background: transparent;
    color: #BE837E;
    border: 2px solid #BE837E;
}

.btn-outline:hover {
    background: #BE837E;
    color: white;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #55403E;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 1.5rem;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a:hover {
    color: #BE837E;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #BE837E;
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    width: auto;
    min-width: 550px;
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: none;
    flex-direction: row;
    gap: 25px;
    z-index: 1001;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dropdown-column h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: #55403E;
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
}

.dropdown-column li {
    margin-bottom: 8px;
}

.dropdown-column a {
    color: #666;
    font-weight: 400;
    padding: 4px 0;
    display: block;
    transition: color 0.2s;
    font-size: 0.9rem;
}

.dropdown-column a:hover {
    color: #BE837E;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #555;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #f9f5f0 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(190, 131, 126, 0.1) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #55403E;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #BE837E;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fff;
}

.about .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content {
    flex: 1;
}

.about-list {
    list-style: none;
    margin-top: 1.5rem;
}

.about-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.about-list i {
    color: #BE837E;
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.7s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(190, 131, 126, 0.15);
    border-color: #BE837E;
}

/* Style pour les cartes de la section Solutions esthétiques non chirurgicales */
.solutions-non-chirurgicales .service-card {
    border: 2px solid #BE837E;
    background: #BE837E;
    color: white;
}

.solutions-non-chirurgicales .service-card h3 {
    color: #000000;
}

.solutions-non-chirurgicales .service-card p {
    color: rgba(255, 255, 255, 0.9);
}

.solutions-non-chirurgicales .service-card .btn-outline {
    background: #241c1b;
    color: white;
    border: 2px solid #55403E;
    margin-top: 20px;
}

.solutions-non-chirurgicales .service-card .btn-outline:hover {
    background: #45332e;
    color: white;
    border-color: #45332e;
}

.solutions-non-chirurgicales .service-card:hover {
    border-color: #a06d68;
    background: #a06d68;
}

.solutions-non-chirurgicales .service-card:hover h3 {
    color: #6d554f;
}

.service-icon {
    font-size: 2.5rem;
    color: #BE837E;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Featured Services Section */
.featured-services {
    padding: 100px 0;
    background: #ffffff;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.featured-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.featured-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #BE837E, #d4a9a4);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.featured-card:hover::after {
    transform: scaleX(1);
}

.featured-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 40px rgba(190, 131, 126, 0.15);
}

.featured-image {
    flex: 1;
    min-width: 200px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-content {
    flex: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #55403E;
}

.featured-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background: #fff;
}

.philosophy .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.philosophy-content {
    flex: 1;
}

.philosophy-list {
    list-style: none;
    margin-top: 1.5rem;
}

.philosophy-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.philosophy-list li::before {
    content: '•';
    color: #BE837E;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.philosophy-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
}

.philosophy-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #ffffff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-note {
    margin-top: 2rem;
    font-style: italic;
    color: #888;
    text-align: center;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #fff;
}

.contact .container {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-details {
    margin: 2rem 0;
}

.contact-details p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-details i {
    color: #BE837E;
    margin-right: 12px;
    width: 20px;
}

.contact-form {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #BE837E;
}

/* Footer */
.footer {
    background: #342626;
    color: #e0e0e0;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-logo .logo-text {
    color: #f5f5f5;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-social h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #BE837E;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #BE837E;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
    color: #aaa;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #888;
}

/* Responsive */
@media (max-width: 992px) {
    .hero .container,
    .about .container,
    .philosophy .container,
    .contact .container {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
    }

    .service-card,
    .contact-form {
        padding: 20px;
    }
}
