/* Polices personnalisées */
@font-face {
  font-family: 'AlmarenaDisplayLight';
  src: url('../font/AlmarenaDisplayLight.woff') format('woff');
}
@font-face {
  font-family: 'AlmarenaDisplayRegular';
  src: url('../font/AlmarenaDisplayRegular.woff') format('woff');
}
@font-face {
  font-family: 'BarlowCondensedLight';
  src: url('../font/BarlowCondensed-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'FuturaStdBook';
  src: url('../font/FuturaStd-Book.otf') format('opentype');
}
@font-face {
  font-family: 'FuturaStdMedium';
  src: url('../font/FuturaStd-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'PT_Sans_Narrow';
  src: url('../font/PT_Sans-Narrow-Web-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'PT_Sans_Narrow_Bold';
  src: url('../font/PT_Sans-Narrow-Web-Bold.ttf') format('truetype');
}

:root {
  /* Couleurs */
  --rose: #f7bfc9;
  --rose-fonce: #e88fa2;
  --gris-fond: #f4f4f4;
  --gris-texte: #A8A6A6;
  --blanc: #fff;

  /* Footer colors */
  --awb-color1: #fff;
  --awb-color3: #fff;
  --awb-color4: #f7bfc9;
  --awb-color8: #f7bfc9;
  --awb-custom_color_3: #333;

  /* Polices */
  --font-titre: 'FuturaStdMedium', 'BarlowCondensedLight', Arial, sans-serif;
  --font-texte: 'AlmarenaDisplayLight', Arial, sans-serif;
  --font-footer: 'PT_Sans_Narrow', Arial, sans-serif;

  /* Tailles de police */
  --size-h1: 45px;
  --size-h2: 38px;
  --size-p: 16px;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-texte), Arial, sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

h1, h2 {
  font-family: var(--font-titre), Arial, sans-serif;
  color: var(--rose-fonce);
  font-size: var(--size-h2);
}

p {
  font-size: var(--size-p);
  line-height: 37px;
}

header.title {
  background-image: url(../img/header_top.png);
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  height: 400px;
  background-position: 0 -272px;
}

header img{
  width: 350px;
  margin-top: 50px;
}

header .main-title {
  font-family: var(--font-titre), Arial, sans-serif;
  font-size: var(--size-h1);
  color: var(--rose-fonce);
  margin: 20px 0 40px;
}

header .subtitle {
  font-family: var(--font-titre), Arial, sans-serif;
  font-size: 24px;
  color: var(--gris-texte);
}

section {
  width: 1060px;
  margin: 50px auto;
}

div.img_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

div.img_text img {
  max-width: 500px;
}

div.img_text p {
  font-size: var(--size-p);
  line-height: 40px;
  width: 500px;
  max-width: 100%;
}

section.apero {
  background-image: url(../img/charcuterieUV9.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: 70px 0;
  box-sizing: border-box;
}

div.container {
  display: flex;
  width: 1060px;
  margin: 0px auto;
}

section.apero div.black_transp{
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
  width: 650px;
  max-width: 100%;
  box-sizing: border-box;
}

div.container div.black_transp p {
  color: var(--blanc);
  font-size: var(--size-p);
}

section.tenue-givree div.container img{
  width: inherit;
}

section.nb_flacon {
    background-color: var(--rose-fonce);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    padding: 70px 0;
    box-sizing: border-box;
}

section.nb_flacon div.container {
    display: flex;
    width: min(1060px, 100%);
    margin: 0 auto;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

section.nb_flacon div.container h2 {
    color: var(--blanc);
    font-size: var(--size-h2);
    text-align: center;
    margin: 0;
}

section.nb_flacon div.container img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
}

section.nb_flacon .button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.button {
    display: inline-block;
    background-color: var(--rose-fonce);
    border: #fff 1px solid;
    color: #fff;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 999px;
    font-family: var(--font-titre);
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.button:hover {
    background-color: #f6b3c4;
}

section.nb_flacon .button {
    display: inline-block;
    background-color: var(--rose-fonce);
    border: #fff 1px solid;
    color: #fff;
    text-decoration: none;
    padding: 16px 28px;
    border-radius: 999px;
    font-family: var(--font-titre);
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

section.nb_flacon .button:hover {
    background-color: #f6b3c4;
}

section.gris h2{
  color: var(--gris-texte);

}

section.text_button {
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
}

section.text_button p {
  max-width: 1060px;
  margin: 0;
}

section.text_button .button {
  display: inline-block;
  align-self: center;
}

section.reseau_sociaux {
  width: 100%;
  background-color: rgba(247, 191, 201, 0.18);
  padding: 60px 20px;
  box-sizing: border-box;
  text-align: center;
}

section.reseau_sociaux h2 {
  max-width: 1060px;
  margin: 0 auto 30px;
  color: var(--rose-fonce);
  font-size: 2rem;
  line-height: 1.1;
}

section.reseau_sociaux .ligne_rs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

section.footer {
  background-color: var(--rose-fonce);
  width: 100%;
  box-sizing: border-box;
  padding: 60px 0 40px;
  color: white;
}

section.footer .footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: min(1060px, 100%);
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}

section.footer .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

section.footer .footer-logo {
  width: 150px;
  max-width: 100%;
}

section.footer .family-name {
  font-size: 16px;
  letter-spacing: 9px;
  margin: 0;
}

section.footer .address {
  font-size: 14px;
  letter-spacing: 5px;
  margin: 0;
  text-align: center;
}

section.footer .footer-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

section.footer .footer-text {
  text-align: center;
  margin: 20px 0;
  font-family: var(--font-footer) ;
}

section.footer .satire {
  font-size: 30px;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: ;
  line-height: 50px;
  color: #000;
}

section.footer a img {
  width: 28px;
  height: 28px;
}

.social-icon {
  filter: invert(1);
}

section.reseau_sociaux .ligne_rs a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: rgba(232, 143, 162, 0.12);
  transition: transform 0.2s ease, background-color 0.2s ease;
}

section.reseau_sociaux .ligne_rs a:hover {
  transform: translateY(-3px);
  background-color: rgba(232, 143, 162, 0.22);
}

section.reseau_sociaux .ligne_rs img {
  width: 28px;
  height: 28px;
  filter: invert(18%) sepia(66%) saturate(3997%) hue-rotate(-14deg) brightness(95%) contrast(86%);
}

section.complicite{
  background-image: url(../img/bg_tapiserie.png);
  width: 100%;
  padding: 70px 0;
  box-sizing: border-box;
}

section.complicite h2 {
  color: var(--blanc);
  font-size: var(--size-h2);
  margin: 0 0 40px 0;
  text-align: left;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}

section.complicite div.container {
  display: flex;
  width: min(1060px, 100%);
  margin: 0 auto;
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

section.complicite div.container img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  flex: 1;
}

section.fiche-technique {
  width: 100%;
  padding: 60px 0;
  box-sizing: border-box;
}

.fiche-container {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.08);
}

.fiche-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  text-align: center;
}

.fiche-header .logo-container {
  width: 110px;
  min-width: 110px;
}

.fiche-header .logo-container img {
  width: 100%;
  height: auto;
  display: block;
}

.fiche-title h2 {
  font-size: 2.2rem;
  color: var(--rose-fonce);
  margin-bottom: 10px;
}

.fiche-title p {
  color: #777;
  line-height: 1.6;
}

.fiche-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.fiche-table th,
.fiche-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #f0f0f0;
  text-align: left;
  vertical-align: top;
}

.fiche-table th {
  width: 45%;
  font-weight: 500;
  color: #777;
}

.fiche-table td {
  font-weight: 400;
  color: #111;
}

.fiche-table .category-header {
  font-weight: 600;
  color: #111;
  padding-top: 35px;
  padding-bottom: 10px;
  border-bottom: 2px solid #111;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.fiche-table .category-note {
  text-transform: none;
  font-weight: normal;
  color: #777;
}

.fiche-table .small-note {
  display: block;
  color: #777;
  font-size: 13px;
  margin-top: 4px;
}

.fiche-table tr:last-child th,
.fiche-table tr:last-child td {
  border-bottom: none;
}

/* RESPONSIVE - Tablette (jusqu'à 768px) */
@media (max-width: 768px) {
  :root {
    --size-h1: 32px;
    --size-h2: 28px;
    --size-p: 14px;
  }

  header.title {
    height: 300px;

  }

  header img {
    width: 250px;
    margin-top: 30px;
  }

  header .main-title {
    margin: 15px 0 25px;
    font-size: var(--size-h1);
  }

  header .subtitle {
    font-size: 18px;
  }

  section {
    width: 90% !important;
    margin: 40px auto !important;
    padding: 0 10px;
  }

  div.img_text {
    flex-direction: column;
    gap: 15px;
  }

  div.img_text p {
    width: 100%;
    line-height: 35px;
  }

  div.img_text img {
    width: 100%;
  }

  div.container {
    width: 90%;
    margin: 0 auto;
    padding: 0 10px;
  }

  section.apero {
    padding: 50px 0;
    background-attachment: fixed;
    background-position: center;
  }

  section.apero div.black_transp {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    max-width: 100%;
  }

  section.apero h2 {
    font-size: var(--size-h2);
  }

  section.apero p {
    font-size: var(--size-p);
    line-height: 32px;
  }

  section.nb_flacon div.container {
    width: 100%;
    padding: 0 15px;
  }

  section.nb_flacon div.container h2 {
    font-size: 2rem;
  }

  section.complicite div.container {
    flex-direction: column;
    gap: 15px;
  }

  section.complicite div.container img {
    max-width: 100%;
  }

  section.complicite h2 {
    text-align: left;
    padding: 0 15px;
    font-size: 2rem;
  }

  .fiche-container {
    padding: 30px;
  }

  .fiche-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .fiche-header .logo-container {
    width: 90px;
  }

  .fiche-title h2 {
    font-size: 1.9rem;
  }

  .fiche-table th,
  .fiche-table td {
    padding: 12px 10px;
  }

  .fiche-table th {
    width: 100%;
  }
}

/* RESPONSIVE - Tablette moyenne (769px à 1060px) */
@media (min-width: 769px) and (max-width: 1060px) {
  section {
    width: 95% !important;
    margin: 40px auto !important;
  }

  div.container {
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }

  section.apero {
    width: 100%;
    padding: 60px 0;
  }

  section.apero div.black_transp {
    width: 100%;
  }

  section.nb_flacon div.container {
    padding: 0 20px;
  }
}

/* RESPONSIVE - Mobile (jusqu'à 480px) */
@media (max-width: 480px) {
  :root {
    --size-h1: 24px;
    --size-h2: 20px;
    --size-p: 13px;
  }

  header.title {
    height: 250px;
  }

  header img {
    width: 180px;
    margin-top: 20px;
  }

  header .main-title {
    margin: 10px 0 15px;
    font-size: var(--size-h1);
  }

  header .subtitle {
    font-size: 14px;
  }

  section {
    width: 100% !important;
    margin: 20px 0 !important;
    padding: 0 15px;
    max-width: 100%;
  }

  h1, h2 {
    font-size: var(--size-h2);
  }

  p {
    font-size: var(--size-p);
    line-height: 24px;
  }

  div.img_text {
    flex-direction: column;
    gap: 10px;
  }

  div.img_text p {
    width: 100%;
    line-height: 24px;
    font-size: var(--size-p);
    max-width: 100%;
  }

  div.img_text img {
    width: 100%;
  }

  div.container {
    width: 95%;
    margin: 0 auto;
    flex-direction: column;
    max-width: 100%;
    padding: 0;
  }

  section.apero {
    padding: 40px 0;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
  }

  section.apero div.black_transp {
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    max-width: 100%;
  }

  section.apero h2 {
    font-size: var(--size-h2);
    margin: 10px 0;
  }

  section.apero p {
    font-size: var(--size-p);
    line-height: 20px;
  }

  section.apero div.black_transp h2 {
    font-size: var(--size-h2);
    margin: 10px 0;
  }

  section.apero div.black_transp p {
    font-size: var(--size-p);
    line-height: 22px;
  }

  section.complicite {
    padding: 50px 0;
  }

  section.complicite h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: left;
    padding: 0 15px;
  }

  section.complicite div.container {
    padding: 0 15px;
  }

  section.reseau_sociaux {
    padding: 40px 15px;
  }

  section.reseau_sociaux h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  section.reseau_sociaux .ligne_rs {
    gap: 16px;
  }

  section.reseau_sociaux .ligne_rs a {
    width: 48px;
    height: 48px;
  }

  section.reseau_sociaux .ligne_rs img {
    width: 24px;
    height: 24px;
  }
}