/* Design spécifique pour le bouton 'Laisser un avis' */
.cta a.add-review-btn {
    background: linear-gradient(90deg, #e0b07d 0%, #b88b4a 100%);
    color: #222;
    text-decoration: none;
    padding: 1em 2.5em;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.18rem;
    box-shadow: 0 4px 18px rgba(224,176,125,0.18);
    letter-spacing: 1px;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s;
    display: inline-block;
    cursor: pointer;
}
.cta a.add-review-btn::after {
    content: "\2192";
    margin-left: 0.7em;
    font-size: 1.2em;
    vertical-align: middle;
    transition: margin-left 0.18s;
}
.cta a.add-review-btn:hover {
    background: linear-gradient(90deg, #fff 0%, #e0b07d 100%);
    color: #b88b4a;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 28px rgba(224,176,125,0.28);
}
.cta a.add-review-btn:hover::after {
    margin-left: 1.2em;
}
/* Style global pour Massage Bien-Être */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: -1;
    background: url('../images/fond.png') center/cover no-repeat;
}
nav {
    width: 100%;
    background: rgba(0,0,0,0.7);
    padding: 0.5em 0;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.navbar {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}
.navbar-logo {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
    color: #e0b07d;
    text-decoration: none;
}
.navbar-links {
    display: flex;
    gap: 1.2em;
}
.navbar-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    padding: 0.4em 1em;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.navbar-links a:hover {
    background: #e0b07d;
    color: #222;
}
.container {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 60px 20px 40px 20px;
    background: rgba(0,0,0,0.55);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
h1, h2 {
    text-align: center;
}
h1 {
    font-size: 2.4rem;
    margin-bottom: 0.7em;
    letter-spacing: 2px;
}
/* Harmonisation du bouton avis avec services */
.cta a.add-review-btn {
    background: linear-gradient(90deg, #e0b07d 0%, #b88b4a 100%);
    color: #222;
    text-decoration: none;
    padding: 1em 2.5em;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.18rem;
    box-shadow: 0 4px 18px rgba(224,176,125,0.18);
    letter-spacing: 1px;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    transition: transform 0.18s, box-shadow 0.18s, background 0.18s, color 0.18s;
    display: inline-block;
    cursor: pointer;
}
.cta a.add-review-btn::after {
    content: "\2192";
    margin-left: 0.7em;
    font-size: 1.2em;
    vertical-align: middle;
    transition: margin-left 0.18s;
}
.cta a.add-review-btn:hover {
    background: linear-gradient(90deg, #fff 0%, #e0b07d 100%);
    color: #b88b4a;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 28px rgba(224,176,125,0.28);
}
.cta a.add-review-btn:hover::after {
    margin-left: 1.2em;
}
.add-review-btn::after {
    content: "\2192";
    margin-left: 0.7em;
    font-size: 1.2em;
    vertical-align: middle;
    transition: margin-left 0.18s;
}
.add-review-btn:hover {
    background: linear-gradient(90deg, #fff 0%, #e0b07d 100%);
    color: #b88b4a;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 28px rgba(224,176,125,0.28);
}
.add-review-btn:hover::after {
    margin-left: 1.2em;
}
.reviews {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2em;
    margin-bottom: 2em;
}
.review {
    background: rgba(255,255,255,0.07);
    padding: 1.2em 1em;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    min-width: 0;
}
.review-name {
    font-weight: bold;
    color: #e0b07d;
    font-size: 1.1rem;
}
.review-date {
    font-size: 0.95rem;
    color: #d6c2a1;
}
.review-text {
    font-size: 1.08rem;
    line-height: 1.6;
}
.review-stars {
    color: #e0b07d;
    font-size: 1.2rem;
}
footer {
    width: 100%;
    background: rgba(0,0,0,0.8);
    color: #e0b07d;
    text-align: center;
    padding: 1.2em 0 1em 0;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    margin-top: 50px;
}
footer a {
    color: #e0b07d;
    text-decoration: underline;
    transition: color 0.2s;
}
footer a:hover {
    color: #fff;
}
@media (max-width: 900px) {
    .reviews {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .container { padding: 30px 5px; }
    h1 { font-size: 1.5rem; }
    .navbar { flex-direction: column; gap: 0.5em; }
    .reviews { grid-template-columns: 1fr; }
}
