@font-face {
  font-family: 'Beautifully Delicious Script Regular'; 
  src: url('./fonts/BDScript-Regular.woff2') format('woff2'),
       url('./fonts/BDScript-Regular.woff') format('woff'),   
       url('./fonts/BDScript-Regular.ttf') format('truetype'), 
       url('./fonts/BDScript-Regular.eot') format('embedded-opentype'); 
  font-weight: normal; 
  font-style: normal;  
}


:root {
  --primary-color: #2C030B;
  --secondary-color: #2C030B;
  --third-color: #FB6A7C;
  --text-color: #ffffff;
}


/* Default Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  font-family: "Lora", "Georgia", serif;

}



html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
}


/* End of Default Styles */

/* Custom Scroller */
body::-webkit-scrollbar {
  width: 1.2rem;
}
body::-webkit-scrollbar-thumb {
  background-color: #8c4552;
  border-radius: 5rem;
}
body::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
}

.body {
  
  overflow: hidden;
background-color: var(--primary-color);}





/* End Of Custom Scroller */

/* Loader */
.loader-wrapper {
  width: 100%;
  height: 100rem;
  background-color: var(--secondary-color);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  z-index: 9999;
}

.loader-wrapper.hide {
  opacity: 0;
  visibility: hidden;
}

/* Loader Animation */
.loader {
  width: 40%;
  height: 0.1rem;
  background-color: #fff;
  transform: scaleX(0);
  animation: loader 1.7s ease-in-out forwards;
}

@keyframes loader {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }

  50% {
    transform: scaleX(1);
    transform-origin: right;
  }

  90% {
    transform: scaleX(0.2);
    transform-origin: right;
  }

  100% {
    transform: scaleX(0);
    transform-origin: center;
  }
}

/* Conteneur principal du site */
.container {
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  position: relative;
  overflow-x: hidden;

}

.main-container {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  position: relative;
  z-index: 1;
}

.main-container.show {
  opacity: 1;
  visibility: visible;
}



/* Navigation */
/* Menu Icon */

.menu-icon {
  width: 4rem;
  height: 2rem;
  position: fixed;
  top: 7rem;
  right: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
}
.line {
  height: 0.2rem;
  background-color: var(--third-color);
  transition: all 0.3s;
}

.line-1,
.line-3 {
  width: 100%;
}

.navigate .line-1 {
  width: 50%;
  transform: translate(103%, 0.5rem) rotateZ(25deg);
}

.navigate .line-2 {
  width: 100%;
}

.navigate .line-3 {
  width: 50%;
  transform: translate(103%, -0.5rem) rotateZ(-25deg);
}

.menu-icon:hover .line-1,
.menu-icon:hover .line-3 {
  width: 70%;
}

.navigate .menu-icon:hover .line-1,
.navigate .menu-icon:hover .line-3 {
  width: 50%;
}

.navigate .menu-icon:hover .line-2 {
  margin-left: 0;
}

.line-2 {
  width: 70%;
}

.menu-icon:hover .line-2 {
  margin-left: 30%;
}
/* End of Menu Icon */

/* Navigation Items */
.navigation {
  width: 100%;
  height: 100vh;
  background-color: var(--secondary-color);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

.navigate .navigation {
  opacity: 1;
  visibility: visible;
}

.nav-left {
  width: 50%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.navigate .nav-left {
  opacity: 1;
  visibility: visible;
  transition: all 1s 0.7s;
}
.nav-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 1s;
}

.nav-left:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.nav-right {
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-200%);
}

.navigate .nav-right {
  transform: translate(0);
  width: 50%;
  transition: all 1s;
}

.nav-items {
  display: flex;
  flex-direction: column;
}

.nav-items a {
  font-size: 1.8rem;
  margin: 2rem 0;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  visibility: hidden;
}

.navigate .nav-items a {
  opacity: 1;
  visibility: visible;
}
.navigate .nav-items a:nth-child(1) {
  transition: opacity 0.5s 1s, color 0.3s;
}
.navigate .nav-items a:nth-child(2) {
  transition: opacity 0.5s 1.2s, color 0.3s;
}
.navigate .nav-items a:nth-child(3) {
  transition: opacity 0.5s 1.4s, color 0.3s;
}
.navigate .nav-items a:nth-child(4) {
  transition: opacity 0.5s 1.6s, color 0.3s;
}
.navigate .nav-items a:nth-child(5) {
  transition: opacity 0.5s 1.8s, color 0.3s;
}

