
/* Supprimer les marges et paddings par défaut */
* {
margin: 0;
padding: 0;
box-sizing: border-box; /* Inclure padding et bordures dans les dimensions */
}

html, body {

width: 100%; /* Assurer une largeur pleine pour le document */
overflow-x: hidden; /* Empêcher les débordements horizontaux */
}


 @font-face {
      font-family: ArbFONTS;
      src: url(Fonts/ArbFONTS-Janna-LT-Regular.ttf);
  }
  @font-face {
      font-family: PoppinsBold;
      src: url(Fonts/Poppins-Bold.ttf);
  }
  @font-face {
      font-family: georgiab;
      src: url(Fonts/georgiab.ttf);
  }
  @font-face {
      font-family: Poppins;
      src: url(Fonts/Poppins-SemiBold.ttf);
  }
  @font-face {
      font-family: SpaceMono;
      src: url(Fonts/SpaceMono-Bold.ttf);
  }
  h1,h2{
    font-family: georgiab;
  }
  p{
    font-family: Poppins;
  }
  /* span{
    font-family: SpaceMono;
  } */
  /* a{
    font-family: Poppins;
  } */
 

        /* Navbar styling */
        .navbar {
      position: fixed;
      width: 100%;
      top: 0;
      transition: 1s;
  }

  .navbar-brand {
color: #fff;
font-size: 50px;
cursor: pointer;
display: flex;
margin-top: 5%;
align-items: center; /* Aligne le logo avec les éléments du menu */
}


  .icon-bar {
      background-color: #000;
  }

  .nav {
      font-family: Poppins;
      color: #fff;
      padding: 10px 20px;
      font-family: popins;
  }

  .nav a {
      display: block; /* Important pour prendre tout l'espace du parent */

      padding: 10px;
      cursor: pointer;
      font-size: 16px;
      font-family: ArbFONTS;
      text-decoration: none;
      color: inherit;
      position: relative; 
  }

  .nav a:after {
      content: '';
      display: block;
      border-bottom: 2px solid #727070;
      transform: scaleX(0);
      transition: .2s ease-in-out;
  }

  .nav a:hover:after {
      transform: scaleX(1);
  }
  .nav a:hover {
background: none; /* Empêche l'ajout d'un background au hover */
color: inherit;
}
a:hover{
background: none;
}
.nav li,
.nav a {
background: none !important; /* Supprime tout background */
box-shadow: none !important; /* Supprime tout ombrage */
border: none !important; /* Supprime toute bordure qui pourrait ressembler à un background */
}
@media screen and (max-width: 425){
    .navbar-brand {
      color: #fff;
      
      font-size: 10px;
      width: 10px;
      height: 10px;
      /* margin-bottom:20% ; */
      /* font-family: Germania; */
      cursor: pointer;
      margin-bottom: 5%;
  }
  }

  /* Parallax section */
  .paralax {
      min-height: 100vh;
      background: url('your-image.jpg') center center/cover;
      position: relative;
      color: white;
      text-align: center;
      padding: 50px 0;
  }

  .paralax p {
      font-size: 1.2rem;
      margin-bottom: 20px;
      line-height: 1.8;
  }

  /* Video background */
  .hero-section {
      position: relative;
      height: 70vh;
      width: 100%;
      overflow: hidden;
  }

  /* .background-video {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      object-fit: cover;
      z-index: -1;
  } */
   /* Styles de base */
   .background-video {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
/* background-image: url("image/aquarelsite.jpg");
background-repeat: no-repeat;
background-size: cover; */
background-color:#6c1320;
display: flex; /* Permet d'utiliser Flexbox */
justify-content: center; /* Centre horizontalement */
align-items: center; /* Centre verticalement */
z-index: -1;
opacity: 0.8; /* Ajustez cette valeur entre 0 et 1 pour l'opacité */

}

.titr {
color: white; /* Couleur du texte */
font-size: 10em; /* Taille du texte */
text-align: center;
font-family: Sinera;
/* Aligne le texte au centre */
padding-bottom: 10%;

}
@media (max-width:767px) {
.titr{
font-size: 5em;
}
}

/* Masquer la vidéo mobile par défaut */
.mobile-video {
display: none;
}

/* Afficher la vidéo desktop uniquement pour les écrans larges */
@media (min-width: 768px) {
.mobile-video {
  display: none;
}

.desktop-video {
  display: block;
}
}

