@charset "UTF-8";
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item-demi {
  flex-basis: 44%;
}

.feature {
  position: relative;
  display: inline-block;
}

.feature img {
  display: block;
  border-radius: 10px;
}

.feature:hover:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  background-image: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.25) 70%, rgba(255, 255, 255, 0) 100%);
  animation: particules 2s ease-in-out infinite;
}

@keyframes particules {
  0% {
    transform: scale(0);
    opacity: 0.75;
  }
  50% {
    transform: scale(1);
    opacity: 0;
  }
  100% {
    transform: scale(0);
    opacity: 0.5;
  }
}
.crow {
  background-image: url(../images/corbeau.png);
  background-position: center;
  margin-bottom: 150px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}

.crow p {
  margin-top: 20px;
}

/* Responsive (Tablette) */
@media screen and (max-width: 1128px) {
  .crow p {
    margin-top: 0px;
  }
}
/* Responsive (Mobile) */
@media screen and (max-width: 768px) {
  .crow p {
    margin-top: 0px;
  }
  .item-demi {
    margin: 0 auto;
    max-width: 500px;
    min-width: 300px;
    width: 100%;
    justify-content: center;
  }
  .feature {
    margin-bottom: 50px;
  }
}
.arrow {
  color: #fff;
  background-color: #333;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5em;
}

.arrow:hover {
  background-color: #555;
}