.nav-items a:first-child {
  padding-left: 6rem;
  position: relative;
}

.nav-items a:first-child::before {
  content: "";
  width: 4.8rem;
  height: 0.2rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.3s;
}

.nav-items a:first-child:hover::before {
  background-color: var(--third-color);
}

.nav-items a:hover {
  color: var(--third-color);
}

.nav-items a span {
  font-family: "Cinzel", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  margin-right: 1rem;
  letter-spacing: 0.2rem;
  position: relative;
}

.nav-items a span::before {
  content: "";
  width: 0;
  height: 0.5rem;
  background-color: var(--third-color);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s;
}

.nav-items a:hover span::before {
  width: 100%;
}
/* Header */
header {
  height: 100rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;


}
/* Logo */

.logo {
  position: absolute;
  top: 7rem;
  left: 10rem;
  

}

.logo img {
  width: 18rem;
  height: 9rem;
}
/* End of Logo */




.hero {
  height: 100rem;
  width: 100%;
  


}

.hero-top {
  display: flex;
  align-items: center; 
  justify-content: space-between; 
  width: 100%; 
  height: 70%;

  flex-grow: 1; 
}

.hero-image {
  display: flex;
  position: relative;
  left: 16vw;
  top: 10rem;

}

.hero-image img {

  width:50rem; 
  height: 50rem; 
  border-radius: 50%;
  object-fit: cover;

  /* Effet néon */
  box-shadow: 
  0 0 15px rgba(255, 23, 68, 0.9),  
  0 0 30px rgba(255, 0, 127, 0.8),  
  0 0 45px rgba(255, 69, 0, 0.7);  

transition: box-shadow 0.3s ease-in-out;
}

/* Effet neon plus intense au survol */
.hero-image img:hover {
  box-shadow: 
      0 0 20px rgba(255, 23, 68, 1),
      0 0 40px rgba(255, 0, 127, 0.9),
      0 0 60px rgba(255, 69, 0, 0.8);
}






.hero-content {

  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 16vw;
  margin-top: 16rem;
}

.hero-content h1 {
  font-family: "Beautifully Delicious Script Regular", cursive;  
  font-size: 18rem; /* Taille du titre */
  margin: 0;
  background: linear-gradient(to right, rgb(238, 205, 215) 0%, rgba(180, 30, 60, 1) 100%);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
}

.hero-content h4 {
  font-size: 1.8rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.7rem;
  color: #fff;
  position: relative;
  right:20rem;
 
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  height: 30rem;
}

/* YUNA & NEAL */

.yuna-neal-container {
  display: flex;
  justify-content: center; 
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  
}

.yuna-neal {
  width: 50rem; 
  height: 100%; 
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidde; 
  

}

.yuna,
.neal {
  position: absolute;

  width: 28rem;
  height: auto;
  object-fit: contain;


}

.yuna {
  bottom: -15rem;  
  left: 15%;
  z-index: 1 ;

}

.neal {
  
  
  z-index: ; 
  bottom: -11rem;  
  left: 38%;

}

/* ======================== */
/* IMAGES "GIRLS" */
/* ======================== */

.girls-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.girls-group {
  position: relative;
  width: 50rem;
  height: 100%;
  display: flex;
  align-items: flex-end;
  

}

.girls-1,
.girls-2,
.girls-3,
.girls-4 {
  position: absolute;
  width: 28rem;
  height: auto;
  object-fit: cover;
  bottom: -7rem;

}

/* Positionnement des images */
.girls-1 {
  left: -10%;
  z-index: 4;
}

.girls-2 {
  left: 4%;
  z-index: 3;
}

.girls-3 {
  left: 22%;
  z-index: 2;
  bottom: -8rem;

}

.girls-4 {
  left: 40%;
  z-index: 1;
}

.yuna {
  clip-path: inset(0 0 38% 0); 
}
.neal {
  clip-path: inset(0 0 29% 0); 
}

.girls-1,
.girls-2,
.girls-3,
.girls-4 {
  clip-path: inset(0 0 20% 0); 
}
.girls-3 {
  clip-path: inset(0 0 24% 0); 
}















/* Page Header */


.page-header {
  width: 100%;
  height: 40rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
}

.page-header .section-heading-sm {
  margin-top: 15rem;
}

/* End Of Page Header */
/* End of Header */

