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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}


h1,
h2,
h3,
a {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: #f0f0f0;
}


/* HEADER */

.header {
    display: flex;
    align-items: center;
    padding: 10px;
    position: relative;
    width: 100%;
    height: 350px;
    background: url("/images/En-tête\ \(1\).jpg");
    justify-content: flex-end;
    color: white;
    overflow: hidden;

}

.header img {
    height: 100%;
    max-height: 350px;
    width: auto;
    object-fit: contain;
}



.nav {
    position: relative;
    bottom: 40px;
    right: 10px;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    /* padding: 10px 20px; */
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 12px;

    z-index: 3;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;

}


.nav:hover {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(12px);
}

.nav a {
    color: white;
    font-weight: 700;

    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}


.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #f8d27a;
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* === BURGER === */


.burger {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 32px;
    color: white;
    cursor: pointer;
    z-index: 2000;
    display: none;
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }
}


@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 0;
        left: 0;
        width: 200px;
        height: 80vh;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(10px);
        display: none;
        flex-direction: column;
        padding: 20px 20px;
        padding-top: 5px;
        /* gap: 25px; */
        z-index: 1500;
    }

    .nav.active {
        display: flex;
    }


    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 32px;
        color: white;
        cursor: pointer;
    }

    .nav a {
        font-size: 1.5rem;
        color: white;
        text-align: center;
    }
}



.page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: #fffaf9;

}


.page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    height: 1100px;


    background: url("/images/12.jpg") left / contain no-repeat;
    background-size: cover;
    opacity: 0.15;

    pointer-events: none;
    z-index: 1;

}


.page>* {
    position: relative;
    z-index: 2;
}





.manicure-hero {
    text-align: justify;
    padding: 3rem 1rem 2rem;
}

.manicure-hero ul {
    padding: 10px;
}

.manicure-hero li {
    margin-left: 20px;
}

.manicure-hero h1 {
    text-align: center;
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    margin: 20px;
    color: black;
}


.manicure-hero p {
    max-width: auto;
    margin: 10 auto;
    line-height: 1.6;
    color: #555;
}




.manicure-sections {
    display: flex;
    flex-direction: row;
    align-items: normal;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
}



.voir {
    display: flex;
    flex-direction: column;
    margin: 20px;
    gap: 10px;
    text-align: center;

}

.voir a:hover {
    background: #FF5A5F;
    background: linear-gradient(90deg, rgba(255, 90, 95, 1) 0%, rgba(219, 144, 121, 1) 95%);
}

.voir a {
    color: gray;
}

.manicure-block {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.manicure-block:hover {
    transform: translateY(-5px);
}

.manicure-block img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
}

.manicure-text {
    padding: 1.5rem;
}

.manicure-text h2 {
    color: black;
    margin-bottom: 0.8rem;
    font-family: "Montserrat", sans-serif;
}

.manicure-text p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.manicure-text .btn {
    display: inline-block;
    background-color: #a22d5c;
    color: #fff;
    text-decoration: none;
    padding: 0.6rem 1.4rem;
    border-radius: 25px;
    transition: background 0.3s;
}

.manicure-text .btn:hover {
    background-color: #c33d70;
}


@media (max-width: 768px) {
    .manicure-hero {
        text-align: center;
        padding: 3rem 1rem 2rem;
    }

    .manicure-hero li {
        text-align: start;
    }

    .manicure-hero h1 {
        font-size: 1.7rem;
    }

    .manicure-block img {
        max-height: 350px;
    }

    .manicure-text {
        padding: 1rem;
    }

    .manicure-sections {
        display: flex;
        flex-direction: column;
        align-items: normal;
        gap: 3rem;
        margin: 0 auto;
        padding: 2rem 1rem 4rem;
    }
}


.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* FOOTER */

.footer {
    background: #000;
    color: #fff;
    padding: 20px 0;

}



.footer-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 10px;
    justify-content: space-between;


    padding: 10px 0;

    @media (max-width: 767px) {
        grid-template-columns: 1fr;
    }
}

.footer-box-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 5px;
    padding: 10px;
    align-items: flex-start;
    align-self: flex-end;
    color: white;
    text-align: justify;

}

.footer-box-left img {
    width: 30px;

}



.footer-box-centre {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 5px;
    align-items: center;


    iframe {
        width: 80%;
        height: 250px;
        border-radius: 10px;
    }
}

.footer-box-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 5px;
    padding: 10px;
    align-items: flex-end;
    align-self: flex-end;
    text-align: right;
    color: white;

}

.footer-left-title {
    font-weight: bold;
}

.footer-right-title {
    font-weight: bold;
}

.footer-left-list li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-box-right li {
    list-style: none;
    padding: 0;
    margin: 0;
}



/*  RESPONSIVE DESIGN */

/* Tablet */
@media (max-width: 1023px) {
    .header {
        height: 455px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .service-cards {
        justify-content: center;
    }

    .manicure-block img {
        max-height: 550px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .header {
        background: url("/images/head.jpeg") center/cover no-repeat;
        height: 150px;
        flex-direction: row;
        justify-content: space-between;
    }
}




/* SCROLL */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 200px;
    z-index: 1000;
    background-color: gray;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.3s ease;
}


#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}


#scrollTopBtn:hover {
    background-color: #FF5A5F;
    transform: scale(1.1);
}


@media (max-width: 768px) {
    #scrollTopBtn {
        bottom: 20px;
        right: 150px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* translateMenu */
.translate-widget {
    position: fixed;
    top: 50px;
    left: 20px;
    z-index: 9999;
    font-family: 'Playfair Display', serif;
}

#translateBtn {
    background: black;
    color: white;
    padding: 8px 14px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

#translateBtn:hover {
    background: #FF5A5F;
}

#translateMenu {
    position: absolute;
    top: 45px;
    left: 0;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 150px;
}

#translateMenu a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: 0.2s;
}

#translateMenu a:hover {
    background: #f5f5f5;
}

.hidden {
    display: none;
}

@media (max-width: 768px) {
    .translate-widget {
        left: auto;
        right: 20px;
        top: 0;
    }

    #translateMenu {
        left: auto;
        right: 0;
    }
}