@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Playfair Display", serif;
}
:root {
  --beige: #fbc586;
  --grey: #5c5c5c;
  --turquoise: #49c9cb;
  --marron: #3d1907;
  --fondbeige: rgb(253, 223, 188);
  --fond-btn: #fddfbc;
  --base-color: #03bbf3;
  --gray-color: #8f8f88;
  --second-color: #23242a;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
#content {
  flex-grow: 1;
}
h1 {
  font-size: 3vw;
  margin: 0;
}
.famille {
  color: var(--grey);
  font-size: 20px;
}
img {
  cursor: pointer;
  transition: filter o.5s;
}
.cards-img:hover {
  filter: brightness(50%);
}
h3 {
  color: var(--grey);
  font-weight: bold;
  font-style: italic;
  text-align: center;
  padding-bottom: 10px;
}
/* section navigation page index et principale avec contact*/
.cc-navbar {
  background-color: rgba(61, 25, 7, 0.9);
  height: 5%;
}
.nav-link {
  color: var(--beige);
  font-size: 1.5rem;
  font-style: italic;
  border-bottom: 1px solid transparent;
  transition:
    padding-bottom 0.4s ease-in-out,
    border-color 0.3s ease;
}
.nav-link:hover {
  color: var(--turquoise);
  padding-bottom: 20px;
  border-bottom-color: var(--turquoise);
}
.cc-form {
  border-color: var(--beige);
}
.cc-form:focus,
.cc-form:active {
  border-color: var(--beige);
  box-shadow: none;
}
.cc-btn {
  color: var(--beige);
  border-color: var(--beige);
}
.fa-index {
  color: var(--beige) !important;
}
.fa-xmark {
  color: var(--beige);
}
.cc-btn:hover {
  color: var(--turquoise);
  border-color: var(--turquoise);
}
.cc-burger {
  color: var(--beige);
  border-color: var(--turquoise);
}
.offcanvas {
  background-color: var(--marron);
  bottom: o !important;
}

/* section banner */
.banner {
  background:
    linear-gradient(rgba(231, 227, 225, 0.5), rgba(231, 227, 225, 0.5)),
    url("/images/fond_pages/Flou-bobine.jpg") top center fixed no-repeat;
  background-size: cover;
  height: 900px;
}
#anniv {
  margin-top: 35px;
}
/* texte anime */
.texte-anime {
  animation: descendre 1s ease-out forwards;
  opacity: 0;
}
@keyframes descendre {
  0% {
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.banner .banner-bienvenue {
  font-size: 42px;
  color: #5c5c5c;
  font-weight: 600;
  font-style: italic;
  text-align: center;
}
.banner .banner-bienvenue:hover {
  color: #3d1907;
  cursor: pointer;
}
.titre-lien {
  text-decoration: none;
  color: inherit;
}
.row-bienvenue {
  margin-top: 90px;
  margin-bottom: 50px;
  height: 150px;
}
.raw-ecart {
  height: 150px;
}

/* section presentation de nous page index */
.nous-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 750px;
  background-color: rgba(253, 223, 188, 0.5);
}
.btn-savoir {
  background-color: #3d1907;
  color: #fbc586;
  border-bottom: 1px solid transparent;
  transition:
    padding-bottom 0.4s ease-in-out,
    border-color 0.3s ease;
}
.btn-savoir:hover {
  color: #49c9cb;
  border-bottom-color: #49c9cb;
  padding-bottom: 20px;
}
.img-box {
  overflow: hidden;
}
.img-box img {
  transition: 0.2s ease;
}
.img-box:hover img {
  transform: scale(1.2);
}
/* section carte [age index */
.card-page {
  background-color: #3d1907;
}
.text-page {
  color: #fbc586;
  text-align: center;
}
.text-page:hover {
  color: #49c9cb;
}
.card-fond {
  background-color: #3d1907;
}

/* section footer Fond Marron */
.text-footer {
  color: var(--beige);
}
.c-copyright {
  color: var(--beige);
  font-style: italic;
}
.cc-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  height: 5%;
  background-color: var(--marron);
}
.foot-logo {
  display: flex;
  flex-direction: column ;
  align-items: center;
  padding: 20px;
}
footer .links {
  display: flex;
}
footer .links p {
  margin-right: 20px;
  color: var(--beige);
  border-bottom: 1px solid transparent;
  transition: 
    padding-bottom 0.4s ease-in-out,
    border-color 0.3s ease;
  cursor: pointer;
}
footer .links p a {
  text-decoration: none;
  color: var(--beige);
  font-size: 1.3em;
}
footer .links p a:hover {
  color: var(--turquoise);
  text-decoration: underline;
}
.foot-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* bouton qui remonte beige fond marron */
.rem-marron {
  font-weight: 600;
  background-color: rgba(253, 223, 188, 0.5);
}
.marron {
  color: var(--marron);
}
.marron:hover {
  color: #49c9cb;
} 

