/* =============================================
   MASSAGE MIEUX-ÊTRE — Charte Graphique
   Inspirée du flyer : bleu ciel, bleu marine
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Josefin+Sans:wght@300;400;600;700&display=swap');

:root {
  --sky: #d4e8f5;
  --sky-light: #e8f3fa;
  --sky-dark: #b8d6ed;
  --navy: #1a2a6c;
  --cobalt: #2d5abf;
  --cobalt-light: #4a7dd4;
  --white: #ffffff;
  --text-dark: #1a2a6c;
  --text-body: #2c3e6b;
  --text-light: #5a7aaa;
  --accent: #e8f3fa;
  --shadow: rgba(26, 42, 108, 0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Josefin Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--sky-light);
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── BACKGROUND DECORATION ── */
body::before {
  content: '';
  position: fixed;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45,90,191,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAVIGATION ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--sky-dark);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px var(--shadow);
  height: 72px;
}

nav .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

nav .logo img {
  height: 48px;
  width: auto;
}

nav .logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
}

nav .nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

nav .nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

nav .nav-links a:hover,
nav .nav-links a.active {
  color: var(--cobalt);
  border-bottom-color: var(--cobalt);
}

/* ── HERO BANNER ── */
.hero {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.75) saturate(0.9);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,42,108,0.55) 0%, rgba(45,90,191,0.25) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-overlay h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-shadow: 0 2px 30px rgba(26,42,108,0.4);
}

.hero-overlay .hero-sub {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 1rem;
}

/* ── QUOTE BANNER ── */
.quote-banner {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 2.5rem 2rem;
}

.quote-banner p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.03em;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.quote-banner p::before { content: '❝ '; opacity: 0.6; }
.quote-banner p::after  { content: ' ❞'; opacity: 0.6; }

/* ── MAIN CONTENT ── */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
}

/* ── SECTION TITLE ── */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.08em;
}

.section-title .title-line {
  width: 60px;
  height: 2px;
  background: var(--cobalt);
  margin: 1rem auto 0;
}

.section-title p {
  margin-top: 1rem;
  color: var(--text-light);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* ── SERVICE CARD ── */
.card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 30px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid var(--cobalt);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26,42,108,0.18);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: saturate(0.85);
  transition: filter 0.3s, transform 0.4s;
}

.card:hover img {
  filter: saturate(1.1);
  transform: scale(1.02);
}

.card-body {
  padding: 1.8rem;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.card-body .duration {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cobalt);
  font-weight: 600;
  margin-bottom: 1rem;
}

.card-body p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.card-body .btn {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  background: transparent;
  border: 1.5px solid var(--cobalt);
  color: var(--cobalt);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 2px;
}

.card-body .btn:hover {
  background: var(--cobalt);
  color: var(--white);
}

/* ── DETAIL PAGE LAYOUT ── */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.detail-layout img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 40px var(--shadow);
}

.detail-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.detail-content .tag {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cobalt);
  font-weight: 600;
  margin-bottom: 2rem;
  display: block;
}

.detail-content .divider {
  width: 50px;
  height: 2px;
  background: var(--cobalt);
  margin: 1.5rem 0;
}

.detail-section {
  margin-bottom: 2rem;
}

.detail-section h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cobalt);
  margin-bottom: 0.8rem;
}

.detail-section p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.9;
}

.detail-section .info-box {
  background: var(--sky-light);
  border-left: 3px solid var(--cobalt);
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-body);
  margin-top: 0.5rem;
}

.detail-section .warning {
  background: #fff8f0;
  border-left: 3px solid #e8a050;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  color: #7a5020;
}

.btn-reserve {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 3rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.3s;
}

.btn-reserve:hover {
  background: var(--cobalt);
}

/* ── TARIFS BOX ── */
.tarifs-box {
  background: var(--sky);
  border-radius: 4px;
  padding: 2rem;
  margin-top: 1.5rem;
}

.tarifs-box h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}

.tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--sky-dark);
  font-size: 0.88rem;
}

.tarif-row:last-child { border-bottom: none; }
.tarif-row .price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
}

/* ── ABOUT SECTION ── */
.about-section {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
  background: var(--white);
  border-radius: 4px;
  padding: 3rem;
  box-shadow: 0 4px 30px var(--shadow);
  margin-top: 4rem;
}

.about-section img {
  width: 100%;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 4px solid var(--sky-dark);
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.about-content .role {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cobalt);
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: block;
}

.about-content p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.about-content strong {
  color: var(--navy);
  font-weight: 600;
}

/* ── CONTACT INFO ── */
.contact-strip {
  background: var(--navy);
  color: var(--white);
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  text-align: center;
}

.contact-strip .item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-strip .label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.6;
}

.contact-strip .value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
}

.contact-strip .value:hover { opacity: 0.8; }

/* ── FOOTER ── */
footer {
  background: #0f1a45;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin: 0 1rem;
}
footer a:hover { color: var(--white); }

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.social-links a img {
  height: 28px;
  width: 28px;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s;
  filter: brightness(10);
}

.social-links a:hover img { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav .nav-links { gap: 1.2rem; }
  .detail-layout { grid-template-columns: 1fr; gap: 2rem; }
  .about-section { grid-template-columns: 1fr; }
  .about-section img { width: 160px; margin: 0 auto; display: block; border-radius: 50%; }
  .contact-strip { gap: 2rem; }
  .hero { height: 280px; }
}
