/* --- FONTS --- */
@font-face {
  font-family: 'Dancing Script';
  src: url('polices/DancingScript-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Dancing Script';
  src: url('polices/DancingScript-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Rock Salt';
  src: url('polices/RockSalt-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* --- VARIABLES --- */
:root {
  --cuivre-foncé: #733d1a;
  --cuivre-clair: #b87333;
  --or-clair: #ffd700;
  --gris-foncé: #2e2e2e;
}

/* --- BODY & FOND --- */
body {
  margin: 0;
  color: #fff;
  font-family: "Poppins", cursive, sans-serif;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url('images/fond.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* --- BLOC TEXTE --- */
.bloc-texte {
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e0dad5;
  max-width: 90%;
  margin: 20px auto;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* --- BANNIÈRE --- */
.header-content {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeZoomIn 1.8s ease-out forwards;
  background: rgba(0, 0, 0, 0.5);
}

@keyframes fadeZoomIn {
  from { opacity: 0; transform: scale(1.1); }
  to { opacity: 1; transform: scale(1); }
}

.banner-overlay {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-align: center;
  z-index: 2;
}

.banner-text {
  color: var(--cuivre-clair);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  animation: fadeZoomIn 2s ease-out forwards;
}

.banner-text h1 {
  font-size: 8rem;
  font-weight: 70px;
  font-family: 'Rock Salt', 'Dancing Script', cursive;
  margin: 0;
  letter-spacing: 2px;
}

.banner-text h2 {
  font-family: 'Rock Salt','Dancing Script', cursive;
  font-size: 1.5rem;
  font-weight: 5rem;
  margin-top: 0px;
  color: var(--or-clair);
}

.banner-symbol img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
  opacity: 0.9;
  transition: transform 0.6s ease;
}

.banner-symbol img:hover {
  transform: scale(1.1);
}

/* --- RESPONSIVE BANNIÈRE --- */
@media (max-width: 768px) {
  .banner-overlay {
    flex-direction: column;
    gap: 15px;
  }

  .banner-symbol img {
    width: 80px;
    height: 80px;
  }

  .banner-text h1 {
    font-size: 2.5rem;
  }

  .banner-text h2 {
    font-size: 1rem;
  }
}

/* --- NAVBAR --- */
.navbar {
  position: sticky;
  top: 0px;
  background: linear-gradient(120deg, #2c1d16, #b87333, #2c1d16);
  display: flex;
  justify-content: center;
  padding: 15px 0;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.navbar a:hover,
.navbar a.active {
  color: var(--or-clair);
  text-shadow: 0 0 10px var(--or-clair);
}

/* --- SECTIONS --- */
section {
  padding: 100px 20px;
  margin-bottom: 50px;
}

#quisuisje .section-content {
  display: flex;
  flex-direction: row-reverse;
}

.section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  gap: 80px;
}

/* --- SECTION À PROPOS (PARALLAX) --- */
.parallax-apropos {
  position: relative;
  background-image: url('images/photo1.jpeg');
  background-size: cover;
  background-repeat: repeat;
  background-attachment: fixed; /* parallax classique */
  background-position: center center; /* centre l'image au départ */
  padding: 120px 20px 80px;
  overflow: hidden;
}
overflow: hidden;
}

.parallax-apropos::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.parallax-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: auto;
}



.parallax-apropos h2 {
  color: var(--or-clair);
  font-size: 3rem;
  font-family: 'Rock Salt','Dancing Script', cursive;
  margin-bottom: 20px;
}

.text-below p {
  color: #fff;
  font-size: 3rem;
}

/* --- IMAGES --- */
.image-left img,
.image-right img {
  width: 100%;
  max-width: 720px;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.25);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.image-left img:hover,
.image-right img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgba(255, 215, 0, 0.4);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .section-content,
  .section-content.inverse {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .image-left img,
  .image-right img {
    max-width: 100%;
    height: auto;
  }
}


/* --- FADE ANIMATION --- */
.fade-section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 2s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- INTRODUCTION --- */

#intro {
  background-color: black;
  opacity: 70%;	

}

/* --- LES SÉANCES --- */
.seances-grid {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.vignettes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 80px;
  margin-top: 50px;
  width: 100%;
  max-width: 1000px;
}

.vignette {
  background: linear-gradient(145deg, rgba(184,115,51,0.3), rgba(115,61,26,0.3));
  padding: 25px;
  border-radius: 14px;
  border: 1px solid rgba(255,215,0,0.25);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.15);
  transition: all 0.3s ease;
}

.vignette:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.vignette img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}


/* --- CONTACT --- */
.contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}