.about {
  width: 100%;
  background-color: var(--secondary-color);
  padding: 10rem 0 15rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  width: 100%;
  height: 100%;
  display: flex;
}

.about-content-left {
  width: 50%;
  text-align: right;
  padding-right: 6rem;
}




.section-num span {
  font-family: "cinzel", sans-serif;
  font-size: 25rem;
  font-weight: 900;
  background-image: url(images/1728338119573-ardoise.jpg);
  background-size: cover;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.main-btn {
  width: 28rem;
  height: 6rem;
  background-color: var(--third-color);
  border: none;
  border-radius: 3rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  
}

.about .main-btn{
  bottom: 0rem;
}

.books .main-btn{
  bottom: 12rem;
}



.main-btn:active {
  transform: translateY(0.2rem);
}

.main-btn::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, #fff, transparent);
  position: absolute;
  top: 0;
  left: -100%;
  transform: skewX(-30deg);
  transition: left 0.3s;
}

.main-btn:hover::before {
  left: 100%;
}

.main-btn a {
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content-right {
  width: 50%;
  padding: 8rem 0 0 6rem;
}

.section-heading-sm {
  font-size: 1.7rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  color: var(--third-color);
}

.section-heading-lg {
  font-size: 2.2rem;
  font-weight: 300;
  text-transform: uppercas;
  letter-spacing: 0.3rem;
  color: #fff;
  margin: 3rem 0;
  max-width: 100%;
  font-style: italic;
}

.section-border {
  width: 50rem;

  height: 0.1rem;
  background-color: #333;
  margin-bottom: 3rem;
  position: relative;
}

.section-border::after {
  content: '';
  width: 7rem;
  height: 0.7rem;
  background-color: var(--third-color);
  position: absolute;
  
}


.about-underline {
  width: 81rem;
  height: 0.1rem;
  background-color: #333;
  margin-bottom: 3rem;
  position: relative;
  margin-left: 37rem;
}

.about-underline::after {
  content: '';
  width: 7rem;
  height: 0.7rem;
  background-color: var(--third-color);
  position: absolute;
  top: 0;
  left: 50%;
}









.about p {
  width: 50rem;
  font-size: 1.8rem;
  color: #fff;
  line-height: 3.5rem;
  margin-bottom: 4rem;
}
/* End of About */

.books {
  width: 100%;
  height: 113rem;

  display: flex;
  justify-content: center;
  align-items: center;
  /*padding: 10rem 0 15rem 0;*/
}

.books-content {
  text-align: center;
}

.books-top {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0rem;
}

.books-header {
  text-align: right;
  margin-right: 10rem;
}

.books-header .section-border::after {
  right: 0;
  left: auto;
}

.books-top .section-num span {
  background-image: url(images/1728338119555-ardoise.jpg);
  background-position: 50% 75%;
}

.books-list {
  display: flex;
 
}

.book {
  width: 35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 6rem;
  text-align:center;
}

.book img {
  width: 30rem;
  height: auto;
  filter: grayscale(100%);
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: filter 1s;
}

.book img:hover {
  filter: grayscale(0);
}

.book-name {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: var(--third-color);
  letter-spacing: 0.1rem;
  margin: 3rem 0;
display: flex;

justify-content: center;
font-style: itali;
}

.book-line {
  width: 10rem;
  height: 0.1rem;
  background-color: rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
}

.book-author {
  font-size: 2rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.5rem;
}

.books-content .main-btn {
  margin-top: 10rem;
}
/* End of Books */

/* Testimonials */


.feedback-bottom{
  width: 100%;
}
.testimonials {
  width: 100%;
  height: 104rem;
  background-color: var(--secondary-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}


.testimonials-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
}

.testimonials-top .section-num {
  margin-right: 10rem;
}

.testimonials-top .section-num span {
  background-image: url(images/1728338119598-ardoise.jpg);
}

.feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}













.quote-bg {
  width: 35rem;
  height: 40rem;
  background-color: var(--third-color);
  position: absolute;
  top: 9rem;
  left: -46rem;
  border-radius: 3rem;
}

.quote-bg::after {
  content:'';
  width: 0;
  height: 0;
  position: absolute;
  border-left: 4rem solid transparent;
  border-right: 4rem solid transparent;
  border-bottom: 4rem solid var(--third-color);
  bottom: -3rem;
  left: 1rem;
  transform: rotate(-45deg);
}

