@import "./styles.css";
@import "./star_styles.css";
@import "../scss/bootstrap.css";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.7.2/font/bootstrap-icons.css");

/* mode dark*/
body {
  background-color: #000000;  /* Fond noir */
  color: #ffffff;  /* Texte en blanc */
}
/* Remplacer bg-light par un fond sombre globalement */
.bg-light {
  background-color: #000000 !important; /* Fond sombre */
  color: #ffffff !important; /* Texte en blanc */
}
/* texte en blanc pour la lisibilité  */
.text-dark {
  color: white !important; /* Texte en blanc */
}
/* Changer le fond des éléments d'accordéon en fond sombre */
.accordion-item {
  background-color: #333333; /* Fond sombre */
  border: 1px solid rgba(255, 255, 255, 0.125); /* Bordure claire */
}

/* Changer les boutons de l'accordéon pour les rendre sombres */
.accordion-button {
  background-color: #444444; /* Fond sombre pour les boutons */
  color: white; /* Texte en blanc */
  border: 1px solid rgba(255, 255, 255, 0.125);
}

/* Lors du survol des boutons */
.accordion-button:hover {
  background-color: #555555; /* Fond plus clair au survol */
  color: #B36B03; /* Texte coloré au survol */
  border-color: #666666; /* Bordure plus claire au survol */
}

/* Modifier la couleur des liens dans les sections d'accordéon */
._link {
  color: #B36B03; /* Couleur des liens en orange */
}

/* Lors du survol des liens */
._link:hover {
  color: #ffcc00; /* Couleur des liens au survol */
}

/* Changer la couleur du fond et du texte dans le corps de l'accordéon */
.accordion-body {
  background-color: #222222; /* Fond sombre */
  color: white; /* Texte en blanc */
}

/* Changer la couleur des titres */
.text-center h2 {
  color: white; /* Titres en blanc */
}

/*footer color*/
.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgb(0 0 0) !important;
}

/*card bg color*/
.card {
  background-color: #0b0b0b;
}
/*Headings color*/
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  color: #d78316;
}




a {
  text-decoration: none;
  color: orange;
}

.positionToHeader {
  margin-top: 7rem;
}

#navbar {
  background-color: #000000;
  color: white;
}

#navbar i {
  font-size: 25px;
  color: white;
}

#navbar i:hover {
  font-size: 25px;
  color: #d78316;
}

a {
  font-weight: 600;
  color: white;
}

._link {
  font-weight: 600;
  color: rgb(103, 100, 1);
}

._strong {
  font-weight: 600;
  color: #a06617;;
}

a:hover {
  text-decoration: none;
  color: #d78316;
}

strong {
  font-weight: 600;
  color: #d78316;
}


@media (max-width: 767px) {
  .carousel-inner .carousel-item>div {
    display: none;
  }

  .carousel-inner .carousel-item>div:first-child {
    position: relative;
    display: block;
    margin: auto;
  }

}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}


.carousel-control-prev-icon {
  position: absolute;
  margin-right: 250px;
}

.carousel-control-next-icon {
  position: absolute;
  margin-left: 350px;
}

@media (max-width: 480px) {
  .navbar-nav {
    margin: 0 auto;
    display: block;
    text-align: center;
  }

}

.card-body p {
  font-size: 13px;
}

.card-body h4 {
  font-size: 22px;
}

.card-img-overlay p {
  font-size: 11px;
}

.card-footer button i {
  font-size: smaller;
  padding-bottom: 10px;
}

._badgeMail {
  position: absolute;
}

.logo {
  position: absolute;
  margin-left: -3rem !important;
  height: 90px;
  width: 220px;
}

/* Ancienne règle bg */
/*
#bandeaux {
  background-image: url('../assets/img/photo/background.webp') !important;
  height: 420px !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  width: 100%;
  text-decoration: whitesmoke;
}
*/

/* Nouvelle règle avec vidéo */
#bandeaux {
  position: relative;
  height: 410px;
  margin-top: 5%;
  width: 100%;
  overflow: hidden;
}

#bandeaux video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1; 
}


/* Classes générales pour toutes les iframes */
.responsive-iframe-wrapper {
  position: relative;
  width: 100%;
  height: 100%; /* Hauteur verticale à 100% */
  overflow-x: auto; /* Défilement horizontal */
  margin-left: auto;
  margin-right: auto;
  padding-top: 56.25% !important; /* Ratio d'aspect 16:9 par défaut */
}

.responsive-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Hauteur verticale à 100% */
  border: 0;
}

/* Classe spécifique pour l'iframe  */
.runesGratuit {
  padding-top: 56.25% !important; /* Ratio d'aspect 16:9 par défaut */
}

