* {
    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;
}

.mentions-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

h1,
h2 {
    color: #6D5952;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

h2 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}


.banner {
    background: #b39984 url(./img/tarif-hero.png) center / cover no-repeat;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;

}


.banner2 {
    background: #b39984 url(./img/tarif-hero-visage.png) center / cover no-repeat;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.banner3 {
    background: #b39984 url(./img/tarif-hero-epilation.png) center / cover no-repeat;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: flex-end;
}


.banner2::after {
    content: "";
    position: absolute;
    inset: 0;

}

.banner3::after {
    content: "";
    position: absolute;
    inset: 0;

}

.banner2 h2 {
    position: relative;
    margin: 0;
    padding: 34px 28px;
    color: #fff;
    font-weight: 300;
    font-size: clamp(22px, 4.6vw, 44px);
    letter-spacing: .4px;
}

.banner3 h2 {
    position: relative;
    margin: 0;
    padding: 34px 28px;
    color: #fff;
    font-weight: 300;
    font-size: clamp(22px, 4.6vw, 44px);
    letter-spacing: .4px;
}

.banner h2 {
    position: relative;
    margin: 0;
    padding: 34px 28px;
    color: #fff;
    font-weight: 300;
    font-size: clamp(22px, 4.6vw, 44px);
    letter-spacing: .4px;
}

.htx-offre {
    background: #EFE4DB;
    /* beige HT */
    color: #6D5952;
    /* brun HT */
    padding: 40px 16px;
}

.htx-offre-wrap {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    font-family: "Barlow", "Montserrat", system-ui, -apple-system, Arial, sans-serif;
}

.htx-offre-title {
    letter-spacing: .08em;
    font-weight: 700;
    font-size: 28px;
    margin: 0 0 6px;
}

.htx-offre-sub {
    font-weight: 600;
    letter-spacing: .12em;
    margin: 0 0 18px;
    font-size: 13px;
    text-transform: uppercase;
}

.htx-offre-deal {
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 18px;
}

.htx-offre-text p {
    margin: 8px 0;
    line-height: 1.6;
    font-size: 15px;
}

/* Pricing table area */
.pricing {
    background: #E1CEC3;
    background-image: linear-gradient(#E1CEC3, #e6d6cd);
    border-top: 1px solid rgba(109, 89, 82, .35);
}

.table {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.row {
    display: contents;
    /* let children span grid columns */
}

.cell {
    border-bottom: 1px solid rgba(109, 89, 82, .35);
    border-right: 1px solid rgba(109, 89, 82, .35);
    padding: 28px 22px;
}

.cell:first-child {
    border-left: 1px solid rgba(109, 89, 82, .35)
}



.tag {
    display: inline-block;
    background: #6D5952;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.desc {
    font-size: 13px;
    opacity: .9;
    margin-top: 6px;
    font-style: italic;
}

.prices {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start
}

.prices ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.prices li {
    margin: 10px 0;
    font-size: 15px;
    letter-spacing: .2px
}

.strong {
    font-weight: 800;
    color: #6D5952
}

.old {
    opacity: .7;
    text-decoration: line-through;
    margin-left: 6px
}

#laser-pricing .laser-tabs {
    display: flex;
    justify-content: center;
    gap: 18px;
    padding: 26px 0 12px
}

#laser-pricing .laser-tab {
    background: #e1cec4;
    color: #6d5952;
    border: 1px solid;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .3px;
    padding: 12px 26px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    outline: 0;
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
    opacity: .85;
}

#laser-pricing .laser-tab.is-active {
    background-color: #6d5952;
    color: white;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .18)
}

#laser-pricing .laser-tab:focus-visible {
    box-shadow: 0 0 0 3px rgba(109, 89, 82, .35)
}

/* panels */
#laser-pricing .laser-panel.is-hidden {
    display: none
}

/* table */
#laser-pricing .laser-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px
}

#laser-pricing .laser-table th {
    background: #6D5952;
    color: #fff;
    padding: 14px 16px;
    font-weight: 800;
    text-align: left
}

#laser-pricing .laser-table td {
    background: #E1CEC3;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(109, 89, 82, .35)
}

#laser-pricing .laser-table td:nth-child(2),
#laser-pricing .laser-table td:nth-child(3) {
    text-align: center;
    font-weight: 700
}

.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 a {
    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;
    /* Adjust opacity here */
    z-index: 2;
}



.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;
    }



    .table {
        grid-template-columns: 1fr
    }

    .cell {
        border-left: 1px solid rgba(109, 89, 82, .35);
        border-right: 1px solid rgba(109, 89, 82, .35)
    }


    .mentions-container {
        padding: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .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;
    }

    .laser-table thead {
        display: none
    }

    .laser-table,
    .laser-table tbody,
    .laser-table tr,
    .laser-table td {
        display: block;
        width: 100%
    }

    .laser-table tr {
        margin-bottom: 14px
    }

    .laser-table td {
        border-left: 1px solid rgba(109, 89, 82, .35);
        border-right: 1px solid rgba(109, 89, 82, .35);
    }

    .laser-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 6px;
    }

    .htx-offre {
        padding: 56px 24px;
    }

    .htx-offre-title {
        font-size: 34px;
    }

    .htx-offre-deal {
        font-size: 22px;
    }

    .htx-offre-text p {
        font-size: 16px;
    }
}