@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*****
INDEX
*****/
.advertize {
  text-align: center;
}

/****
HOME
****/

.home-img-box {
  display: flex;
  justify-content: center;
}

.main-home {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  padding: 0 1.2rem;
}

.main-home-img {
  display: block;
  width: 100%;
}

.main-text {
  text-align: left;
  padding: 0px 5px;
}

/***********
INFO - BDSM
***********/
.info-bdsm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 3.2rem;
  grid-row-gap: 3.2rem;
  text-align: center;
  align-items: center;
  grid-column-gap: 3.2rem;
}

.info-bdsm .panel {
  width: 100%;
  max-width: 700px; /* uniformise la largeur */
  background-color: rgba(25, 25, 25, 0.78);
  border: 1px solid darkgoldenrod;
  border-radius: 12px;
  padding: 2rem 2.4rem;
  box-shadow: 0 0 14px rgba(218, 165, 32, 0.2);
  text-align: left;
  min-height: var(--infoCardH); /* toutes les cartes égales */
  display: flex;
  flex-direction: column;
}

/* Titres dans les cartes */
.info-bdsm .panel h2 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  text-align: center;
  text-shadow: 0 0 18px rgba(218, 165, 32, 0.18);
}

/* Listes plus lisibles */
.info-bdsm .panel ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  font-size: 1.3rem;
  line-height: 1.55;
}

/* Puces dorées personnalisées */
.info-bdsm .panel ul li {
  position: relative;
  padding-left: 1.4rem;
}
.info-bdsm .panel ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 0.05rem;
  font-size: 0.85rem;
  color: darkgoldenrod;
}

.intro-info-bdsm {
  max-width: 1000px;
  margin: 0 auto 3.2rem auto;
  padding: 2rem 3rem;
  background-color: rgba(40, 40, 40, 0.8);
  border: 1px solid darkgoldenrod;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}
.intro-info-bdsm p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: palegoldenrod;
  text-align: left;
}

.info-bdsm-img {
  object-fit: cover;
  max-height: 520px;
  border-radius: 14px;
  /*  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 24px rgba(218, 165, 32, 0.18);*/
  box-shadow: 0.1rem 0.1rem 0.5rem 0.5rem #333;
}

.info-bdsm a {
  position: relative;
  color: darkgoldenrod;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
.info-bdsm a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: darkgoldenrod;
  transition: width 0.3s ease-in-out;
}
.info-bdsm a:hover {
  color: palegoldenrod;
}
.info-bdsm a:hover::after {
  width: 100%;
}

/* On applique un effet subtil même sur les textes non-liens */
.info-bdsm li {
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.info-bdsm li:hover {
  color: palegoldenrod;
  transform: translateX(4px);
}

.info-bdsm li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: darkgoldenrod;
  transition: width 0.3s ease-in-out;
}

.info-bdsm li:hover::after {
  width: 100%;
}

/* 5) Encadrés (cartes) de hauteur uniforme sur desktop */
:root {
  --infoCardH: 520px;
} /* ajuste si besoin */

/*********************
RUBRIQUES INFORMATIVES
PRATIQUES DIVERSES
ACCESSOIRES DIVERS
CONTRATS / LIMITES
**********************/
.subsection {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin: 5px 10px;
}

.subsection img {
  width: 800px;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45);
}

/* ===== Grille fondements (scope local) ===== */
.cards-foundations {
  display: grid;
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  gap: 1rem 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  width: 100%;
}

/* ===== Carte ===== */
.cards-foundations .card {
  --bg: var(--card-bg);
  --bd: var(--card-border);
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 64px; /* hauteur unifiée */
  padding: 0.75rem 1rem 0.75rem 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* liseré doré discret sur le bord */
.cards-foundations .card::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 6px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    var(--gold-1) 0%,
    var(--gold-2) 55%,
    var(--gold-3) 100%
  );
  opacity: 0.9;
  box-shadow: 0 0 8px rgba(231, 182, 75, 0.35);
}

/* ===== Icône drapeau doré (géométrie stable) ===== */
.cards-foundations .icon-flag {
  width: 26px;
  min-width: 26px;
  height: 26px;
  position: relative;
  margin-left: 6px; /* espace entre bord et icône */
}
/* tige */
.cards-foundations .icon-flag::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 2px;
  width: 6px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--gold-2), var(--gold-3));
  box-shadow: 0 0 6px rgba(231, 182, 75, 0.35);
}
/* tête */
.cards-foundations .icon-flag::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 40% 35%,
    var(--gold-1) 0%,
    var(--gold-2) 65%,
    var(--gold-3) 100%
  );
  box-shadow: 0 0 6px rgba(231, 182, 75, 0.55);
}