.quote {
  width: 80rem;
  height: 28rem;
  background-color: #450b16;
  border-radius: 3rem;
  position: absolute;
  top: 16rem;
  left: -43rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
}

.quote::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  border-left: 4rem solid transparent;
  border-right: 4rem solid transparent;
  border-bottom: 4rem solid #450B16;
  bottom: -3rem;
  left: 0;
  transform: rotate(-45deg);
}

.quote-header {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}

.quote-header i {
  font-size: 8rem;
  color: var(--third-color);
}

.quote-header h1 {
  font-size: 2rem;
  color: #fff;
  /*letter-spacing: 0.2rem;*/
  padding: 0 10rem;
}

.quote-body p {
  width: 65rem;
  font-size: 1.7rem;
  color: #ccc;
  margin-bottom: 2.5rem;
  text-align: center;
  line-height: 3.5rem;
}

.quote-stars i {
  font-size: 1.8rem;
  color: var(--third-color);
  margin: 0 0.5rem;
}

.testimonials .main-btn {
  position: absolute;
  left: 50%;
  bottom: 0rem;
  transform: translateX(-50%);
}

/* End Of Testimonials */

/* Footer */
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15rem 0 3rem 0;
  background-color: var(--primary-color);
}

.footer-header {
  text-align: center;
  margin-bottom: 15rem;
}

.footer-header .section-border::after {
  left: 50%;
  transform: translateX(-50%);
}

.footer-content {
  width: 60%;
  display: flex;
  margin-bottom: 10rem;
}

.footer-social {
  width: 30%;
}