/* Afficher la vidéo mobile uniquement pour les écrans étroits */
@media (max-width: 767px) {
.desktop-video {
  display: none;
}

.mobile-video {
  display: block;
}
}


  .hero-content {
      position: relative;
      z-index: 1;
      color: white;
      text-align: center;
      top: 50%;
      transform: translateY(-50%);
  }
  .apres {
      background-color:#fff;
      position: relative;
      z-index: 2;
      margin-top: 100px;
  }
 
  /* About us */


/* ((((((((((((((((((((((((((((((((((((((((((((((((())))))))))))))))))))))))))))))))))))))))))))))))) */

.about-section {
color: #fff; /* Couleur du texte */
background-color: #6c1320; /* Couleur de fond */
padding: 100px 20px; /* Espaces intérieur haut/bas et gauche/droite */
text-align: center; /* Centrer le texte */
width: 100vw; /* Assure que la section occupe toute la largeur */
margin: 0; /* Supprime les marges */
box-sizing: border-box; /* Inclure les paddings dans la largeur */
}
.about-section h1 {
font-size: 2.5rem; /* Taille adaptée pour grands écrans */
margin-bottom: 20px; /* Espacement sous le titre */
}

.about-section p {
font-size: 1.2rem; /* Taille du texte */
line-height: 1.6; /* Hauteur de ligne pour améliorer la lisibilité */
max-width: 800px; /* Limite la largeur pour ne pas trop étirer le texte */
margin: 0 auto; /* Centrer le paragraphe */
}
@media (max-width: 768px) {
.about-section {
  padding: 50px 10px; /* Réduire le padding pour petits écrans */
}

.about-section h1 {
  font-size: 2rem; /* Réduire la taille du titre */
}

.about-section p {
  font-size: 1rem; /* Réduire la taille du texte */
}
}

@media (min-width: 1200px) {
.about-section h1 {
  font-size: 3.5rem; /* Augmenter la taille du titre sur grands écrans */
}

.about-section p {
  font-size: 1.5rem; /* Augmenter la taille des paragraphes */
  line-height: 1.8; /* Hauteur de ligne légèrement plus grande */
}
}

.wrapper {

/* max-width: 1200px; */
margin: 0;

}

.about-content {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
gap: 30px;
margin-top: 50px;
width: 100%;

}

.text-content {
flex: 1;
max-width: 600px;
padding: 20px;
}

.text-content h2 {
font-size: 2rem; /* Taille augmentée */
margin-bottom: 20px;
font-family: georgiab;

}

.text-content p {
flex: 1;
max-width: 600px;
padding: 20px;
}

.image-content img {
width: 100%;
max-width: 400px; /* Taille de l'image légèrement augmentée */
height: auto;
border-radius: 15px;
}


@media (max-width: 768px) {
.about-section h1 {
  font-size: 2rem; /* Taille ajustée pour les petits écrans */
}

.about-section p {
  font-size: 1rem; /* Taille ajustée pour les petits écrans */
}

.text-content h2 {
  font-size: 1.5rem; /* Taille ajustée */
}

.text-content p {
  font-size: 1rem;
}

.image-content img {
  max-width: 100%;
  margin-right: 10%;
}
}
.centered-title {
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-size: 2rem; /* Taille du texte pour les mobiles */
padding: 1rem;
margin: 0;
margin-top: 5%;
font-family: georgiab;
}

@media (min-width: 768px) {
.centered-title {
font-size: 3rem; /* Taille du texte pour les tablettes */
font-family: georgiab;

}
}

@media (min-width: 1024px) {
.centered-title {
font-size: 4rem; /* Taille du texte pour les écrans larges */
font-family: georgiab;

}
}
@media screen and (max-width: 524px){
.navbar-header{
padding-bottom:3% ;
}
}
@media screen and (max-width: 1024px){
.titl{
font-size: 0.2em;
}
}
@media screen and (max-width: 1024px){
.nosprj{
width: 50%;
}
}
.hide{
display: none;
}
/* @media screen and (max-width: 524px){
.gras{
font-size: 0;
}
} */
.gras{
font-family: PoppinsBold;
}
h1,h2{
color: #727070;
}
/* foooooooooooooooooooooooooooooter */
/* Global Styles */
/* Global Styles */
/* Global Styles */


/* a {
color: #fff;
text-decoration: none;
} */

.pg-footer {
font-family: 'ArbFONTS';
}