/* === Couleur rouge pour l'icône au survol === */
.cards-foundations .card:hover .icon-flag::before,
.cards-foundations .card:focus-visible .icon-flag::before {
  background: linear-gradient(180deg, #ff4d4d, #a02020);
  box-shadow: 0 0 10px rgba(255, 60, 60, 0.6);
}

.cards-foundations .card:hover .icon-flag::after,
.cards-foundations .card:focus-visible .icon-flag::after {
  background: radial-gradient(
    circle at 40% 35%,
    #ff7a7a 0%,
    #ff4d4d 65%,
    #a02020 100%
  );
  box-shadow: 0 0 10px rgba(255, 60, 60, 0.6);
}

/* === Barre verticale rouge au survol === */
.cards-foundations .card:hover::before,
.cards-foundations .card:focus-visible::before {
  background: linear-gradient(180deg, #ff4d4d 0%, #a02020 100%);
  box-shadow: 0 0 10px rgba(255, 60, 60, 0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* ===== Libellé ===== */
.cards-foundations .label {
  color: var(--gold-1);
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.35;
  font-size: 0.8rem;
}

/* ===== Hover / Focus ===== */
.cards-foundations .card:hover,
.cards-foundations .card:focus-visible {
  transform: translateY(-4px);
  background: rgba(80, 0, 0, 0.35); /* léger reflet rouge sur fond sombre */
  border-color: #a02020; /* rouge foncé */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.55), 0 0 14px rgba(255, 60, 60, 0.45),
    inset 0 0 8px rgba(160, 32, 32, 0.45);
  transition: all 0.3s ease;
}
.cards-foundations .card:hover .label,
.cards-foundations .card:focus-visible .label {
  color: #ff4d4d; /* rouge clair lumineux */
  text-shadow: 0 0 8px rgba(255, 80, 80, 0.6);
}

.printable-box {
  background: var(--card-bg);
  border: 1px solid var(--gold-3);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  margin: 3rem auto;
  max-width: 800px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55),
    0 0 6px rgba(245, 210, 122, 0.25) inset;
  color: var(--gold-1);
  text-align: left;
}

.printable-box h2 {
  color: var(--gold-2);
  margin-bottom: 1rem;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  text-align: center;
}

.printable-box p {
  margin-bottom: 1rem;
  color: var(--text-main);
}

.printable-box .checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.printable-box .checklist li {
  position: relative;
  margin: 0.5rem 0;
  padding-left: 1.6rem;
  color: var(--gold-1);
  font-weight: 500;
}

.printable-box .checklist li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold-2);
  font-size: 0.9rem;
}

.printable-box .note {
  margin-top: 1.2rem;
  text-align: center;
  color: var(--gold-2);
  font-style: italic;
}

.print-button {
  text-align: center;
  margin-top: 1rem;
}
.print-button button {
  background: var(--gold-2);
  border: none;
  color: #000;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.print-button button:hover {
  background: #a02020;
  color: #fff;
  box-shadow: 0 0 10px rgba(255, 80, 80, 0.5);
}

.drop-box {
  background: var(--card-bg);
  border: 1px solid var(--gold-3);
  border-radius: 12px;
  padding: 1.3rem 1.6rem;
  margin-top: 2rem;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.45),
    inset 0 0 6px rgba(245, 210, 122, 0.18);
  color: var(--text-main);
}

.drop-box h3 {
  color: var(--gold-2);
  margin-bottom: 0.6rem;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.drop-box ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem 0;
}

.drop-box ul li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.4rem;
}

.drop-box ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold-2);
  font-size: 0.9rem;
}

/*****************************
RUBRIQUES INFORMATIVES SECTION
******************************/
.sectionrubriques {
  padding: 0px 20px;
}

.sectionrubriques p {
  margin-bottom: 1.2rem;
}

.sectionrubriques ul {
  font-size: 1.4rem;
  margin-left: 3.2rem;
  line-height: 1.4;
  margin-bottom: 2.4rem;
}

.sectionrubriques ol {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-left: 3.2rem;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 2.4rem;
}

.sectionrubriques ol li::marker,
.sectionrubriques ul li::marker {
  color: white;
}

.golden-list {
  list-style: none;
  counter-reset: goldcount;
  padding: 0;
  margin: 1.5rem 0;
}

.golden-list li {
  counter-increment: goldcount;
  margin-bottom: 1rem;
  padding-left: 2.2rem;
  position: relative;
  color: var(--text-main);
  line-height: 1.55;
}