/* Classe spécifique pour l'iframe des Runes */
.runesG {
  padding-top: 56.25% !important; /* Ratio d'aspect 16:9 par défaut */
  margin-left: 25% !important; /* Ajouter la marge gauche sur PC */
}

.runesGratuit iframe {
  height: 100% !important;
  width: 100% !important;
  border: 0 !important;
}

/* Ajustements spécifiques pour mobile */
@media (max-width: 768px) {

  .runesGratuit {
      padding-top: 200% !important; /* Changer le ratio d'aspect pour mobile */
      margin-left: -1% !important; /* Marge gauche de -1% sur mobile */      
  }

  .runesGratuit iframe {
      height: 70% !important;
      width: 99% !important;
      border: 0 !important;
  }
}

/* Ajustements spécifiques pour mobile iframe rune*/
@media (max-width: 768px) {

  .runesG {
      padding-top: 200% !important; /* Changer le ratio d'aspect pour mobile */
      margin-left: -7% !important; /* Marge gauche de -1% sur mobile */      
  }
}


.tab-pane.fade.show.active { 
  text-align: center; 
}

.responsive-iframe-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}


@media only screen and (max-width: 768px) {

  #bandeaux {
    padding-top: 50px;
    background-image: url(../assets/img/photo/tarot.jpg) !important;
    background-repeat: no-repeat;
    height: 700px;
    /* background-color: #ce9548; */
    text-decoration: whitesmoke;
  }

  ._strongPhone {
    font-weight: bold;
    color: white;
  }

  ._phone {
    border: #d78316, solid, 1px;
  }

  .carousel-control-prev-icon {

    margin-right: 0px;
  }

  .carousel-control-next-icon {

    margin-left: 0px;
  }
}

.titreIndex {
  font-size: 25px;
}

.crop-text-2 {
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

#p2{
  margin: 30px 0px 30px 0px ;
}

.floating-element {
  display: none;
}

.btn-fidelite {
color: #ff4081;
background-color: #fff;
border-color: #ff4081;
font-weight: bold;
text-transform: uppercase;
transition: all 0.3s ease;
box-shadow: 0 0 20px rgba(255, 64, 129, 0.5);
animation: pulsate 1.5s ease-in-out infinite;
}

.btn-fidelite:hover {
color: #fff;
background-color: #ff4081;
border-color: #ff4081;
}

@keyframes pulsate {
0%, 100% {
  box-shadow: 0 0 20px rgba(255, 64, 129, 0.5), 0 0 30px rgba(255, 64, 129, 0.5);
}
50% {
  box-shadow: 0 0 5px rgba(255, 64, 129, 0.5), 0 0 10px rgba(255, 64, 129, 0.5);
}
}


/* Base styling for the card */
.mb-4.pt-4 {
  background-color: transparent; /* No background */
  padding: 20px; /* Padding inside the card */
  text-align: center; /* Center-align content */
  transition: all 0.3s ease; /* Smooth hover effect */
  max-width: 300px; /* Limit card width for better readability */
  margin: 0 auto; /* Center the card horizontally */
}

/* Styling for the main text */
.display-5.fw-bold.text-dark {
  font-size: 1.75rem; /* Slightly larger font size */
  color: #ffffff; /* White text for contrast */
  margin-bottom: 8px; /* Space below the text */
  line-height: 1.2; /* Better line spacing */
  font-weight: 600; /* Bold font weight */
}

.prix-par-minute {
  margin-top: 40px;
  box-shadow: 0px 0px 10px gold;
  padding: 10px;
  border-radius: 5px;
}

.card {
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
}

.badge-success-animated {
  animation: glow 1.5s infinite alternate;
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.5); /* Ombre verte */
  transition: transform 0.3s ease-in-out;
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
  }
  100% {
    box-shadow: 0 0 10px rgba(40, 167, 69, 1);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .mb-4.pt-4 {
      padding: 15px; /* Smaller padding on smaller screens */
  }

  .display-5.fw-bold.text-dark {
      font-size: 1.5rem; /* Slightly smaller font size on mobile */
  }

  h6 {
      font-size: 0.85rem; /* Smaller font size on mobile */
  }
}

.logo-mobile {
  display: block; /* Afficher le logo seulement sur mobile */
}

@media (min-width: 768px) { 
  .logo-mobile {
      display: none; 
  }
}

.star {
width: 20px;
height: 20px;
background-color: gold;
clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
animation: float 2s ease-in-out infinite;
}

.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes float {
0%, 100% {
  transform: translateY(0) rotate(0deg);
}
50% {
  transform: translateY(-10px) rotate(360deg);
}
}
