
body {
  margin: 0px;
  padding: 0px;
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  height: 100%;
  line-height: 25px;
}
h1 {
  text-align: center;
  font-size: 25px;
  margin-top: 30px;
  color: #710681;
}
h2 {
  text-align: center;
  font-size: 25px;
  margin-top: 30px;
  color: #710681;
}
h3 {
  text-align: center;
  font-size: 25px;
  margin-top: 30px;
  color: #710681;
}
h4 {
  text-align: center;
  font-size: 25px;
  margin-top: 30px;
  color: #710681;
}
h5 {
  text-align: center;
  font-size: 25px;
  margin-top: 30px;
  color: #710681;
}
h6 {
  text-align: center;
  font-size: 25px;
  margin-top: 30px;
  color: #710681;
}
form {
  width: 80%;
  margin: 0 auto;
  padding: 30px;
  background-color: #f2f2f2;
  border-radius: 10px;
  box-shadow: 0 0 10px #710681;
}
form .asterisk {
  color: red;
}
label {
  display: block;
  margin-bottom: 10px;
  font-size: 18px;
}
input[type="text"],
input[type="email"],
input[type="date"] {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 2px ;
}
#birthdateError {
  margin-top: 10px;
}
fieldset {
  border: none;
  margin-top: 20px;
}
legend {
  font-size: 24px;
  margin-bottom: 20px;
}
#themes input[type="checkbox"] {
  display: inline-block;
  margin-right: 10px;
}
#price {
  font-size: 20px;
  margin-top: 20px;
  float: left;
  color: #f2f2f2;
}
button[type="submit"] {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  margin-top: 20px;
  border: none;
  border-radius: 5px;
  background-color: #967e07;
  color: #fff;
  cursor: pointer;
}
button:hover {
  background-color: #3e8e41; 
  }
#results {
  width: 80%;
  margin: 20px auto 0;
  padding: 30px;
  background-color: #f2f2f2;
  border-radius: 10px;
  box-shadow: 0 0 10px #710681;
  text-align: center;
}
#resultNumberContainer {
  margin-top: 20px;
  margin-bottom: 30px;
  text-align: center;
}
#resultNumber {
  width: 20%;
  padding: 10px;
  font-size: 18px;
  background-color: #fff;
  margin-bottom: 20px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 5px #fff;
}
#themeContent {
  width: 80%;
  margin: 20px auto 0;
  height: 202px;
  background-color: #f2f2f2;
  border-radius: 10px;
  box-shadow: 0 0 10px #710681;
  text-align: center;
}
#themes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#themes input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  align-self: center;
}
@media (max-width: 767px) {
  #themes {
    flex-direction: column;
    align-items: center;
  }
}
 /* passer le site d'un mode vertical à horizontal */