.pochette {
  width: 250px;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.pochette:hover {
  transform: perspective(1000px) rotateY(20deg) rotateX(-20deg);
}

.titre {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
}

.titres {
  margin-top: 20px;
}

.conteneurAlbum {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.menuAlbum {
  margin-right: auto;
  margin-left: auto;
  width: 31%;
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.conteneurAlbum ul {
  list-style: none;
  margin-top: 20px;
  margin-left: 40px;
}

.conteneurAlbum li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #555;
  margin-left: 28px;
}

.align {
  display: inline-block;
  margin-left: 100px;
}

.crow-3 {
  text-align: center;
}

@media screen and (max-width: 1700px) {
  .align {
    display: block;
    text-align: center;
  }
  .crow-3 {
    display: none;
    text-align: none;
  }
}
.text p {
  width: 55%;
  margin: 0 auto;
  margin-bottom: 30px;
  margin-top: 30px;
}

.text h3 {
  width: 55%;
  margin: 0 auto;
  margin-top: 30px;
}

/* Responsive (Tablette) */
@media screen and (max-width: 1128px) {
  .crow-3 {
    display: none;
  }
  .align {
    display: inline-block;
    margin-left: 30px;
  }
}
/* Responsive (Mobile) */
@media screen and (max-width: 768px) {
  .crow-3 {
    display: none;
  }
  .align {
    display: inline-block;
    margin-left: 0px;
  }
}
.conteneur-citation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carre {
  flex-basis: 45%;
  height: 100px;
  background-color: #8ec6d8;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #333;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  transform: rotate(-2deg); /* Ajout de l'effet d'inclinaison */
  transition: transform 0.3s ease-in-out; /* Transition lors du survol */
}

.carre:hover {
  transform: scale(1.05) rotate(0deg); /* Rotation réinitialisée à 0deg au survol */
  cursor: pointer;
}

.texte-citation {
  margin-top: 10px;
}

.texte-citation::before,
.texte-citation::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #8ec6d8;
  border-radius: 50%;
  border: 5px solid #fff;
}

.texte-citation::before {
  top: -10px;
  left: -10px;
}

.texte-citation::after {
  bottom: -10px;
  right: -10px;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border: 1.5px solid black;
  padding: 8px;
  text-align: center;
  padding: 4px;
}

th {
  background-color: #8ec6d8;
}

caption {
  font-size: 20px;
  margin-bottom: 20px;
}

h2 {
  font-size: 30px;
  margin-bottom: 20px;
}

/* Responsive (Mobile) */
@media screen and (max-width: 768px) {
  th,
  td {
    font-size: 10px;
    padding: 2px;
  }
}
/*----------------------------------*/
/*             Base                 */
/*----------------------------------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

footer {
  height: 100px;
  background-color: #222;
  text-align: right;
}

header {
  height: 500px;
}

@font-face {
  font-family: cafe;
  src: url(../polices/louis_george_caf/louis_george_cafe.ttf);
}
main {
  font-family: cafe;
}

/* ----------------------- */
/*      Mise en page       */
/* ----------------------- */
.conteneur {
  width: 90%;
  margin: 0 auto;
}

.fluide {
  width: 100%;
  margin: 0 auto;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.item-demi {
  flex-basis: 44%;
}

.item-tiers {
  flex-basis: 30%;
  padding: 10px;
}

/* ----------------------- */
/*         Modules         */
/* ----------------------- */
.banniere-titre {
  color: white;
  font-size: 3em;
  padding-top: 220px;
  position: absolute;
}

.banniere-video {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
}

.copyright {
  line-height: 100px;
  margin-top: 40px;
  color: white;
}

/* Menu */
.menu {
  display: flex;
  list-style: none;
  margin-bottom: 65px;
  font-family: cafe;
}

.menu li {
  display: block;
  flex-basis: 20%;
}

.btn {
  text-align: center;
  display: block;
  background-color: #8ec6d8;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  position: relative;
  text-decoration: none;
  margin: 10px;
  z-index: 1;
}

.btn:hover:after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  left: -10px;
  bottom: -10px;
  background-image: radial-gradient(circle, #ffffff 20%, transparent 20%);
  background-repeat: repeat;
  animation: anim-eclats 1s linear infinite;
  z-index: -1;
}

@keyframes anim-eclats {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* Utilisation du blend mode */
/*
multiply
screen	
overlay	
darken	
lighten	
color-dodge	
color-burn	
difference	
exclusion	
hue	
saturation
color
luminosity
*/
.blend-screen {
  mix-blend-mode: screen;
}

/* page-de-transition */
.crow-2 {
  position: fixed;
  top: -180px;
  left: 40%;
  transform: translateX(-50%);
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  z-index: 1;
  content: url(../images/corbeau2-blanc.png);
  transform: scale(2);
}

.animation-out {
  animation-name: corbeau-descend;
}

@keyframes corbeau-descend {
  0% {
    top: -125px;
  }
  100% {
    top: calc(100% - 125px);
  }
}
/* Menu burger */
.menu-petit {
  display: none;
}

@media screen and (max-width: 1000px) {
  .crow-2 {
    content: url(../images/corbeau2-gris.png);
    transform: scale(1.3);
    left: 33%;
  }
}
/* Responsive (Mobile) */
@media screen and (max-width: 768px) {
  header {
    margin-bottom: 50px;
  }
  /* menu burger */
  .crow-2 {
    content: url(../images/corbeau2.png);
    transform: scale(1);
    top: -125px;
    left: 20%;
  }
  .menu-petit {
    display: none;
  }
  .menu-petit a {
    text-decoration: none;
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
  }
  .menu-petit.ouvert {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #8ec6d8;
  }
  .menu {
    display: none;
  }
  .menu-burger {
    display: block;
    cursor: pointer;
    width: 25px;
    height: 18px;
    margin-top: 10px;
    margin-bottom: 10px;
    z-index: 1;
    transition: transform 0.3s ease;
  }
  .ligne {
    width: 100%;
    height: 3px;
    background-color: black;
    border-radius: 5px;
    margin: 5px;
    transition: transform 0.3s ease;
  }
  .menu-burger.croix .ligne {
    display: none;
  }
  .menu-burger.croix {
    transform: rotate(45deg);
  }
  .croix-conteneur {
    display: none;
  }
  .croix {
    width: 50px;
    height: 50px;
    background-image: url(../images/christian.png);
    background-size: cover;
    cursor: pointer;
    position: absolute;
    z-index: 2;
  }
  .menu-petit li a {
    position: relative;
    padding: 10px;
    color: #fff;
    text-decoration: none;
  }
  .menu-petit li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
    transition: transform 0.3s;
    transform: scaleX(0);
  }
  .menu-petit li a:hover::after {
    transform: scaleX(1);
  }
}/*# sourceMappingURL=styles.css.map */