.address div {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.address i {
  font-size: 3.5rem;
  color: #fff;
  margin-right: 2.3rem;
}

.address div span {
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #fff;
}

.address-par {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
  padding-left: 6rem;
}

.address-par span {
  width: 10rem;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.social-media i {
  font-size: 4rem;
  color: #fff;
  margin-right: 3rem;
  cursor: pointer;
}

.footer-form {
  width: 70%;
}

.footer-form form {
  display: flex;
  flex-direction: column;
}

.input-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.input-group input {
  width: 37rem;
  height: 6rem;
  margin-bottom: 3rem;
}

.input-group input,
textarea {
  background-color: #450b16;
  border: none;
  padding: 1rem;
  font-size: 2rem;
  color: #ccc;
  border-radius: 0.5rem;
}

textarea {
  height: 15rem;
  margin-bottom: 3rem;
  resize: none;
}

.footer-form button {
  width: 20rem;
  height: 5rem;
  background-color: var(--third-color);
  margin-left: auto;
  border: none;
  border-radius: 0.5rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.1rem;
  cursor: pointer;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.footer-form button:active {
  transform: translateY(0.2rem);
}

.footer-bottom {
  width: 60%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 1.4rem;
  color: #ccc;
}

.footer-bottom button {
  width: 15rem;
  height: 5rem;
  border: none;
  background: none;
}

.footer-bottom button a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-size: 1.4rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
/* End Of Footer */
/* End Of Container */




.social-media {
  align-self: center;
}



.social-media {
  display: flex;
  gap: 10px; /* Espacement entre les icônes */
  align-items: center;
}

.social-media a {
  text-decoration: none; 
  color: inherit; 
  font-size: 24px; 
  transition: transform 0.3s ease-in-out;
  width: 5rem;
}

.social-media a:hover {
  transform: scale(1.1); 
}

.custom-hachette-icon {
  width: 40px; 
  filter: brightness(0) invert(1); 
  height: auto;
  display: inline-block;
}

.custom-wattpad-icon {
  width: 30px; 
  filter: brightness(0) invert(1); 
  height: auto;
  display: inline-block;
}

.custom-spotify-icon {
  width: 30px; 
  filter: brightness(0) invert(1); 
  height: auto;
  display: inline-block;
}













.modal {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  border: 2px solid #333;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 1000;
  min-width: 250px;
  animation: fadeIn 0.3s ease-in-out;
}
.modal-content {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.modal button {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}
.modal button:hover {
  background-color: #0056b3;
}

/* Animation d'apparition */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -55%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}









/* Responsive */

/* Responsive */
@media (max-width: 1600px) {
  .input-group input {
    width: 31rem;

  }

  .book {
    margin: 6rem 3rem;
  }

 


  .hero-image img{
    
    width: 40rem;
    height: 40rem;
  
  }
  



  .hero-content{
    position: relative;


  }

  .hero-content h1{
    font-size: 12rem; 
  }

  .hero-content h4 {
    font-size: 1.2rem;
    
    right:13rem;
   
  }


  .about-underline {
    width: 81rem;
    margin-left: 17rem;
  }

  





}

@media (max-width: 1440px) {
  html {
    font-size: 58%;
  }


 

  .hero-content h1{
    font-size: 13rem; /* Taille du titre */
  }

  .hero-content h4 {
    font-size: 1.5rem;
    
    right:13rem;
   
  }


  .card {
    width: 32.5rem;
    height: 55rem;
    right: 0rem;
  }
  
  .navig {
    bottom: 0rem;
    right: 8%;
    
  }

 
  .nav-button {
    width: 64px;
    height: 64px;
  }
  
  .cards-container{
    padding-bottom:8rem
  }

  .about-underline {
    width: 81rem;
    margin-left: 22rem;
  }


}

@media (max-width: 1368px) {
  html {
    font-size: 55%;
  }

  .banner {
    bottom: 25rem;
  }

  .testimonials {
    height: 104rem;
  }

  .about-underline {
    width: 81rem;
    margin-left: 9rem;
  }

  
}

@media (max-width: 1280px) {
  .about-content-left {
    width: 45%;

  }

  .about-content-right {
    width: 55%;
  }

  .books-list {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  .footer-content {
    width: 70%;
  }

  .footer-bottom {
    width: 70%;
  }

 

.hero-image img {

  width:40rem; 
  height: 40rem; 
  border-radius: 50%;
  object-fit: cover;
}
  

  

  .hero-content h1{
    font-size: 10rem; /* Taille du titre */
  }

  .hero-content h4 {
    font-size: 1.2rem;
    
    right:10rem;
   
  }

  .about-underline {
    width: 81rem;
    margin-left: 9rem;
  }
  
  .about-underline::after {
   
    left: 47%;
  }

  .card {
    width: 32.5rem;
    height: 55rem;
    right: -6rem;
  }
  
  .navig {
    bottom: 0rem;
    right: 8%;
    
  }

 
  .nav-button {
    width: 64px;
    height: 64px;
  }
  
  .cards-container{
    padding-bottom:8rem
  }

  
.books{
height:220rem ;
}

.testimonials{
height: 105rem ;
}
.quote {
height: 29rem;
padding: 0 0;
}


}

@media (max-width: 1024px) {
  html {
    font-size: 52%;
  }

  .logo {
    left: 10rem;
  }

  .menu-icon {
    right: 5rem;
  }

  .banner {
    bottom: 20rem;
  }

  .footer-content {
    width: 80%;
  }

  .footer-bottom {
    width: 80%;
  }

  .hero-content h1{
    font-size: 8rem; 
  }

  .hero-content h4 {
    font-size: 1rem;
    
    right:7rem;
   
  }

  

.books{
  height: 200rem;
}

.testimonials{
  height: 105rem;
}

  

  .books .section-num {
    padding-right: 25rem;
  }

  .testimonials .section-num {
    margin-left:25rem ;
  }


  .yuna,
.neal {
  position: absolute;

  width: 28rem;
  height: 25rem;
  object-fit: contain;


}

/* Positionnement précis des images */
.yuna {
  bottom: -19rem;  
  left: 0%;
  z-index: 1 ;
  width: 40rem;
  height: 44rem

}

.neal {
  
  
  z-index: ; 
  bottom: -12rem;  
  left: 27%;
  width: 40rem;
  height: 39rem

}

.girls-1,
.girls-2,
.girls-3,
.girls-4 {
  width: 30rem;
  bottom: -8rem;  

}
.girls-3{
  bottom: -9rem;  
}

.about-underline {
  width: 81rem;
  margin-left: 9rem;
}

.about-underline::after {
 
  left: 45%;
}


.card {
  right: -50rem;
  width: 47rem;
  height: 85rem;
}

.navig {
  bottom: 0rem;
  right: 20%;
  
}

.nav-button {
  width: 64px;
  height: 64px;
}

.cards-container{
  padding-bottom:8rem
}

.hero-image {
  display: flex;
  align-content: flex-end;
  top: 10rem;
  left: 18%;

}

.hero-image img {

  width:45rem; 
  height: 45rem; 
  border-radius: 50%;
  object-fit: cover;
}
  

  .hero-content{
    right:-10%;

  }

  .hero-content h1{
    font-size: 10rem; 
  }

  .hero-content h4 {
    font-size: 1.2rem;
    
   
  }
  

  .quote-body p {
    width: 70rem;
    font-size: 1.7rem;
    margin-bottom: 2.5rem;
    line-height: 3.5rem;
  }

  .quote{
    padding: 0rem 0;
  }


  .about p{
    font-size: 2.2rem;
  }

}

@media (max-width: 915px) {

 
 

  .about-underline {
    width: 81rem;
    margin-left: 3rem;
  }
  
  .about-underline::after {
   
    left: 45%;
  }

  .card {
    right: -50rem;
    width: 47rem;
    height: 85rem;
  }
  
  .navig {
    bottom: 0rem;
    right: 24%;
    
  }
  
  .nav-button {
    width: 64px;
    height: 64px;
  }
  
  .cards-container{
    padding-bottom:8rem
  }

  .hero-content {
    right: -14rem;
  }

  .books{
    height: 198rem

  }

  .testimonials{
    height: 105rem;
  }


}




@media (max-width: 853px) {

  .hero-bottom{
    display: none;
  } 

  .about-underline {
    width: 80rem;
    margin-left: 1rem;
  }
  
  .about-underline::after {
   
    left: 50%;
  }

.about p {
    width: 41rem;
}

.books{
height: 200rem;
}

.testimonials{
height: 105rem;
}



.hero-top {
  flex-direction: column;

}

.hero-image {
  top: 25rem;
  left: 0%;
}

.hero-image img {
  width: 50rem;
  height: 50rem;
}

.hero-content{
  left: 10rem;
  top: 6rem;
}

.hero-content h1 {
  font-size: 15rem;
}


.hero-content h4 {
  font-size: 2rem;
  right:0rem;

}

.hero-bottom{
  display: none;
}

.hero-image {
  top: 22rem;
}


}





@media (max-width: 820px) {
  html {
    font-size: 48%;
  }

  

  .about-content-left {
    width: 40%;
  }

  .about-content-right {
    width: 60%;
  }

  .section-heading-sm {
    font-size: 1.4rem;
  }

  .about p {
    font-size: 2.2rem;
    width: 45rem;
  }

  .books{
    height: 201rem;
  }

  .books .books-header {
    width: 35rem;
  }

  .books-header .section-border {
    width: 35rem;
  }

  .testimonials {
    height: 105rem;
  }

  .input-group input {
    width: 28rem;
  }
  
  .hero-content h1{
    font-size: 7rem; 
  }

  .hero-content h4 {
    font-size: 0.9rem;
    
    right:6rem;
   
  }

  .books .section-num span{
    margin-right: -30rem;
  }


  .testimonials .section-num span{
    margin-left:15rem ;
  }

  .about-underline {
    width: 81rem;
    margin-left: 2rem;
  }
  
  .about-underline::after {
   
    left: 50%;
  }
  
  .card {
    right: -50rem;
    width: 47rem;
    height: 85rem;
  }
  
  .navig {
    bottom: 0rem;
    right: 25%;
    
  }
  
  .nav-button {
    width: 64px;
    height: 64px;
  }
  
  .cards-container{
    padding-bottom:8rem
  }

  .hero-image img {
  
    width:50rem; 
    height: 50rem; 
}

  
.hero-top {
  flex-direction: column;

}

.hero-image {
  display: flex;
  align-content: flex-end;
  top: 20rem;
  left: 0%;

}


  
.hero-content {
  position: relative;

  bottom: -9rem;
  left: 10%;
}

.hero-content h1 {
  font-size: 14rem;
}

.hero-content h4 {
  font-size: 2rem;
  
  right:0rem;
 
}

  
}

@media (max-width: 768px) {

  .testimonials .section-num {
    margin-left:32rem ;
  }
  .books .section-num span{
    margin-right: -30rem;
  }



  .book {
    width: 32rem;

  }

  

  .book img {
    width: 27rem;
  }

  .books{
    height: 191rem;

  }
  .testimonials {
    height: 102rem;
  }

  .input-group input {
    width: 26rem;
  }

  .hero-top {
    flex-direction: column;

    
  }

  .hero-image {
    display: flex;
    align-content: flex-end;
    top: 20rem;
    left: 0%;

  }
  
  .hero-image img {
  
    width:60rem; 
    height: 60rem; 
}

.hero-content {
  position: relative;

  left: 9%;
  top: 5rem;
}

.hero-content h1 {
  font-size: 14rem;
}

.hero-content h4 {
  font-size: 2rem;
  
  right:0rem;
 
}

.girls-container {
  display: none;
}


.yuna-neal-container{
display: none;
}

.about-underline {
  width: 75rem;
  margin-left: 2rem;
}

.about-underline::after {
 
  left: 46%;
}

.card {
  right: -50rem;
  width: 47rem;
  height: 85rem;
}

.navig {
  bottom: 0rem;
  right: 26%;
  
}

.nav-button {
  width: 64px;
  height: 64px;
}

.cards-container{
  padding-bottom:8rem
}


}

@media (max-width: 667px){

  .hero-image img {
    width: 50rem;
    height: 50rem;
}

.hero-content {
  position: relative;
  bottom: -9rem;
  left: 6%;
}

.about p {
  font-size: 1.8rem;
  width: 34rem;
}

  .about {

    height: ;
    
    }


  .books{

    height: 251rem;
    
    }

  .quote-bg {
      left: -36rem;
    
    }

    .quote {
      width: 65rem;
      left: -33rem ;
    }

    .quote-body p{
      width: 65rem;
    }


}






@media (max-width: 540px) {
  .hero-content {
    position: relative;
  
    bottom: -10rem;
    left: 8%;
  }
  
  .hero-content h1 {
    font-size: 12rem;
  }
  
  .hero-content h4 {
    font-size: 2rem;
    
    right:0rem;
   
  }

  .about-content-left .section-num  {
    margin-left: rem;

  } 


  .about-underline {
    width: 54rem;
    margin-left: 1rem;
  }
  
  .about-underline::after {
   
    left: 44%;
  }

  .card {
    right: -52rem;
    width: 39rem;
    height: 65rem;
  }
  
  .navig {
    bottom: 0rem;
    right: 36%;
    
  }
  .nav-button {
    width: 44px;
    height: 44px;
  }

  .hero-image img {
  
    width:50rem; 
    height: 50rem; 
}

.books{
  height: 203rem ;
}

.testimonials{
  height: 105rem;
}

.books .section-num {

  padding-right: 54rem;

}

.quote-bg {
  left: -30rem;

}
.quote{
  width: 52rem;
  left: -27rem;
}

.about-content-left {
  padding-left: 5rem;

}



.quote-header h1 {
  padding: 0 4rem;
}


.quote-body p {
  width: 49rem;
}

}


@media (max-width: 430px) {
  html {
    font-size: 42%;
  }

  .nav-left {
    display: none;
  }

  .navigate .nav-right {
    width: 100%;
  }

  .logo {
    left: 5rem;
  }

  .banner h3 {
    font-size: 5rem;
  }



  .about {
    height: 107rem;
    padding-bottom: 25rem;
    position: relative;
  }

  .about-content-left {
    padding-right: 0;
  }

  .section-num span {
    font-size: 16rem;
  }

  .about-content-right {
    padding: 4rem 0 0 6rem;
  }

  .about .main-btn {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
  }

  .section-heading-lg {
    font-size: 2.5rem;
  }

  .about-content-right .section-border {
    width: 25rem;
  }

  .about-content-right p {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 45rem;
  }

  .about-content-right p:last-child {
    top: 57%;
  }

  .books{
    height: 255rem;

  }
  .books-header {
    margin-right: 3rem;
  }

  .books .section-num {
    padding-right: 5rem;
  }

  .books .section-border {
    width: 30rem;
    margin-left: auto;
  }

  .testimonials {
    height: 110rem;
  }

  .testimonials .section-num {
    margin-left: 5rem;
  }

  .testimonials .section-border {
    width: 29rem;
  }

  .feedback-top {
    flex-direction: column-reverse;
    padding-left: 0;
  }

  .feedback-heading {
    margin-bottom: 5rem;
  }

  

  .quote-bg {
    width: 40rem;
    height: 60rem;
    background-color: var(--third-color);
    position: absolute;
    top: 5rem;
    left: -27rem;
    border-radius: 3rem;
  }

  .quote {
    top: 58rem;
    left: 12rem;
    width: 40rem;
    height: 37rem;
  }

  .quote {
    width: 47rem;
    height: 44rem;
    background-color: #450b16;
    border-radius: 3rem;
    position: absolute;
    top: 16rem;
    left: -25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
  }



  .quote-header i {
    font-size: 5rem;
  }

  .quote-header h1 {
    padding: 0 5rem;
  }

  .quote-body p {
    width: 42rem;
    font-size: 2rem;
    margin-bottom: 3.5rem;
    padding-top: 5rem;
  }

  .footer-content {
    flex-direction: column-reverse;
  }

  .footer-social,
  .footer-form {
    width: 100%;
  }

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

  











  .input-group {
    width: 100%;
  }

  .input-group input {
    width: inherit;
  }

  .footer-form button {
    width: 100%;
    margin-bottom: 10rem;
  }

  


  .hero-content{
    bottom: -12rem;
  }


  .hero-content h1{
    font-size: 12rem;
    
  }
  .hero-content h4{
    font-size: 2rem;
    
  }

  .girls-container {
    display: none;
  }
  

.yuna-neal-container{
  display: none;
}
.hero-content{
  bottom: -8rem;
}

.books .section-num span{
  margin-right: 2rem;
}
.testimonials .section-num span{
  margin-left: 2rem;
}

.about-underline {
  width: 43rem;
  margin-left: 1rem;
}

.about-underline::after {
 
  left: 44%;
}

.card {
  right: -70rem;
  width: 47rem;
  height: 85rem;
}

.navig {
  bottom: 0rem;
  right: 36%;
  
}







}


@media (max-width: 414px) {
.about-underline {
  width: 43rem;
  margin-left: 0rem;
}

.about-underline::after {
 
  left: 45%;
}

  
.card {
  right: -70rem;
  width: 47rem;
  height: 85rem;
}

.navig {
  bottom: 0rem;
  right: 36%;
  
}

.books{
  height: 255rem;
}

.testimonials{
  height: 107rem;
}

.about{
  height: 100rem;
}
.about-content-right p:last-child {
  top: 62%;
}

.about-content-right p {
  top: 32%;
  width: 45rem;
}

.about .main-btn {
  bottom: 0rem;

}
}









@media (max-width: 393px) {
  html {
    font-size: 38%;
  }
  .about-underline {
    width: 45rem;
    margin-left: 0rem;
  }
  
  .card {
    right: -77rem;
    width: 50rem;
    height: 85rem;
  }
  
  .navig {
    bottom: 0rem;
    right: 36%;
    
  }

  .books{
    height: 253rem;
  }
 
  .testimonials{
    height: 108rem;
  }

  
}

@media (max-width: 375px) {
  html {
    font-size: 36%;
  }

  .testimonials {
    height: 108rem;
  }
  .hero-content{
    bottom: -14rem;
  }

  

  .testimonials .section-num span{
    margin-left: 2rem;
  }

  .books .section-num span{
    margin-right: 2rem;
  }

  .about-underline {
   
    margin-left: 0rem;
  }
  
  .card {
    right: -80rem;
    width: 50rem;
    height: 85rem;
  }
  
  .navig {
    bottom: 0rem;
    right: 36%;
    
  }

  .card {
    right: -81rem;
    width: 52rem;
    height: 90rem;
  }
  
  .navig {
    bottom: 0rem;
    right: 37%;
    
  }

  .books{
    height: 250rem;

  }

  .testimonials .main-btn {
    position: absolute;
    left: 50%;
    bottom: 0rem;
    transform: translateX(-50%);
  }

  .about{
    height: 105rem;
  }

  .about-content-right p{
    top: 34%;

  }

  .about-content-right p:last-child{
    top: 65rem;
  }

  .about .main-btn{
    bottom: 0rem;
  }

  .about p {
    font-size: 1.8rem;
    width: 46rem;
}
  }



@media (max-width: 360px) {

  .books{
    height: 253rem;

  }

  .testimonials{
    height: 108rem;
  }

}






@media (max-width: 344px) {
  .hero-content{
    bottom: 0rem;
  }
  .testimonials .section-num {
    margin-left:5rem ;
  }

  .testimonials {
    height: 100rem;
  }

  .about-underline {
    width: 36rem;
    margin-left: 3rem;
  }
  
  .about-underline::after {
   
    left: 43%;
  }

.books{
  height: 252rem;
}

.testimonials{
  height: 108rem;
}





}







/* End of Responsive */


/*  --primary-color: #2C030B;
  --secondary-color: #040731;
  --third-color: #32b0ce;
  --text-color: #ffffff; 
  
  
  --third-color: #FB6A7C;
  --third-color: #FEB14C;
  --third-color:#D4A373

  
  
  */