@media screen and (max-width: 600px) {
  .container {
    flex-direction: column;
  }
}
/* HEADER */
header {
  background-color: #f2f2f2;
  padding: 0px 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo-container {
  display: flex;
  align-items: center;
}
.logo {
  width: 250px;
  height: 100px;
}
nav {
  display: flex;
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f2f2f2;
  color: #967e07;
  text-decoration: none;
  border-radius: 4px;
  padding: 5px 10px;
  margin-left: 10px;
  transition: 0.3s;
}
/* Styles pour les écrans plus étroits (par exemple, mobile) avec le menu déroulant*/
@media only screen and (max-width: 600px) {
  .nav-links{
    flex-direction: column; /* Affichez les liens en colonne sur les écrans plus étroits */
    align-items: center; /* Centrez les éléments horizontalement sur l'écran */
  }
  #language {
    margin: 10px auto; /* Centrez horizontalement et ajoutez un peu d'espace autour */
  }
}
.btn-text {
  display: inline-block;
}
.nav-link:hover {
  background-color: #f2f2f2;
  color: #710681;
  text-decoration: underline;
}
.hamburger {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.bar {
  display: block;
  background-color: #333;
  width: 25px;
  height: 3px;
  margin: 5px 0;
}
@media (max-width: 768px) {
  .logo-hamburger-container .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hamburger {
    display: block;
    margin-bottom: 10px;
  }
  .hamburger.open .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open .bar:first-child {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.open .bar:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  .nav-link {
    margin: 5px;
  }
  .nav-links.active {
    display: flex;
  }
  h1, h2, h3, h4, h5, h6 {
    line-height: 1.0;
  }
}
    /*Eugenie et Description */
.header-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 50px;
}
.header-right {
  width: 70%;
}
.header-right h1 {
  padding-bottom: 5px;
  text-align: center;
  font-size: 25px;
  color: #710681;
}
.header-right p {
  font-size: 18px;
  text-align: justify;
  margin: 10px;
  color: #333;
}
.header-left
 {
  width: 22%;
  margin: 10px;
}
.header-left img {
  width: 95%;
  height: auto;
}
@media (max-width: 767px) {
  .header-left,
  .header-right {
    width: 100%;
    text-align: justify;
  }
}
/* véritable destin EUGENIE*/
.destin h2 {
  padding-bottom: 10px;
  margin-top: 70px;
  text-align: center;
  font-size: 25px;
  color: #710681;
}
.destin h3 {
  margin-top: 80px;
  padding-bottom: 5px;
  text-align: center;
  font-size: 25px;
  color: #710681;
}
  .destin p {
    font-size: 18px;
    text-align: justify;
    margin: 10px;
    color: #333;
    line-height: 25px;
} 
/* Footer styles */
footer {
  background-color: #f2f2f2;
  padding: 20px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-links, .social-links {
  display: flex;
  list-style: none;
}
.footer-links a, .social-links a {
  color: #967e07;
  text-decoration: none;
  margin-right: 10px;
  transition: 0.3s;
}
.footer-links a:hover, .social-links a:hover {
  color: #710681;
  text-decoration: underline;
}
/* Media query for small screens */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
  }
  .social-links {
    margin-top: 20px;
  }
}
/* Séparateur */
.separator {
  width: 50%;
  margin: 0 auto;
  border: 1px solid #ccc;
  margin-top: 80px;
}
/* Tableau CONTACT */
table {
  width: 70%;
  margin: 0 auto;
  border-collapse: collapse;
  text-align: center;
}
th {
  background-color: #f2f2f2;
  border: 1px solid #ddd;
  padding: 8px;
}
td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 8px;
}
@media only screen and (max-width: 600px) {
  table,
  td,
  th {
    display: block;
    text-align: center;
  }
}
/* FACs Tableau*/
table {
  border-collapse: collapse;
}
td {
  padding: 10px;
  text-align: justify;
}
/* FACs flèche pointant vers le bas*/
.arrow-down {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 30px solid #967e07;
  margin: 0 auto;
}
/* BOUTON ACHAT bas page INDEX */
.container {
  display: flex;
  justify-content: center;
}
.rounded-button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background-color: #967e07;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.rounded-button:hover {
  background-color: #3e8e41;
}
/*  Image effet Paralaxe page article*/
section {
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
     }
.image {
  background-image: url("image/numerologue-eugenie-aimy.jpg");
}     
/* image disparaît sur petit écran */
@media only screen and (max-width: 767px) {
  .image {
    display: none;
  }
}
/* Bandeau cookies */
#cookie-banner {
  background-color: #f1f1f1;
  border-top: 1px solid #ccc;
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.cookie-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.cookie-banner-content p {
  margin: 0;
  padding-right: 10px;
}
#accept-cookies {
  background-color: #4CAF50;
  border: none;
  border-radius: 2px;
  color: white;
  cursor: pointer;
  font-size: 14px;
  padding: 5px 10px;
}
#accept-cookies:hover {
  background-color: #45a049;
}
 /* Mailchimp Styles de base */
 .form-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  margin: 0 auto;
}
 #mc_embed_signup {
  background: #f2f2f2;
  font: 14px Helvetica, Arial, sans-serif;
  padding: 20px;
  box-sizing: border-box;
  width: 100%;
}
#mc_embed_signup input[type="email"],
#mc_embed_signup input[type="text"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
}
#mc_embed_signup .button {
  width: 60%;
  background-color: #967e07;
  color: #fff;
  padding: 10px 20px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 5px;
}
#mc-embedded-subscribe:hover {
background-color: #3e8e41; 
}
#mc_embed_signup .asterisk {
  color: red;
}
#mc_embed_signup .helper_text {
  font-size: 12px;
  color: #999;
}
#mc_embed_signup .indicates-required {
  font-size: 12px;
  color: #999;
}
/* Styles responsives */
@media (max-width: 767px) {
  #mc_embed_signup {
      padding: 10px;
  }
  #mc_embed_signup .button {
      width: 100%;
  }
}
/* centrage horizontal du bouton */
#mc_embed_signup .optionalParent {
text-align: center; 
}
/* Transition plus douce */
.smooth-transition {
  transition: all 0.3s ease;
}
/* Message d'envoie du Formulaire */
#message-container {
  text-align: center; /* Centre le texte dans le conteneur */
  margin-top: 20px; /* Ajoute un espace au-dessus du message */
}
