@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');
/* Style global */
body {
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffafc;
  color: #333;
}

/* Header */
header {
  background-color: #f7d6e0;
  padding: 15px 30px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
  margin: 0;
  font-size: 26px;
  color: #b03a64;
}

/* Menu */
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 10px 0 0;
  flex-wrap: wrap;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  text-decoration: none;
  color: #b03a64;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #8a2f50;
}

@media (max-width: 576px) {
  nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 6px 8px;
  }

  nav ul li {
    margin: 0;
    flex: 0 0 48%;
  }

  nav ul li a {
    display: block;
    padding: 6px 0;
  }
}

/* Boutons */
button,
.btn {
  background-color: #b03a64;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

button:hover,
.btn:hover {
  background-color: #8a2f50;
}

/* Storytelling Gallery */
.story-gallery {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 20px;
}

/* Chaque bloc */
.story-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Alternance gauche/droite */
.story-block.reverse {
  flex-direction: row-reverse;
}

/* Effet spotlight */
.story-block::before {
  content: "";
  position: absolute;
  top: var(--y, 50%);
  left: var(--x, 50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.story-block:hover::before {
  opacity: 1;
}

/* Image */
.story-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-block:hover .story-image img {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Texte */
.story-text {
  max-width: 500px;
  padding: 10px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.story-block:hover .story-text {
  transform: scale(1.05);
  background: rgba(255,255,255,0.6);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .story-block,
  .story-block.reverse {
    flex-direction: column;
    text-align: center;
  }

  .story-text {
    max-width: 90%;
  }
}
/* Booking layout */
.booking-side-card {
  background: linear-gradient(135deg, rgba(255, 240, 245, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(176, 58, 100, 0.12);
  display: flex;
  flex-direction: column;
}

.booking-side-card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (min-width: 992px) {
  .booking-side-card__image {
    height: 260px;
  }
}

.booking-side-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #b03a64;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.booking-form {
  border-radius: 24px;
}

.booking-form .form-label {
  font-weight: 600;
  color: #4b2a38;
}

.booking-form .form-control,
.booking-form .form-select {
  border-radius: 16px;
  border-color: rgba(176, 58, 100, 0.18);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
  border-color: rgba(176, 58, 100, 0.65);
  box-shadow: 0 0 0 0.2rem rgba(176, 58, 100, 0.15);
}

.contact-toggle {
  border-radius: 999px;
  padding: 0.55rem 1.35rem;
  font-weight: 500;
}

.btn-check:checked + .contact-toggle,
.btn-check:active + .contact-toggle {
  background-color: #b03a64;
  border-color: #b03a64;
  color: #fff;
  box-shadow: 0 12px 25px rgba(176, 58, 100, 0.25);
}

.btn-check:focus + .contact-toggle {
  box-shadow: 0 0 0 0.2rem rgba(176, 58, 100, 0.2);
}

@media (max-width: 767px) {
  .booking-side-card__image {
    height: 200px;
  }

  .booking-form .card-body {
    padding: 24px !important;
  }
}

/* Services page enhancements */
.services-hero__card {
  background: linear-gradient(135deg, rgba(255, 209, 223, 0.95) 0%, rgba(255, 237, 246, 0.95) 55%, #ffffff 100%);
  color: #5d2238;
  box-shadow: 0 20px 45px rgba(176, 58, 100, 0.18);
}

.services-hero__card .btn-outline-light {
  color: #5d2238;
  border-color: rgba(93, 34, 56, 0.35);
  background: rgba(255, 255, 255, 0.4);
}

.services-hero__card .btn-outline-light:hover,
.services-hero__card .btn-outline-light:focus {
  background: #5d2238;
  color: #fff;
  border-color: #5d2238;
}

.services-hero__quick-links .badge {
  background: rgba(255, 255, 255, 0.85) !important;
  border: 1px solid rgba(176, 58, 100, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services-hero__quick-links .badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(176, 58, 100, 0.2);
}

.services-hero__visual {
  position: relative;
  width: 100%;
  min-height: 260px;
}

.services-hero__bubble {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  filter: blur(0px);
}

.services-hero__bubble--one {
  width: 180px;
  height: 180px;
  background: rgba(255, 177, 204, 0.7);
  top: 12%;
  right: 18%;
}

.services-hero__bubble--two {
  width: 140px;
  height: 140px;
  background: rgba(255, 225, 238, 0.8);
  bottom: 14%;
  left: 8%;
}

.services-hero__bubble--three {
  width: 220px;
  height: 220px;
  background: rgba(255, 192, 210, 0.6);
  bottom: -12%;
  right: -6%;
}

.services-hero__quote {
  position: relative;
  margin: 0 auto;
  max-width: 280px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(176, 58, 100, 0.1);
  color: #5d2238;
  z-index: 2;
}

.services-hero__quote p {
  font-weight: 600;
}

.services-hero__quote small {
  font-size: 0.8rem;
  opacity: 0.8;
}

.services-highlight {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 12px 28px rgba(176, 58, 100, 0.08);
  border: 1px solid rgba(176, 58, 100, 0.08);
  text-align: left;
}

.services-highlight__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(176, 58, 100, 0.1);
  color: #b03a64;
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(176, 58, 100, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(176, 58, 100, 0.16);
}

.service-card__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 992px) {
  .service-card__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.service-card__tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(176, 58, 100, 0.12);
  color: #b03a64;
  border-radius: 999px;
  margin-bottom: 10px;
}

.service-card__title {
  color: #42202e;
  font-weight: 600;
}

.service-card__lead {
  color: #5f4a54;
}

.service-card__pricing {
  min-width: 140px;
}

.service-card__price {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #b03a64;
}

.service-card__note {
  display: block;
  font-size: 0.85rem;
  color: #6e4a56;
  margin-top: 2px;
}

.service-card__chips {
  padding-left: 0;
}

.service-card__chip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(176, 58, 100, 0.1);
  color: #6f3449;
  font-size: 0.85rem;
}

.service-card__chips li::before {
  content: '\2713';
  color: #b03a64;
  font-size: 0.75rem;
}

.service-card__chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card__details {
  border-radius: 16px;
  border: 1px solid rgba(176, 58, 100, 0.16);
  padding: 18px 22px;
  background: rgba(255, 240, 246, 0.4);
}

.service-card__summary {
  cursor: pointer;
  font-weight: 600;
  color: #b03a64;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card__details[open] {
  background: rgba(255, 240, 246, 0.65);
  box-shadow: inset 0 0 0 1px rgba(176, 58, 100, 0.08);
}

.service-card__details[open] .service-card__summary {
  margin-bottom: 18px;
}

.service-card__details summary::marker,
.service-card__details summary::-webkit-details-marker {
  display: none;
}

.service-rich-text__title {
  text-transform: uppercase;
  font-size: 0.88rem;
  color: #b03a64;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.service-rich-text__list {
  padding-left: 18px;
  margin-bottom: 0;
  color: #4d3b43;
}

.service-rich-text__list li {
  margin-bottom: 6px;
}

.service-rich-text__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card__footer .btn {
  border-radius: 999px;
  padding-inline: 22px;
}

.services-closing {
  background: linear-gradient(180deg, rgba(255, 246, 249, 0) 0%, rgba(255, 246, 249, 1) 40%);
}

.services-closing__card {
  background: #fff;
  border: 1px solid rgba(176, 58, 100, 0.1);
}

@media (max-width: 575px) {
  .service-card {
    padding: 24px;
  }

  .services-hero__card {
    padding: 32px 24px;
  }

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

  .services-hero__quote {
    margin-top: 32px;
  }
}
/* Services natural palette update */
.services-hero__card {
  background: linear-gradient(135deg, rgba(229, 200, 179, 0.96) 0%, rgba(246, 230, 210, 0.96) 60%, #fffaf4 100%);
  color: #5a3d2b;
  box-shadow: 0 22px 48px rgba(120, 80, 50, 0.18);
}

.services-hero__card .btn-outline-light {
  color: #5a3d2b;
  border-color: rgba(90, 61, 43, 0.35);
  background: rgba(255, 255, 255, 0.42);
}

.services-hero__card .btn-outline-light:hover,
.services-hero__card .btn-outline-light:focus {
  background: #7e553b;
  color: #fff;
  border-color: #7e553b;
}

.services-hero__quick-links .badge {
  background: rgba(255, 255, 255, 0.86) !important;
  border: 1px solid rgba(125, 87, 60, 0.14);
  color: #7d573c !important;
}

.services-hero__quick-links .badge:hover {
  box-shadow: 0 10px 20px rgba(125, 87, 60, 0.18);
}

.services-hero__bubble--one {
  background: rgba(214, 176, 148, 0.65);
}

.services-hero__bubble--two {
  background: rgba(239, 214, 189, 0.75);
}

.services-hero__bubble--three {
  background: rgba(221, 193, 163, 0.56);
}

.services-hero__quote {
  border: 1px solid rgba(125, 87, 60, 0.15);
  color: #5a3d2b;
}

.services-highlight {
  background: #fffdf9;
  border: 1px solid rgba(160, 120, 80, 0.12);
  box-shadow: 0 14px 32px rgba(160, 120, 80, 0.08);
}

.services-highlight__icon {
  background: rgba(160, 120, 80, 0.15);
  color: #8b5a34;
}

.service-card {
  border: 1px solid rgba(160, 120, 80, 0.12);
}

.service-card:hover {
  box-shadow: 0 24px 44px rgba(125, 87, 60, 0.18);
}

.service-card__tag {
  background: rgba(160, 120, 80, 0.16);
  color: #8b5a34;
}

.service-card__title {
  color: #3f2a20;
}

.service-card__lead {
  color: #6b5144;
}

.service-card__price {
  color: #8b5a34;
}

.service-card__note {
  color: #7a5a45;
}

.service-card__chip span {
  background: rgba(160, 120, 80, 0.14);
  color: #6b4b35;
}

.service-card__chips li::before {
  color: #8b5a34;
}

.service-card__details {
  border: 1px solid rgba(160, 120, 80, 0.2);
  background: rgba(248, 240, 230, 0.55);
}

.service-card__details[open] {
  background: rgba(248, 240, 230, 0.75);
  box-shadow: inset 0 0 0 1px rgba(160, 120, 80, 0.12);
}

.service-card__summary {
  color: #8b5a34;
}

.service-rich-text__title {
  color: #8b5a34;
}

.service-rich-text__list {
  color: #503b2d;
}

.services-closing {
  background: linear-gradient(180deg, rgba(249, 241, 231, 0) 0%, rgba(249, 241, 231, 1) 42%);
}

.services-closing__card {
  border: 1px solid rgba(160, 120, 80, 0.14);
}

/* Portfolio */
.portfolio-hero {
  background: linear-gradient(135deg, rgba(229, 200, 179, 0.2) 0%, rgba(246, 230, 210, 0.25) 40%, #fffaf4 100%);
  border-radius: 24px;
}

.portfolio-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 220px));
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(160, 120, 80, 0.18);
  background: radial-gradient(circle at 30% 20%, rgba(229, 200, 179, 0.14), transparent 45%), #fffaf4;
  box-shadow: 0 10px 22px rgba(125, 87, 60, 0.1);
  height: clamp(160px, 26vw, 240px);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.portfolio-card__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
  background: #fff;
  padding: 8px;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 90, 52, 0.35);
  box-shadow: 0 16px 32px rgba(125, 87, 60, 0.14);
}

.portfolio-card:hover .portfolio-card__img {
  transform: scale(1.03);
}

.portfolio-card__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 10px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
  color: #fff;
  letter-spacing: 0.08em;
}

.portfolio-card:hover .portfolio-card__img {
  transform: scale(1.04);
}

.portfolio-theme .btn {
  border-radius: 999px;
}

.portfolio-section {
  margin-top: -10px;
}

.portfolio-theme-nav .btn {
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  border-width: 1px;
}

.portfolio-theme-nav .btn.active {
  background-color: #8b5a34;
  border-color: #8b5a34;
  color: #fff;
  box-shadow: 0 10px 20px rgba(125, 87, 60, 0.2);
}

.portfolio-theme-nav {
  gap: 8px;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  padding: 20px;
}

.portfolio-lightbox.is-open {
  display: flex;
}

.portfolio-lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.portfolio-lightbox__content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.portfolio-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: transparent;
  color: #fff;
  font-size: 32px;
  border: none;
  cursor: pointer;
}

.portfolio-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
}

.portfolio-lightbox__nav--prev {
  left: 16px;
}

.portfolio-lightbox__nav--next {
  right: 16px;
}

.portfolio-thumb {
  cursor: pointer;
}

.font-dancing {
  font-family: 'Dancing Script', cursive;
}