.footer {
background-color: #6c1320;
color: #fff;
}

/* Footer Wave */
.footer-wave-svg {
background-color: transparent;
display: block;
height: 30px;
width: 100%;
}

.footer-wave-path {
fill: #fff;
}

/* Footer Content */
.footer-content {
margin: 0 auto;
max-width: 1230px;
padding: 40px 15px;
display: flex;
flex-wrap: wrap;
gap: 30px;
}

.footer-content-column {
flex: 1;
min-width: 200px;
color: #fff;
text-align: center; /* Centrer tout dans la colonne */
}

.footer-menu-name {
font-size: 15px;
font-weight: 900;
letter-spacing: 0.1em;
text-transform: uppercase;
margin-bottom: 15px;
}

.footer-menu-list {
list-style: none;
padding: 0;
margin: 0 auto; /* Centrer horizontalement */
display: inline-block; /* Important pour centrer la liste */
}

.footer-menu-list li {
margin-bottom: 10px;
}

.footer-menu-list li a {
color: #fff;
display: flex;
align-items: center;
gap: 10px;
justify-content: center; /* Centrer le contenu du lien */
}

.footer-call-to-action-button {
background-color: #6c1320;
border: 2px solid #fffff2;
border-radius: 21px;
color: #fffff2;
padding: 12px 30px;
text-transform: uppercase;
font-weight: 900;
transition: background-color 0.2s, color 0.2s;
}

.footer-call-to-action-button:hover {
background-color: #fffff2;
color: #6c1320;
}

/* Copyright Section */
.footer-copyright {
background-color: #6c1320;
text-align: center;
padding: 15px 0;
}