.contact-form {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 25px rgba(255,215,0,0.15);
  max-width: 600px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--or-clair);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.contact-form button {
  padding: 12px 20px;
  background: linear-gradient(90deg, var(--or-clair), var(--cuivre-clair));
  border: none;
  border-radius: 8px;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #fff176, var(--or-clair));
}
.calendly-container {
  justify-content: center;
  align-items: center;
}

.calendly-container .calendly-inline-widget {
  width: 100% !important;    /* prend toute la largeur du conteneur */
  height: 750px;
}
/* --- FOOTER --- */
footer {
  background: linear-gradient(90deg, #2e2e2e, #733d1a);
  border-top: 1px solid #b87333;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #ffd700;
}

footer a {
  color: #ffd700;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* --- RESEAUX SOCIAUX --- */ 
.reseaux {
  background: rgba(46, 46, 46, 0.85);
  padding: 40px 20px;
  text-align: center;
}

.reseaux-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}

.reseau-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--or-clair);
  font-weight: bold;
  transition: transform 0.3s ease, color 0.3s ease;
}

.reseau-item img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.reseau-item:hover {
  transform: scale(1.1);
  color: #fff176;
}



/* -------- NAVBAR -------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(120deg, #2c1d16, #b87333, #2c1d16);
  padding: 10px 0;
}

/* Container */
.nav-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  color: #ffd700;
  font-family: "Rock Salt";
  font-size: 1.4rem;
}

/* Liens */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* ------ HAMBURGER ------ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #ffd700;
  transition: 0.3s;
}

/* ----- VERSION MOBILE ----- */
@media (max-width: 850px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 20px;
    background: rgba(44, 29, 22, 0.98);
    padding: 30px 0;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-links.open {
    max-height: 600px;
  }
}

/* Animation burger */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================
   SECTION TARIFS — 2 COLONNES
   ============================ */

/* Neutralise le flex hérité dans cette section */
#tarifs .section-content {
  display: block !important;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

/* Grille à 2 colonnes */
#tarifs .vignettes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 40px auto;
  justify-items: center;     /* centre chaque vignette dans sa colonne */
}

/* Vignettes standards */
#tarifs .vignette {
  background: #ffffff10;
  border: 1px solid #ffffff30;
  border-radius: 12px;
  padding: 0 25px 25px 25px; /* plus de padding en haut */
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

/* Images */
#tarifs .vignette img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin-bottom: 20px; /* espace sous l’image */
}

/* Responsive mobile */
@media (max-width: 900px) {
  #tarifs .vignettes {
    grid-template-columns: 1fr;  /* une vignette par ligne */
  }

  #tarifs .vignette.grande {
    grid-column: 1;
  }
}


/* --- CONTACT LAYOUT FIX --- */

/* PC et tablettes larges */
.contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}

/* Formulaire et Calendly même largeur */
.contact-form,
.calendly-container {
  flex: 1;                    /* prend la même largeur */
  max-width: 600px;            /* limite pour PC */
  min-width: 300px;
}

/* Calendly widget */
.calendly-container {
  display: flex;               /* permet centrage interne si nécessaire */
  justify-content: center;
  align-items: flex-start;
}

.calendly-container .calendly-inline-widget {
  width: 100% !important;      /* prend toute la largeur du container */
  height: 750px !important;
}

/* --- MOBILE --- */
@media (max-width: 900px) {
  .contact-layout {
    flex-direction: column;     /* empile les éléments */
    align-items: center;        /* centre horizontalement */
    gap: 30px;
  }

  .contact-form,
  .calendly-container {
    max-width: 100%;           /* prennent toute la largeur possible */
    width: 90%;                /* petit padding intérieur pour éviter les bords */
  }

  .calendly-container {
    justify-content: center;   /* centre le widget Calendly */
  }

  .calendly-container .calendly-inline-widget {
    width: 100% !important;
    height: 650px !important;  /* hauteur adaptée pour mobile */
  }
}
/* CENTRER LE H1 DANS LA SECTION CONTACT */
#contact .text-below {
  text-align: center;
  margin-bottom: 40px; /* optionnel, pour espacer du formulaire */
}

#contact .text-below h1 {
  margin: 0;
  font-family: 'Rock Salt', cursive;
  font-size: 3rem; /* adapte selon ton besoin */
  color: #fff;
}





