/* Variables et reset */
:root {
    --secondary-color: #F56E28;
    --dark-brown: #3a2a1d;
    --light-brown: #8c7b6b;
    --blue: #0285a8;
    --light-blue: #02bec4;
    --green: #a9e8dc;
    --light-green: #e1f7e6;
    --text-light: #fff;
    --font-main: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;

    --header-height: 100px;
}

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

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-brown);
    background-color: #fff;
}

a {
    text-decoration: none;
    color: var(--dark-brown);
    transition: var(--transition);
}

ul {
    list-style: none;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
}

.text-center {
    text-align: center;
}

.no-break {
    white-space: nowrap;
}

.decoration {
    text-decoration: underline;
}

.error-info {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
}

h1, h2, h3, h4 {
    font-family: var(--font-main);
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--dark-brown);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--light-blue);
    margin: 0.5rem auto;
}

p {
    margin-bottom: 1rem;
}

main {
    padding-top: var(--header-height);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 2rem;
}

/* Section header */
.header {
    /* height: 50vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    /* margin-top: 100px; */
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.header-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 2rem;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Section content */
.content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Liste catégories */
.content-categories {
    margin: 40px 0;
    text-align: center;
}

.content-categories-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.content-category-link {
    display: inline-block;
    padding: 12px 20px;
    background-color: var(--blue);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.content-category-link span {
    font-size: 0.9em;
    opacity: 0.9;
}

.content-category-link:hover {
    background-color: var(--light-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Catégory massage */
.separator-service {
    margin: 60px 0 30px 0;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}
.massage-category {
    margin: 60px 0;
    padding-top: 20px;
    border-top: 1px dashed #ddd;
}

.category-title {
    color: var(--blue);
    text-align: center;
    margin-bottom: 10px;
    font-size: 2em;
}

.category-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    font-style: italic;
}

.massage-description {
    font-size: 12px;
    margin: 5px auto;
    color: #666;
    font-style: italic;
}

/* Service Items */
.service-item {
    margin-bottom: 4rem;
    width: 100%;
}

.service-item h3 {
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid var(--light-blue);
}

.service-item h3 i {
    margin-right: 10px;
    color: var(--light-blue);
    font-size: 1.5rem;
}

.service-item-content {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.service-item-content.reverse {
    flex-direction: row-reverse;
}

.service-item-text {
    flex: 1;
}

.service-item-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #444;
}

.service-item-text p:last-child {
    margin-bottom: 0;
}

.service-item-text p strong {
    font-weight: 600;
    color: var(--dark-brown);
}

.service-item-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
    display: flex;
    align-items: center;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}

.service-item-image:hover img {
    transform: scale(1.03);
}
/* 
.service-item {
    display: flex;
    margin-bottom: 2rem;
    gap: 0;
    width: 100%;
    overflow: hidden;
    flex-direction: column;
}

.service-item-content {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.service-item-content.reverse {
    flex-direction: row-reverse;
}

.service-item-info {
    flex: 1;
}

.service-item h3 {
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid var(--light-blue);
}

.service-item-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 400px;
    display: flex;
    align-items: center;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    object-fit: cover;
}

.service-item-image:hover img {
    transform: scale(1.03);
} */

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.top-button {
    display: inline-block;
    padding: 12px 15px;
    background-color: var(--blue);
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-button:hover {
    background-color: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Precautions Bottom */
.service-precautions {
    background-color: var(--light-green);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    /* text-align: center; */
}

.service-precautions h3 {
    color: var(--dark-brown);
    margin-bottom: 1rem;

    /* color: var(--blue);
    margin-bottom: 15px;*/
    text-align: center; 
}

.service-precautions ul {
    list-style: disc;
    margin-left: 1.5rem;

    /* list-style: none;
    padding-left: 0; */
}

.service-precautions li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.service-precautions li i {
    color: var(--light-blue);
    margin-right: 10px;
    margin-top: 3px;
}

/* Styles pour les badges */
.signature-badge {
    display: inline-block;
    background-color: var(--blue);
    color: white;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    vertical-align: middle;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.signature-text {
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    font-size: 1.2em;
    color: var(--blue);
    text-transform: capitalize;
}

.signature-badge .signature-text,
.content-category-link .signature-text {
    color: white;
    text-transform: none;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 2rem;
    background-color: var(--green);
    border-radius: 8px;
}

.cta-section h3 {
    margin-bottom: 1rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background-color: var(--blue);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--light-blue);
}

.cta-button:hover {
    background-color: var(--light-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-mini {
    text-align: center;
    margin: 30px 0 15px;
}

.cta-button-small {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--blue);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cta-button-small:hover {
    background-color: var(--light-blue);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