.footer-copyright-text {
font-size: 13px;
line-height: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
.footer-content {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.footer-content-column {
  width: 100%;
}

.footer-menu-list {
  margin: 0 auto; /* Centrer les listes */
  display: inline-block; /* Important pour uniformiser avec les titres */
}

.footer-menu-list li {
  margin-bottom: 8px;
}

.footer-call-to-action-button {
  width: 100%;
  padding: 10px 0;
}
}

@media (max-width: 480px) {
.footer-menu-name {
  font-size: 14px;
}

.footer-menu-list li {
  font-size: 14px;
}

.footer-call-to-action-button {
  font-size: 14px;
  padding: 8px 0;
}

.footer-copyright-text {
  font-size: 12px;
}
}
@media (max-width: 524px){
.mob{
display: block;
}
}
/* Media Query pour les grands mobiles et tablettes */
@media (max-width: 768px) {
.carte {
  width: 150%; /* Rendre la carte plus grande */
  margin-left: -25%; /* Décaler la carte à gauche pour qu'elle soit centrée */
}
}

/* Media Query pour les mobiles moyens */
@media (max-width: 576px) {
.carte {
  width: 200%; /* Rendre la carte encore plus grande */
  margin-left: -50%; /* Décaler la carte pour la centrer */
}
}

/* Media Query pour les très petits mobiles */
@media (max-width: 524px) {
.carte {
  width: 200%; /* Agrandir encore davantage sur les très petits écrans */
  margin-left: -50%; /* Garder la carte centrée */
}
}

@media (max-width: 768px) {
.mobile-break {
  display: block;
}
}
body{
position: relative;
}
.whatsapp-sticker {
bottom: 50px;
right: 100px;
position: fixed;
width: 100px;
z-index: 1000;
transition: all 700ms;
}

.whatsapp-sticker:hover {
transform: scale(1.3);
}

.whatsapp-sticker .stick-elem {
width: 100%;
height: 100%;
filter: drop-shadow(2px 3px 3px #00000080);
}

.whatsapp-sticker .stick-elem img {
width: 100%;
}

@media (max-width: 580px) {
.whatsapp-sticker {
bottom: 10px;
right: 6px;
}
}
@font-face {
      font-family: Sinera;
      src: url(Fonts/Sinera.otf);
  }
  /* ------------------------------------------------------------------------------------------------------------- */
  /* @import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Quicksand:wght@300..700&display=swap"); */

*,
*:before,
*:after {
margin: 0;
padding: 0;
box-sizing: border-box;
/* font-family: "Quicksand", sans-serif; */
}

body {
background-color: #0d0a0b;
background: linear-gradient(145deg, #55566a 0%, #131318 76%);
overflow: hidden;
}

main {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 1fr;
place-items: center;
min-height: 100vh;
}

/* Content */

.content {
padding-left: 120px;
/* color: #c7c7c7c9; */
user-select: none;
}

.content h1 {
/* font-family: "Dancing Script", cursive; */
font-size: clamp(2.5rem, 4vw, 6rem);
font-weight: 700;
background: #6c1320;
/* background: -webkit-linear-gradient(0deg, #f76591, #ffc16f); */
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
line-height: 1.1;
margin-bottom: 36px;
padding-left: 10px;
}

.content p {
flex: 1;
max-width: 600px;
padding: 20px;
font-size: 1em;
text-align: justify;
}



/* Stacked Cards */

.stack {
position: relative;
}

.card {
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
width: 400px;
height: 400px;
border-radius: 2rem;
/* box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.25),
0 15px 20px 0 rgba(0, 0, 0, 0.125); */
transition: transform 0.6s;
user-select: none;
}

.card img {
display: block;
width: 100%;
height: 100%;
border-radius: inherit;
object-fit: cover;
pointer-events: none;
}

.card:nth-last-child(n + 5) {
--x: calc(-50% + 90px);
transform: translate(var(--x), -50%) scale(0.85);
/* box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.01); */
}

.card:nth-last-child(4) {
--x: calc(-50% + 60px);
transform: translate(var(--x), -50%) scale(0.9);
}

.card:nth-last-child(3) {
--x: calc(-50% + 30px);
transform: translate(var(--x), -50%) scale(0.95);
}

.card:nth-last-child(2) {
--x: calc(-50%);
transform: translate(var(--x), -50%) scale(1);
}

.card:nth-last-child(1) {
--x: calc(-50% - 30px);
transform: translate(var(--x), -50%) scale(1.05);
}

/* .card:nth-last-child(1) img {
box-shadow: 0 1px 5px 5px rgba(255, 193, 111, 0.5);
} */

.swap {
animation: swap 1.3s ease-out forwards;
}

@keyframes swap {
30% {
transform: translate(calc(var(--x) - 250px), -50%) scale(0.85) rotate(-5deg)
rotateY(65deg);
}
100% {
transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
z-index: -1;
}
}

/* Media queries for keyframes */

@media (max-width: 1200px) {
@keyframes swap {
30% {
transform: translate(calc(var(--x) - 200px), -50%) scale(0.85)
  rotate(-5deg) rotateY(65deg);
}

100% {
transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
z-index: -1;
}
}
}

@media (max-width: 1050px) {
@keyframes swap {
30% {
transform: translate(calc(var(--x) - 150px), -50%) scale(0.85)
  rotate(-5deg) rotateY(65deg);
}

100% {
transform: translate(calc(var(--x) - 30px), -50%) scale(0.5);
z-index: -1;
}
}
}

/* Media queries for other classes */

@media (max-width: 1200px) {
.content {
padding-left: 80px;
}

.content p {
padding-right: 40px;
text-align: justify;
}

.card {
width: 380px;
height: 380px;
}
}

@media (max-width: 1050px) {
.content {
padding-left: 60px;
}

.content p {
line-height: 1.5;
}

.card {
width: 350px;
height: 350px;
}
}

@media (max-width: 990px) {
.content p {
padding-right: 0;
}

.card {
width: 300px;
height: 300px;
}
}

@media (max-width: 950px) {
main {
grid-template-columns: 1fr;
grid-template-rows: 4fr 3fr;
grid-template-areas:
"stacked"
"content";
}

.content {
grid-area: content;
text-align: center;
padding: 0 90px;
}

.btn {
margin-bottom: 30px;
}

.stack {
grid-area: stacked;
}
}

@media (max-width: 650px) {
main {
grid-template-rows: 1fr 1fr;
}

.content {
padding: 0 50px;
}

.content h1 {
padding-left: 0;
}

.btn {
padding: 8px 16px;
}

.card {
width: 260px;
height: 260px;
}
}
@font-face {
      font-family: RusticRoadway;
      src: url(Fonts/RusticRoadway.otf);
  }

  .social {
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement (si nécessaire) */
    text-decoration: none;
    gap: 10px; /* Espacement entre les icônes */
}

.social a {
    font-size: 2em;
}

@media (max-width: 768px) { /* Pour les écrans de 768px ou moins */
    .social {
        justify-content: center;
        margin: 0 auto; /* Centrer avec des marges automatiques */
    }
}
