body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background: radial-gradient(ellipse at center, #5b0000 0%, #1a0000 100%);
  color: white !important;
  text-align: center !important;
}
.card-container {
  max-width: 400px;
  margin: auto;
  padding: 20px 10px;
}
.title {
  font-size: 2.2em;
  font-family: 'Brush Script MT', cursive;
  margin-bottom: 10px;
}
.title span {
  font-weight: normal;
}
.image-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
 }
.profile-pic {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  /*border: 5px solid #770000;*/
  background-image: url('./img/backgroundporteur.png');
  background-size: cover;
  background-position: center;
	 box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
}
.actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 15px 0;
}
.action-bubble {
  width: 60px;
  height: 60px;
  background: #770000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 0 5px black;
}
.action-bubble span {
  position: absolute;
  bottom: -20px;
  font-size: 12px;
}
.carousel-indicators2 {
  margin: 20px;
}
.dot {
  height: 10px;
  width: 10px;
  margin: 4px;
  background-color: white;
  border-radius: 50%;
  display: inline-block;
  opacity: 0.3;
}
.dot.active {
  opacity: 1;
}
.description {
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.5;
}
.hand {
  font-size: 24px;
  margin-top: 5px;
}
.socials {
  font-size: 24px;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 60px;
}
.socials i {
  cursor: pointer;
  transition: transform 0.3s;
}
.socials i:hover {
  transform: scale(1.2);
}
.scroll-wrapper {
  width: 260px; /* largeur exacte d'une carte */
  overflow-x: auto; /* autorise le scroll horizontal */
  overflow-y: hidden;
  margin: 0 auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; /* pour fluidité mobile iOS */
  -ms-overflow-style: none; /* IE et Edge */
  scrollbar-width: none;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
  box-sizing: content-box;
}
.scroll-wrapper::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.scroll-content {
  display: flex;
  transition: transform 0.3s ease;
  gap: 0px; /* pas d'espacement pour éviter débordement */
  scroll-snap-type: x mandatory;
}
.scroll-card {
  flex: 0 0 200px; /* largeur exacte de chaque carte */
  scroll-snap-align: start;
  background: white;
  color: black;
  border-radius: 30px;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  margin-right: 10px;
  min-height: 30px;
  font-size: 25px;
  box-sizing: content-box;
}
.scroll-card .theme {
  margin-right: 20px;
  font-size: 25px;
}
.action-bubble {
  width: 60px;
  height: 60px;
  background: linear-gradient(90deg, #5b0000 30%, #1a0000 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: white;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.voyant-description{
	text-align: justify;
	padding: 10px;
	
}

.modal-open{
	color: black !important;
}