/* footer blanc transparent */
.footer-blanc {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  height: 5%;
  background-color: transparent !important;
}
.foot-blanc {
  color: white !important;
}
.foot-blanc:hover {
  color: var(--turquoise) ;
}


/* section formulaire de contact */
.b-contact {
  background: url("/images/photo_libre/appareil_photo_rose.jpg") center center fixed
  no-repeat;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.f-contact {
  flex: 1; /* Très important : il occupe tout l'espace vide et pousse le footer en bas */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;  /* Ajoute un peu d'air au-dessus et en dessous */
  font-weight: bold;
}
.f-contact {
  margin-top: 30px;
}
.f-contact form {
  padding: 30px;
   background-color: #fef1df;
   border-radius: 10px;
}
.separation {
  width: 100%;
  height: 1px;
  background-color: var(--marron);
}
.corps-formulaire {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.corps-formulaire .groupe {
  position: relative; /* Pour mettre positionner l’élément dans le flux normal de la page */
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.corps-formulaire .gauche .groupe input {
  margin-top: 5px;
  padding: 12px 10px 12px 35px;
  border: 1px solid #c9c9c9;
  outline-color: var(--marron);
  border-radius: 5px;
  font-size: 14px;
}
.corps-formulaire .gauche .groupe i {
  position: absolute; /* positionné par rapport à son parent le plus proche positionné */
  left: 12px;
  top: 46px;
  font-size: 14px;
  color: var(--marron);
  pointer-events: none;
}
/* Espacement du label */
.corps-formulaire .groupe label {
  margin-bottom: 5px;
  font-size: 0.9rem;
}
.corps-formulaire .droite {
  margin-left: 40px;
}
.corps-formulaire .droite .groupe {
  height: 100%;
}
.corps-formulaire .droite .groupe textarea {
  margin-top: 5px;
  padding: 12px;
  background-color: #f1f1f1;
  border: 2px solid var(--marron);
  outline: none;
  border-radius: 5px;
  resize: none;
  height: 72%;
}
.pied-formulaire button {
  margin-top: 10px;
  background-color: var(--marron);
  color: var(--beige);
  font-size: 15px;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: transform 0.5s;
}
.pied-formulaire button:hover {
  transform: scale(1.05);
  background-color: transparent;
  color: var(--turquoise);
}
/* Animation d'apparition en douceur */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.effet-fondu {
    animation: fadeIn 0.6s ease-out forwards;
}

/* section page about */
.about-bg {
  background: url("../images/photo_libre/livre_ancien.jpg") center center fixed
    no-repeat;
  background-size: cover;
  min-height: 100vh;
}
.p-propos {
  color: white;
}
.c-propos {
  color: white;
  border-left: solid 5px;
  padding-left: 10px;
  height: 100%;
}
.texte-zoom {
  display: inline-block; /* Nécessaire pour la transformation */
  transition: transform 0.3s ease; /* Fluidité de l'animation */
  font-size: 20px;
}
.texte-zoom:hover {
  transform: scale(1.2); /* Agrandit le texte de 20% */
}
.jardin {
  border-bottom-left-radius: 25px;
  border-top-right-radius: 25px;
  border-color: white;
  width: 80%;
  margin-left: 50px;
}
.c-vie {
  color: white;
  border-right: solid 5px;
  padding-left: 30px;
  height: 100%;
  padding-right: 15px;
}
.alya {
  position: relative;
  width: 700px;
  height: 420px;
}
.img-base {
  border-radius: 30px;
}
.img-hover {
  border-radius: 30px;
}
.alya img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-in-out;
}
.img-hover {
  opacity: 0;
}
.alya:hover .img-hover {
  opacity: 1;
}
.alya:hover .img-base {
  opacity: 0;
}
.nos {
  height: 300px;
}

/* section page jardin */
.btn-photo {
  text-decoration: none;
  color: #fbc586;
}
.btn-photo:hover {
  color: #49c9cb;
}
.carousel {
  height: 100vh;
  background-color: rgba(253, 223, 188, 0.5);
  justify-content: center;
  display: flex;
  align-items: center;
}
.carousel-inner {
  width: 70%;
  height: 70vh;
  display: flex;
  align-items: center;
}
.carousel-caption {
  color: white;
  width: 20%;
  left: 0;
  margin-bottom: 30px;
  padding: 5px;
  text-align: center;
}
.carousel-indicators {
  margin-bottom: 110px;
}
.carousel-indicators [data-bs-target] {
  background-color: #3d1907;
}
.carousel-indicators [data-bs-target]:hover {
  background-color: #49c9cb;
}
.fleche {
  font-size: 3rem;
  color: #3d1907;
}
.fleche:hover {
  color: #49c9cb;
}



/* section page choix videos */
.choix {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.f-nav {
  background: transparent;
  margin-bottom: 50px;
}

/* carousel3d */
.cc-body {
  margin: 0;
  background-image: url("../images/fond_pages/filmnegflou.jpg") center center no-repeat fixed;
  height: 100vh;
  background-size: cover;
  overflow: hidden;
}
.film {
  margin-top: 10px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
  color: #777777;
}
.slideshow2 {
  margin: 0 auto;
  padding-top: 45px;
  height: 450px;
  perspective: 1500px;
}
.content2 {
  width: 150px;
  perspective: 1500px;
  position: relative;
  transform-style: preserve-3d;
}
.roue1 {
  margin-left: 400px;
}
.roue2 {
  margin-left: 950px;
}
.slider-content2 {
  width: 100%;
  position: absolute;
  float: right;
  animation: rotate 15s infinite linear;
  transform-style: preserve-3d;
}
.slider-content2:hover {
  cursor: pointer;
  animation-play-state: paused;
}
.slider-content2 figure {
  width: 180px;
  height: 100px;
  border: 2px solid #555;
  overflow: hidden;
  position: absolute;
}
.slider-content2 figure:nth-child(1) {
  transform: rotateY(0deg) translateZ(300px);
}
.slider-content2 figure:nth-child(2) {
  transform: rotateY(40deg) translateZ(300px);
}
.slider-content2 figure:nth-child(3) {
  transform: rotateY(80deg) translateZ(300px);
}
.slider-content2 figure:nth-child(4) {
  transform: rotateY(120deg) translateZ(300px);
}
.slider-content2 figure:nth-child(5) {
  transform: rotateY(160deg) translateZ(300px);
}
.slider-content2 figure:nth-child(6) {
  transform: rotateY(200deg) translateZ(300px);
}
.slider-content2 figure:nth-child(7) {
  transform: rotateY(240deg) translateZ(300px);
}
.slider-content2 figure:nth-child(8) {
  transform: rotateY(280deg) translateZ(300px);
}
.slider-content2 figure:nth-child(9) {
  transform: rotateY(320deg) translateZ(300px);
}
.shadow {
  position: absolute;
  box-shadow: 0px 0px 0px #000;
}
.slider-content2 img {
  image-rendering: auto;
  transition: all 300ms;
  width: 100%;
  height: 100%;
}
.slider-content2 img:hover {
  transform: scale(1.2);
  transition: all 300ms;
}
@keyframes rotate {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

/* section bouton remonte haut page */
.remonter {
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  transition: opacity 0.5s ease;
  z-index: 99;
  visibility: hidden;
}
.monter {
  width: 50px;
}

/* page-galerie */
.gal-bg {
  background-image: url("../images/photo_libre/appareil_photo.jpg");
  background-size: cover;
  height: 100vh;
  margin: 0;
}
.gal-logo {
  margin-bottom: 50px;
  margin-top: 30px;
}
section {
  width: 100%;
}
.images-gallery {
  display: flex;
  flex-wrap: wrap;
}
.column img {
  width: 100%;
}
.column {
  width: 25%;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.column div {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.pied {
  background-color: transparent;
}

/* section cadre qui bouge */
.contfig {
  margin-top: 50px;
  flex: 1;
}
.wave {
  float: left;
  margin: 20px;
  animation: wave ease-in-out 0.5s infinite alternate;
  transform-origin: center -36px;
}
.wave:hover {
  animation-play-state: paused;
  cursor: pointer;
}
.wave img {
  border: 5px solid grey;
  display: block;
  width: 200px;
  height: 250px;
}
.wave a {
  text-decoration: none;
  color: #5c5c5c;
}
.wave figcaption {
  text-align: center;
}
.wave figcaption:hover {
  color: #49c9cb;
}
.wave:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1.5px solid black;
  top: -10px;
  left: 50%;
  border-bottom: none;
  border-right: none;
  transform: rotate(35deg);
}
.wave:before {
  content: "";
  position: absolute;
  top: -23px;
  left: 50%;
  display: block;
  height: 44px;
  width: 47px;
  background-image: url("https://cdn.hashnode.com/res/hashnode/image/upload/v1602040503586/FW6g79WBY.png");
  background-size: 20px 20px;
  background-repeat: no-repeat;
  z-index: 16;
}
@keyframes wave {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
.f-gris {
  color: var(--grey);
}
.footer-gris {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  height: 5%;
  background-color: transparent;
}
.foot-gris {
  color: var(--grey) !important;
}
.foot-gris:hover {
  color: var(--turquoise) !important;
}

/* section Page Nature animaux choix */
.col-nature {
  padding: 20px;
}
.cb-nature a {
  color: #fbc586;
  text-decoration: none;
  cursor: pointer;
}
.cb-nature a:hover {
  color: #49c9cb;
}
.card-nature {
  width: 100%;
  overflow: hidden;
  background-color: #3d1907;
  border-radius: 20px;
  border: none;
}
.hover-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  object-fit: cover;
  transition: opacity 0.5s ease-in-out; /* Effet fluide [6] */
}
.hover-container .img-hover {
  opacity: 0; /* Cachée par défaut */
}
.hover-container:hover .img-base {
  opacity: 0; /* Masque l'image 1 au survol */
}
.hover-container:hover .img-hover {
  opacity: 1; /* Affiche l'image 2 au survol [6] */
}

/* page galerie animaux en plus de lightbox.css */
.gal-light img {
  width: 250px;
  height: 250px;
  margin: 10px;
  transition-duration: 2s;
  border-radius: 10px;
}
.gal-img:hover {
  transform: scale(1.2);
}
.cont-gal {
  background-color: #fddfbc;
  min-height: 100vh;
}
.gal-light {
  min-height: 100vh;
  flex-wrap: wrap;
}

/* Page recettes */
.recette {
  font-style: italic;
  color: #fbc586;
  padding-right: 160px;
}
.sect-recette {
  background: url("../images/photo_libre/orange_noisettes.jpg") center center
    fixed no-repeat;
  background-size: cover;
  height: 100vh;
  margin: 0;
}
.appt {
  justify-content: center;
}
.appt img {
  width: 30%;
  border-radius: 30px;
  text-align: center;
}
.cuisine {
  width: 20%;
  border-radius: 20px;
  margin-left: 70px;
}
.toque {
  width: 35%;
  border-radius: 30px;
}
.rect {
  justify-content: space-between;
}
.rec-cart {
  background: #fbc586;
  border-radius: 20px;
  border: 8px solid #5c5c5c;
  width: 60%;
  margin-left: 100px;
}
.tt {
  font-style: italic;
  text-decoration: underline;
}
.ecart {
  height: 25px;
}

/* Page accés sécurisé en php */
.bod-connect {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color: rgba(151, 149, 147, 0.5);
  font-family: "Roboto", sans-serif;
  min-height: 100vh;
}
.form-connect {
  margin-top: 20px;
  background-color: #ffff;
  padding: 40px 60px;
  border-radius: 20px;
  min-width: 300px;
}
.secur {
  font-size: 20px;
  text-align: center;
  padding: 10px;
}
.input-connect {
  display: flex;
  flex-direction: column;
}
input{
  width: 90%;
}
.input-connect input[type="text"],
input[type="password"] {
  padding: 15px;
  border: none;
  border-radius: 10px;
  background-color: #f2f2f2;
  outline: none;
  margin-bottom: 15px;
}
.form-connect button {
  padding: 15px 25px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  outline: none;
  cursor: pointer;
}

/* navBar bouton gris hover blanc ecriture blanche */
header {
  position: absolute;
  width: 100%;
  height: 8vh;
  top: 0; 
  left: 0;
  background: transparent;
  padding: 0 2rem;
}
.nav-gris {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 15px;
}
.logo {
  font-size: 2rem;
  padding: 10px;
}
.toggle {
  display: none;
}
.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  width: 550px;
  margin: 0 10px;
  padding: 10px;
}
.btn-marron {
  background-color: var(--fond-btn);
  color: var(--marron);
  font-weight: bold;
}
.btn-marron:hover {
  background-color: var(--fond-btn);
  color: var(--turquoise);
}

.menu-blanc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  width: 550px;
  margin: 0 10px;
  padding: 10px;
}
.menu-blanc .btn-secondary {
  --bs-btn-hover-color: #49c9cb !important;
  --bs-btn-hover-bg: white !important;
}
.fa-blanc {
  color: #fff;
}

/* Page BM Raphael */
.b-bm-raph {
  background: url("../images/fond_pages/raphaelBm.JPG") center center fixed
    no-repeat;
  background-origin: content-box;
}
.bm-a {
  position: relative;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  width: 200px;
  overflow: hidden;
  border-radius: 10px;
}
.bm-a span {
  position: relative;
  color: #fbc586;
  font-size: 20px;
  font-family: Roboto Sans;
  letter-spacing: 0px;
  z-index: 1;
}
.bm-a:hover {
  color: #47220f;
}
.bm-a .liquid {
  position: absolute;
  top: -80px;
  left: 0;
  width: 200px;
  height: 200px;
  background: #3d1907;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}
.bm-a .liquid::after,
.bm-a .liquid::before {
  content: "";
  width: 200%;
  height: 200%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -75%);
  background: #933b11;
}
.bm-a .liquid::before {
  border-radius: 45%;
  background: rgba(165, 42, 42, 1);
  animation: animate 5s linear infinite;
}
.bm-a .liquid::after {
  border-radius: 40%;
  background: rgba(139, 69, 19, 0.5);
  animation: animate 10s linear infinite;
}
.bm-a:hover .liquid {
  top: -120px;
}
@keyframes animate {
  0% {
    transform: translate(-50%, -75%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -75%) rotate(360deg);
  }
}
.video-container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
}
.video-item {
  flex: 1;
  text-align: center;
}
.bm-row {
  display: flex;
  margin-top: 150px;
  margin-bottom: 350px;
  flex-direction: row;
}
.bm-col {
  padding-left: 2rem;
  padding-right: 2rem;
  flex-direction: column;
  padding-top: 20px;
}
.bm-col video {
  width: 100%;
  height: auto;
}
.p-bm {
  color: #fbc586;
  font-style: italic;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  margin-top: 50px;
  padding: 20px;
}

/* Page BM Naor */
.b-bm-naor {
  background: url("../images/photo_libre/barmitsva.jpg") center center fixed
    no-repeat;
  background-size: cover;
}
.p-bm-naor {
  color: #fff;
  font-style: italic;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  margin-top: 50px;
  padding: 20px;
}
.f-naor {
  background-color: transparent;
}
.a-naor {
  color: #fff;
}
.naor-cop {
  color: #fff;
}

/* Page bm ron */
.b-bm-ron {
  background: url("../images/fond_pages/ronnb.jpg") center center fixed
    no-repeat;
  background-size: cover;
}
.p-nm {
  color: #5c5c5c;
  font-style: italic;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  margin-top: 50px;
  padding: 20px;
}
/* Page de notre mariage */
.b-notremariage {
  background: url("../images/fond_pages/voilemariage.jpg") center center fixed
    no-repeat;
  background-size: cover;
  background-position: top;
}
.nm-cop,
.a-nm {
  color: #5c5c5c;
}
.btn-mariage {
  font-weight: 600;
  background-color: #d3d0d0;
}
.mariage {
  color: #575555;
}
.mariage:hover {
  color: #49c9cb;
}

/* Page Alyah */
.p1 {
  height: 100%;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.h5-alyah {
  color: #fbc586;
  font-style: italic;
  text-align: center;
}
.c-c-alyah {
  width: 100%;
  margin-bottom: 0;
}
.h5-alyah-2 {
  color: #3d1907;
  font-style: italic;
}
.h5-alyah-3 {
  color: #fbc586;
  font-style: italic;
  text-align: center;
  margin-left: 180px;
}

/* Page Henne Charlotte */
.b-henne {
  background: url("../images/fond_pages/henneCharlotte.JPG") center center fixed
    no-repeat;
  background-size: cover;
}
.footm {
  color: white;
}
.footm:hover {
  color: var(--marron) !important;
}

/* Page mariage Emma et Jonathan */
.b-emma {
  background: url("../images/fond_pages/alliancefleurs.jpg") center center fixed
    no-repeat;
  background-size: cover;
}
.p-emma {
  color: #47220f;
  font-style: italic;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  margin-top: 50px;
  padding: 20px;
}

/* Page Galerie des mariés */
.a-maries {
  color: #3d1907;
}
.maries-cop {
  color: #3d1907;
}
.cont-maries {
  min-height: 100vh;
}

/* Page mes Parents en israel */
.b-parent {
  background: url("../images/photo_libre/plume.jpg") center center fixed
    no-repeat;
  background-size: cover;
}
.p-parent {
  color: #933b11;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  margin-top: 30px;
  padding: 20px;
}
.f-naor {
  background-color: transparent;
}
.a-parent {
  color: #3d1907;
}
.cop-parent {
  color: #3d1907;
}

/* Page Espagne*/
.b-espagne {
  background: url("../images/fond_pages/Tossa2.jpeg") center center fixed
    no-repeat;
  background-size: cover;
}
.btn-espagne {
  font-weight: 600;
  background-color: #777777;
}
.espagne {
  color: #fff;
}
.espagne:hover {
  color: #49c9cb;
}

/* Page juan les Pins */
.b-juan {
  background: url("../images/fond_pages/textmarronbois.jpg") center center fixed
    no-repeat;
  background-size: cover;
}

/* Page Stella */
.b-stella {
  background: url("../images/fond_pages/stella.jpg") center center fixed
    no-repeat;
  background-size: cover;
}

/* Page Ecole */
.b-ecole {
  background: url("../images/photo_libre/crayon.jpg") center center fixed
    no-repeat;
  background-size: cover;
}
.p-ecole {
  color: #5c5c5c;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  margin-top: 50px;
  padding: 20px;
}

/* Page Anniversaire */
.b-lucien {
  background: url("../images/photo_libre/anniv.png") center center fixed
    no-repeat;
  background-size: cover;
  background-position: top;
}

/* Page Corse */
.b-corse {
  background: url("../images/fond_pages/plage.jpg") center center fixed
    no-repeat;
  background-size: cover;
}

/* Page These julien et Zadoc */
.b-zadoc {
  background: url("../images/fond_pages/texturefumee.jpg") center center fixed
    no-repeat;
  background-size: cover;
}
.p-zadoc {
  color: #3d1907;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  margin-top: 50px;
  padding: 20px;
}

/* Page 99_noceor */
.b-noceor {
  background: url("../images/fond_pages/textureblancligne.jpg") center center
    fixed no-repeat;
  background-size: cover;
}
.a-noce {
  color: #933b11;
}
.cop-noce {
  color: #933b11;
}

/* Boutons ecriture blanche */
.btn-blanc {
  font-weight: 600;
  color: #fff;
  background-color: #777777;
  border-color: #777777;
}
.btn-blanc:hover {
  color: #49c9cb;
  background-color: #ecf3f5;
}

/* Page Cousins */
.b-cousins {
  background: url("../images/fond_pages/texturepapierfroisebeige.jpg") center
    center fixed no-repeat;
  background-size: cover;
}

/* Page mariage Charles et Aurélie */
.b-charles {
  background: url("../images/fond_pages/mariagemains.jpg") center center fixed
    no-repeat;
  background-size: cover;
}

/* Page mariage Stephanie */
.b-steph {
  background: url("../images/fond_pages/mariagealliance.jpg") center center
    fixed no-repeat;
  background-size: cover;
}

/* Page mariage Gaelle et JJ */
.b-gaelle {
  background: url("../images/photo_libre/Palmier.jpg") center center fixed
    no-repeat;
  background-size: cover;
}

/* Page Collel et israel */
.b-collel {
  background: url("../images/fond_pages/avion-israel_v1.jpg") fixed no-repeat;
  background-size: cover;
  background-position-x: left;
  background-position-y: top;
}
.menu-bleu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  width: 550px;
  margin: 0 10px;
  padding: 10px;
}
.footer-bleu {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  height: 5%;
  background-color: transparent !important;
}
.foot-bleu {
  color: #1c0bb6 !important;
  font-weight: 600;
}
.foot-blanc:hover {
  color: var(--turquoise) !important;
}
.bleu-cop {
  color: #1c0bb6;
  font-style: italic;
  font-weight: 500;
}
.fa-bleu {
  color: #1c0bb6;
}
.p-bleu {
  color: #1c0bb6;
  font-style: italic;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  margin-top: 50px;
  padding: 20px;
}
.btn-israel {
  font-weight: 600;
  background-color: #bed3f8 !important;
}
.israel {
  color: #1c0bb6 !important;
}
.israel:hover {
  color: #121e53 !important;
}
/* Page Maroc */
.b-maroc {
  background: url("../images/fond_pages/voyage.jpg") top right fixed no-repeat;
  background-size: cover;
}

/* Page Mariage Julien-Tatoo */
.b-tatoo {
  background: url("../images/fond_pages/voilteTaoo.jpg") top center fixed
    no-repeat;
  background-size: cover;
}

/* Page 60 ans Marcel */
.b-marcel {
  background: url("../images/photo_libre/ballons.jpg") center center fixed
    no-repeat;
  background-size: cover;
}

/* Page send-mail PHP */
.b-send {
  background-color: #fddfbc;
}
.mess-envoi {
  font-size: 30px;
  font-style: italic;
  font-weight: bold;
}
.p-secur{
  text-align: center;
  margin-top: 300px;
}
.btn-acc {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  
}

/* Formulaire de connexion au site */
.b-test-connect {
  background: url(../images/fond_pages/bleu-noir-vague.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sect-test {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  padding: 30px;
  max-width: 520px !important;
  min-width: 280px !important;
  border-radius: 20px;
}
.sect-test h2 {
  color: var(--base-color);
  font-weight: 500;
  text-align: center;

}
.sect-test h3 {
  color: var(--gray-color);
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
}
.input-box {
  width: 100%;
  position: relative;
  margin-bottom: 25px;
}
.input-box input {
  width: 100%;
  padding: 15px;
  border-radius: 25px;
  outline: none;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #49c9cb;
  padding-right: 40px;
}
.input-box input::placeholder {
  color: var(--gray-color);
}
.input-box i {
  position: absolute;
  transform: translateY(-50%);
  right: 20px;
  top: 40%;
}
.login-btn {
  width: 100%;
  padding: 15px;
  border-radius: 25px;
  background-color: transparent;
  color: var(--gray-color);
  outline: none;
  border: 0;
  font-weight: bold;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.5s;
}
.login-btn:hover {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--base-color);
}

/* choix album photos */
.b-album {
  background-color: var(--fond-btn)
}
.container-album {
  background-color: rgba(61, 25, 7, 0.9);
  width: 90%;
  max-width: 1100px;
  margin: 10px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}
.container-album h2 {
  color: var(--beige);
  font-style: italic;
  margin: 20px 0;
  padding-bottom: 20px;
  text-align: center;
}
.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  grid-gap: 30px;
  margin: 80px auto;
  width: 95%;
}
.card-wrapper {
  position: relative;
  min-height: 350px;
  perspective: 2000px;
  perspective-origin: top;
}
.card-wrapper:hover .card-album {
  transform: rotateY(180deg);
  /* box-shadow: 0 15px 30px rgba(64, 224, 208, 0.6); */
}
/* Lueur pour les Mariages (Beige/Doré) */
.theme-mariage:hover .card-album {
  box-shadow: 0 0 25px 5px rgba(247, 209, 128, 0.5); /* Lueur Beige */
}

/* Lueur pour les Voyages (Turquoise/Bleu) */
.theme-voyage:hover .card-album {
  box-shadow: 0 0 25px 5px rgba(64, 224, 208, 0.6); 
  /* Lueur Turquoise */
}
/* Lueur pour les Bar-Mitsvote (Argent/Blanc ou autre couleur) */
.theme-bm:hover .card-album {
  box-shadow: 0 0 25px 5px rgba(176, 206, 95, 0.89); /* Lueur Blanche */
}
.card-album {
  position: relative;
  width: 100%;
  height: 350px;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.86,0,0.07,1), box-shadow 0.5s ease;
}
.card-front,
.card-back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 8px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-sizing: border-box;
}
.card-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* object-position: center; */
  border-radius: 8px;
}
.card-back {
  background: var(--fond-btn);
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
}
.card-back a {
  display: inline-block;
  border-radius: 10px;
  padding: 15px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: normal;
  font-size: 14px;
  background-color: var(--marron);
  color: var(--beige);
  transition: background-color 0.3s ease-in-out,
    color 0.3s ease-in-out;
}
.card-back a:hover {
  background-color: var(--beige);
  color: var(--turquoise);
}