.golden-list li::before {
  content: counter(goldcount, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  color: var(--gold-2);
  font-family: "Cinzel", serif;
  font-size: 1.1rem;
  text-shadow: 0 0 6px rgba(245, 210, 122, 0.35);
}

.credit {
  margin-top: 1.4rem;
  font-style: italic;
  text-align: right;
  color: var(--gold-3);
}

/* ================================
   TABLEAU DES LIMITES / PRÉFÉRENCES / AFTERCARE
   ================================ */

.limit-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background-color: var(--card-bg, #1b1b1b);
  color: var(--gold-1, #d1b97f);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--gold-3, #b18c47);
  border-left: 4px solid var(--gold-3, #b18c47);
  border-radius: 6px;
  overflow: hidden;
  font-size: 1rem;
}

.limit-table th,
.limit-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.limit-table th {
  background-color: rgba(255, 215, 0, 0.08);
  color: var(--gold-2, #f0dca5);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.limit-table tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.02);
}

.limit-table tbody tr:hover {
  background-color: rgba(255, 0, 0, 0.1);
  transition: background-color 0.2s ease-in-out;
}

.limit-table td:first-child {
  font-weight: 500;
  color: var(--gold-1, #d1b97f);
}

.limit-table td:last-child {
  color: #bbb;
  font-style: italic;
}

.limit-table input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: var(--gold-3, #b18c47);
}

@media screen and (max-width: 768px) {
  .limit-table {
    font-size: 0.9rem;
  }

  .limit-table th,
  .limit-table td {
    padding: 0.7rem;
  }
}

/* ================================
   TABLE DE SIGNATURES — CONTRATS BDSM
   ================================ */

.signature-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  background-color: var(--card-bg, #1b1b1b);
  color: var(--gold-1, #d1b97f);
  border: 1px solid var(--gold-3, #b18c47);
  border-left: 4px solid var(--gold-3, #b18c47);
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.signature-table td {
  width: 50%;
  padding: 2rem 1.5rem;
  vertical-align: top;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  line-height: 1.6;
}

.signature-table td:last-child {
  border-right: none;
}

.signature-table strong {
  color: var(--gold-2, #f0dca5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.signature-table td input,
.signature-table td textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--gold-1, #d1b97f);
  padding: 0.5rem;
  border-radius: 4px;
  margin-top: 0.3rem;
  font-family: inherit;
  font-size: 0.95rem;
}

.signature-table td input:focus,
.signature-table td textarea:focus {
  outline: none;
  border-color: var(--gold-3, #b18c47);
  background-color: rgba(255, 255, 255, 0.08);
}

.signature-table td::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--gold-3, #b18c47);
  margin-bottom: 0.7rem;
}

@media screen and (max-width: 768px) {
  .signature-table td {
    display: block;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 1rem;
  }
  .signature-table td:last-child {
    border-bottom: none;
  }
}

/*********
POLITIQUE
*********/
.politique {
  display: flex;
  flex-direction: column;
  font-size: 1.2rem;
  gap: 1.2rem;
  list-style: none;
  margin-left: 2.4rem;
}

.politique li {
  text-align: left;
}

/* NAVBAR - DESKTOP MODE */
.navbar input[type="checkbox"],
.navbar .hamburger-lines {
  display: none;
}

.navbar {
  box-shadow: 0px 5px 10px 0px #aaa;
  position: fixed;
  top: 0px;
  width: 100%;
  background: #000;
  color: red;
  opacity: 0.85;
  height: 90px;
  z-index: 12;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.menu-items {
  order: 2;
  display: flex;
  flex-flow: row wrap;
  padding-right: 8rem;
}

.menu-items li {
  list-style: none;
  margin-left: 1rem;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.menu-items a:link,
.menu-items a:visited {
  text-decoration: none;
  color: darkgoldenrod;
  transition: color 0.3s ease-in-out;
}

.menu-items a:hover,
.menu-items a:active {
  color: palegoldenrod;
  transition: color 0.3s ease-in-out;
}

.logo {
  order: 1;
  font-size: 2.3rem;
  margin: 0.2rem;
  padding-left: 0.5rem;
}

.logo img {
  display: block;
  width: 100%;
}

.has-submenus {
  position: relative;
  color: darkgoldenrod;
  cursor: pointer;
}

.has-submenus:after {
  content: "\025BC";
}

.has-submenus:hover > ul,
.has-submenus:focus > ul {
  display: block;
}

.has-submenus ul {
  display: none;
  position: absolute;
  padding: 5px 0px;
  min-width: 100%;
  border: 1px solid #888;
  line-height: 2;
  white-space: nowrap;
  background-color: #fff;
  border-radius: 5px;
}

.has-submenus ul a:hover,
.has-submenus ul a:active {
  color: black;
}

/*************************
FOOTER
*************************/
.footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  top: 91px;
  font-size: 1.2rem;
  gap: 1.2rem;
  margin-bottom: 9.6rem;
  margin-top: 2.4rem;
}

.footer a {
  font-size: 0.8rem;
}

.footer img {
  display: inline;
  height: 20px;
}

.fo-column {
  text-align: center;
  padding: 0 1.6rem;
  font-size: 1.6rem;
}

/****
SIZE
****/
#size {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
}
