*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    background-color: #f8f1d6;
    font-family: Arial, Helvetica, sans-serif;
    list-style: none;
    font-size: 16px;
}

/**************TYPO**************/

@font-face {
    font-family: "Garet";
    src:
      local("Garet"),
      url("Maison Maraouch\font\Garet-Book.otf") format("opentype") tech(color-COLRv1),
      url("Garet-Book.otf") format("opentype"),
      url("trickster-outline.woff") format("woff");
  }
  @font-face {
    font-family: "Garet-Heavy";
    src:
      local("Garet-Heavy"),
      url("Maison Maraouch\font\Garet-Heavy.otf") format("opentype") tech(color-COLRv1),
      url("Garet-Heavy.otf") format("opentype"),
      
  }


/*********************HEADER*******************/



header{
    width: 100%;
    padding: 1% 0%;  
}
.hero_section{
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
header img{
    width: 40%;
    height: auto;
}
.logo1{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
.logo h1{
    margin: 0 auto;
    font-size: 20px;
    text-align: center;
}
.menu{
    width: 100%;
    height: auto;
    margin: 20px auto;
    text-align: center;
}
.menu ul li a {
    color: #b59848;
    font-weight: 500;
    padding: 20px;
    text-decoration: none;
    font-size: 18px;
}
nav{
    width: 40%;
    height: auto;
    margin: 0 auto;
    padding: 10px;
    display: block;
    border-top: solid;
    border-bottom: solid;
    color: #b59848;
}
nav ul{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    list-style: none;
}
nav ul li a:hover {
    color: #10344A;
}

/*******************SECTION00****************/

.section00{
    width: 30%;
    height: auto;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.section00 img{
    width: 100%;
    height: auto;
    padding: 10px;
}

/********************TABLEAU*****************/

table {
    border-collapse: collapse;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }
  table tbody tr td {
    width: 200px;
    height: auto;
  }
  tfoot {
    background-color: rgb(228 240 245);
  }
  th,
  td {
    padding: 8px 10px;
    font-family: Garet;
    font-size: 16px;
    color: #10344A;
  }
  td:last-of-type {
    text-align: center;
  }
  tbody > tr:nth-of-type(even) {
    background-color: rgb(237 238 242);
  }
  tfoot th {
    text-align: right;
  }
  tfoot td {
    font-weight: bold;
  }

  /*****************GENERAL****************/

div { 
    width: 70%;
    height: auto;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

section{
    width: 50%;
    height: auto;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
    justify-content: center;
}

h2{ 
   
    width: 100%;
    height: auto;
    display: flex;
    color: #b59848;
    font-weight: 600;
    font-family: Garet-Heavy;
    font-size: 26px;    
}

h3{ 
    margin-bottom: 15px;
    width: 70%;
    height: auto;
    display: flex;
    color: #b59848;
    font-size: 20px;
    font-family: Garet-Heavy;
    font-weight: 400;
    margin-top: 15px;
    margin: 0 auto;
}

h4{
    width: 70%;
    margin: 0 auto;
    height: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    font-family: Garet ;
    color: #10344A;
}

p{
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    font-family: Garet ;
}

.paragraphe {
  width: 70%;
  height: auto;
  margin: 0 auto;
}

/*************************FOOTER************************/

footer {
    background-color: #b59848; /* Fond coloré */
    text-align: center; /* Centrer le texte */
    padding: 20px 10px;
    font-family: Arial, sans-serif;
    margin-top: 50px;
}

footer p{
    background-color: #b59848;
    color: white;
    justify-content: center;
}

/* Style des images cliquables */
.image-container {
    margin-top: 10px;
    display: flex;
    justify-content: center; /* Centrer les images horizontalement */
    gap: 15px; /* Espacement entre les images */
    background-color: #b59848;
}

.image-container a {
    display: inline-block;
    background-color: #b59848;
    margin-top: 20px;
    margin-bottom: 20px;
}

.image-container img {
    width: 40px; /* Taille des images */
    height: 40px;
    object-fit: cover;
    transition: transform 0.3s ease;
    background-color: #b59848;
}

.image-container img:hover {
    transform: scale(1.1); /* Effet zoom au survol */
}

/*****************BACK TO TOP*****************/

.Btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    border: solid #b59848;
    margin: 0 auto;
  }
  
  .arrow path {
    fill: white;
  }
  
  .text {
    font-size: 0.7em;
    width: 100px;
    position: absolute;
    color: #10344A;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: -30px;
    opacity: 0;
    transition-duration: .7s;
    text-align: center;
    font-family: Garet;
  }
  
  .Btn:hover .text {
    opacity: 1;
    transition-duration: .7s;
  }
  
  .Btn:hover .arrow {
    animation: slide-in-bottom .7s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  }
  
  @keyframes slide-in-bottom {
    0% {
      transform: translateY(10px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .back{
    display: flex;
    margin-top: 20px;
  }

  /********************************************************/
  


  .title-line {
    display: flex;
    align-items: center;
    gap: 3px;
    width: 70%;
    align-items: center;
    margin: 10px auto;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin: 10px auto;
    padding: 0 auto;
    text-transform: uppercase;
    white-space: nowrap;
}

.line {
    width: 100%;
    flex-grow: 1;
    height: 2px;
    background-color: #b59848;
}


/*************************************/
  /* Radio inputs */
.radio-inputs {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 0.25rem;
    width: 60%;
    font-size: 14px;
    margin-top: 20px;
  }
  
  .radio-inputs .radio {
    flex: 1 1 auto;
    text-align: center;
  }
  
  .radio-inputs .radio input {
    display: none;
  }
  
  .radio-inputs .radio .name {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    border: none;
    padding: .5rem 0;
    color: #10344A;
    transition: all .15s ease-in-out;
    font-family: Garet;
  }
  
  .radio-inputs .radio input:checked + .name {
    background-color: #b59848;
    font-weight: 600;
  }
  
.tab-content {
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Chaque contenu est masqué par défaut */
.tab-content .content {
  display: none;
  padding: 1rem;
  border-radius: 0.5rem;
}

/* Contenus actifs (affichés) */
.tab-content .content.active {
  display: block;
}

 


  