/* Responsive  */
@media screen and (max-width: 768px) {
  .column {
    width: 100%;
  }
  .sect-test {
    width: 300px !important;
  }
  footer .links {
  flex-direction: column;
  align-items: center;
  }
  footer .links p {
  margin: 0;
  margin-bottom: 10px;
  }
  section .sect-test {
    width: 380px !important;
  }
}
@media (max-width: 1006px) {
  .gal-img:hover {
    transform: none;
  }
  .nav-gris {
    justify-content: space-between;
  }
  .toggle {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    position: relative;
    z-index: 20;
  }
  .logo {
    position: relative;
    z-index: 20;
  }
  .ouvrir {
    display: block;
  }
  .fermer {
    display: none;
  }
  .open .ouvrir {
    display: none;
  }
  .open .fermer {
    display: block;
  }
  .menu {
        position: absolute;
        margin: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 65vh;
        background: var(--marron);
        flex-direction: column;
        padding: 2rem;
        justify-content: space-around;
        transform: translateX(-100%);
        transition: transform 1s;
    }
  .open .menu {
        transform: translateX(0);
    } 
  .menu-blanc {
        position: absolute;
        margin: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 65vh;
        background: #bdb7b7;
        flex-direction: column;
        padding: 2rem;
        justify-content: space-around;
        transform: translateX(-100%);
        transition: transform 1s;
    }
  .open .menu-blanc {
        transform: translateX(0);
    }
  .menu-bleu {
        position: absolute;
        margin: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 65vh;
        background: #bed3f8;
        flex-direction: column;
        padding: 2rem;
        justify-content: space-around;
        transform: translateX(-100%);
        transition: transform 1s;
    }
  .open .menu-bleu {
        transform: translateX(0);
    } 
  .contfig {
    flex-direction: column;
    align-items: center ;
    } 
  .cube .card {
    flex-direction: column;
  }
  .form-connex h3 {
    margin-bottom: 0 !important;
  }
  .form-group {
    margin-top: 0 !important;
  }
  .sect-test {
    width: 300px !important;
  }
  .corps-formulaire .droite {
    margin-left: 0px;
  }
}
