* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Barlow", sans-serif;
    letter-spacing: 0.09rem;
    overflow-x: hidden;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s, backdrop-filter 0.3s;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}


header {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s, backdrop-filter 0.3s;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    margin: 0 auto;
}

.logo img {
    height: 100px;
    display: block;
}

.phone {
    font-size: 14px;
    color: #6D5952;
}

.book {
    border-radius: 50px;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    background-color: #6D5952;
}

.hamburger {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

.header-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    padding: 10px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.header-nav a {
    text-decoration: none;
    color: #6D5952;
    font-size: 16px;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    white-space: nowrap;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-top: 1px solid #ddd;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99;
}

.mobile-menu a {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    text-decoration: none;
    color: #6D5952;
}

.minceur-header {
    text-align: center;
    padding: 2rem 1rem;
}

.minceur-header h1 {
    font-size: 32px;
    margin-bottom: 0.5rem;
}

.minceur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.minceur-soin {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.minceur-soin:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.minceur-soin img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.minceur-soin-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.minceur-soin-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #6D5952;
}

.minceur-soin-desc {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.minceur-soin-price {
    font-size: 1.1rem;
    color: #333;
}

.minceur-soin-link {
    text-decoration: none;
    color: #6D5952;
    font-weight: 600;
    margin-top: auto;
    transition: color 0.2s ease;
}

.minceur-soin-link:hover {
    color: #a48a7b;
}

.footer-contact {
    position: relative;
    background-color: #f3e6d5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 3rem 2rem;
    flex-wrap: wrap;
    color: #000;

}

.footer-contact-content {
    position: relative;
    z-index: 2;
    max-width: 400px;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-contact-info i {
    font-size: 1.4rem;
    margin-right: 0.8rem;
    color: #50403a;
}

.footer-contact-socials {
    list-style: none;
    display: flex;
    gap: 1.2rem;
    padding: 0;
    margin: 0;
    color: #50403a;
}

.footer-contact-socials li {
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer-contact-socials li:hover {
    transform: scale(1.2);
}

/* Background Image */
.footer-contact-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 45%;
    background-image: url('./img/footer-img.jpeg');
    background-size: cover;
    background-position: center;
    z-index: 1;

}

.footer-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.footer-contact-links li a {
    color: #6D5952;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-contact-links li a:hover {
    color: #090909;
    text-decoration: underline;
}


.footer-contact-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    /* Adjust opacity here */
    z-index: 2;
}

#uniqueTestimonialCarousel2 {
    position: relative;
    background: url('./img/wellness.jpeg') center center / cover no-repeat;
    padding: 80px 20px;
    color: #6D5952;
    overflow: hidden;
}

.unique-carousel2-overlay {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.unique-carousel2-wrapper {
    position: relative;
    width: 100%;
    height: auto;
}

.unique-carousel2-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    text-align: center;
    padding: 20px 0;
}

.unique-carousel2-slide.active {
    opacity: 1;
    position: relative;
}

.unique-carousel2-text {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.unique-carousel2-author {
    font-style: italic;
    font-size: 1rem;
}

.unique-carousel2-arrow {
    background: #6D5952;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.3s;
    z-index: 2;
    border-radius: 50%;

}

.unique-carousel2-prev {
    left: -60px;

}

.unique-carousel2-next {
    right: -60px;

}

.footer-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.footer-contact-links li a {
    color: #6D5952;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, text-decoration 0.3s;
}

.footer-contact-links li a:hover {
    color: #090909;
    text-decoration: underline;
}



/* Responsive */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .phone.desktop-only {
        display: none;
    }

    .hero-section {
        padding: 0;
    }






    .footer-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-contact-background {
        position: static;
        width: 100%;
        height: 250px;
        margin-top: 2rem;
        background-position: center top;
    }


}