/* =========================================================
   COMMON.LESS
   Base commune du site : variables, mixins, reset, helpers
   ========================================================= */
/* ---------- Variables ---------- */
/* ---------- Mixins ---------- */
/* =========================================================
   GLOBAL THEME VARIABLES
   Ces variables ne sont PAS liées au header.
   Elles pilotent tout le site via #main.main-theme-dark / light.
   ========================================================= */
/* =========================================================
   GLOBAL STRUCTURE VARIABLES
   ========================================================= */
/* =========================================================
   HOME.LESS
   Styles spécifiques à la home
   Les couleurs viennent uniquement du thème global #main
   ========================================================= */
.main-section {
  overflow: hidden;
  color: var(--theme-text);
}
/* ---------- HERO ---------- */
.section-hero {
  padding: 72px 0 40px;
}
.section-hero .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 42px;
  align-items: center;
}
.section-hero .hero-grid .hero-content {
  max-width: 680px;
}
.section-hero .hero-grid .hero-content .hero-text {
  font-size: 18px;
  margin-bottom: 28px;
  color: var(--theme-text-soft);
}
.section-hero .hero-grid .hero-content .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.section-hero .hero-grid .hero-content .hero-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.section-hero .hero-grid .hero-content .hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--theme-card);
  border: 1px solid var(--theme-border);
  color: var(--theme-text-soft);
  font-size: 14px;
}
.section-hero .hero-grid .hero-content .hero-points i {
  color: var(--theme-secondary);
}
.btn-hero {
  padding-left: 24px;
  padding-right: 24px;
  min-height: 50px;
}
.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 430px;
  padding: 28px;
  background: var(--theme-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow-soft);
  border-radius: 32px;
}
.hero-card-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(108, 79, 125, 0.16);
  border: 1px solid rgba(108, 79, 125, 0.24);
  color: var(--theme-text-primary);
}
.hero-card-logo {
  width: 96px;
  height: 96px;
  margin-bottom: 22px;
  border-radius: 24px;
  padding: 10px;
  background: var(--theme-card-hover);
  border: 1px solid var(--theme-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.hero-card-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--theme-text);
  margin-bottom: 10px;
}
.hero-card-text {
  margin-bottom: 0;
  color: var(--theme-text-soft);
}
.hero-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--theme-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow-soft);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-text);
}
.hero-floating-card i {
  color: var(--theme-secondary);
}
.hero-floating-card-top {
  top: 40px;
  right: 10px;
}
.hero-floating-card-bottom {
  bottom: 44px;
  left: 10px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: .85;
  pointer-events: none;
}
.hero-orb-1 {
  width: 220px;
  height: 220px;
  top: 40px;
  left: 30px;
  background: radial-gradient(circle, rgba(108, 79, 125, 0.38), transparent 68%);
}
.hero-orb-2 {
  width: 260px;
  height: 260px;
  bottom: 10px;
  right: 40px;
  background: radial-gradient(circle, rgba(39, 193, 165, 0.28), transparent 68%);
}
.hero-open-tables {
  min-height: 520px;
  align-items: stretch;
}
.home-open-table-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 520px;
  max-height: 520px;
  padding: 18px;
  border-radius: 32px;
  background: var(--theme-card);
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.home-open-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.home-open-table-head span,
.home-open-table-head strong {
  display: block;
}
.home-open-table-head span {
  color: var(--theme-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-open-table-head strong {
  color: var(--theme-text);
  font-size: 18px;
  font-weight: 800;
}
.home-open-table-head a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--theme-card-hover);
  border: 1px solid var(--theme-border);
  color: var(--theme-text);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.home-open-table-list {
  display: grid;
  gap: 10px;
  overflow: auto;
  padding-right: 4px;
}
.home-open-table-row {
  display: grid;
  grid-template-columns: 48px 82px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 12px;
  min-height: 94px;
  padding: 11px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(108, 79, 125, 0.08), rgba(39, 193, 165, 0.04)), var(--theme-card-hover);
  border: 1px solid var(--theme-border);
  color: var(--theme-text);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.home-open-table-row:hover {
  transform: translateY(-2px);
  border-color: rgba(108, 79, 125, 0.38);
  background: var(--theme-card-hover);
  color: var(--theme-text);
}
.home-open-table-avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--theme-card);
  border: 1px solid var(--theme-border);
}
.home-open-table-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-open-table-body {
  min-width: 0;
}
.home-open-table-body strong,
.home-open-table-body em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home-open-table-body strong {
  color: var(--theme-text);
  font-size: 15px;
  font-weight: 850;
}
.home-open-table-body em {
  margin-top: 2px;
  color: var(--theme-text-soft);
  font-size: 12px;
  font-style: normal;
}
.home-open-table-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}
.home-open-table-meta b {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--theme-card);
  border: 1px solid var(--theme-border);
  color: var(--theme-text-soft);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}
.home-open-table-meta i {
  color: var(--theme-secondary);
}
.home-open-table-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(39, 193, 165, 0.14);
  color: var(--theme-secondary);
}
.home-open-table-empty {
  display: grid;
  gap: 6px;
  place-items: center;
  min-height: 260px;
  padding: 22px;
  border-radius: 18px;
  background: var(--theme-card-hover);
  border: 1px dashed var(--theme-border);
  color: var(--theme-text-soft);
  text-align: center;
}
.home-open-table-empty i {
  color: var(--theme-secondary);
  font-size: 28px;
}
.home-open-table-empty strong {
  color: var(--theme-text);
  font-size: 18px;
}
.home-open-table-empty span {
  max-width: 260px;
  font-size: 13px;
}
.home-open-table-preview {
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-open-table-preview .table-preview {
  position: relative;
  width: 82px;
  height: 58px;
}
.home-open-table-preview .table-preview-board {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 34px;
  border-radius: 14px;
  transform: translate(-50%, -50%);
  background: linear-gradient(180deg, rgba(108, 79, 125, 0.18), rgba(39, 193, 165, 0.1)), var(--theme-card);
  box-shadow: inset 0 0 0 2px var(--theme-border);
}
.home-open-table-preview .table-preview-board span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(11, 16, 32, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}
.home-open-table-preview .table-seat {
  position: absolute;
  z-index: 2;
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--theme-card), var(--theme-bg-soft));
  border: 2px solid var(--theme-border);
}
.home-open-table-preview .table-seat:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: var(--theme-text-muted);
  opacity: .55;
}
.home-open-table-preview .table-seat.is-occupied {
  background: linear-gradient(180deg, rgba(39, 193, 165, 0.96), rgba(39, 193, 165, 0.88));
  border-color: rgba(39, 193, 165, 0.88);
}
.home-open-table-preview .table-seat.is-occupied:before {
  background: #fff;
  opacity: .95;
}
.home-open-table-preview .seat-top-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home-open-table-preview .seat-top-2 {
  top: 0;
  left: 64%;
  transform: translateX(-50%);
}
.home-open-table-preview .seat-top-3 {
  top: 0;
  left: 78%;
  transform: translateX(-50%);
}
.home-open-table-preview .seat-bottom-1 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home-open-table-preview .seat-bottom-2 {
  bottom: 0;
  left: 64%;
  transform: translateX(-50%);
}
.home-open-table-preview .seat-bottom-3 {
  bottom: 0;
  left: 78%;
  transform: translateX(-50%);
}
.home-open-table-preview .seat-left-1 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.home-open-table-preview .seat-right-1 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
/* ---------- PRESENTATION ---------- */
.section-presentation {
  padding-top: 80px;
  padding-bottom: 80px;
}
.step-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 26px;
  overflow: hidden;
  background: var(--theme-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow-soft);
  border-radius: 24px;
}
.step-card.reverse .step-card-image {
  order: 2;
}
.step-card.reverse .step-card-caption {
  order: 1;
}
.step-card-image {
  min-height: 320px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--theme-card);
}
.image-account {
  background-image: linear-gradient(rgba(9, 13, 28, 0.35), rgba(9, 13, 28, 0.35)), url("../img/account.jpg");
}
.image-deck {
  background-image: linear-gradient(rgba(9, 13, 28, 0.35), rgba(9, 13, 28, 0.35)), url("../img/deck.jpg");
}
.image-table {
  background-image: linear-gradient(rgba(9, 13, 28, 0.35), rgba(9, 13, 28, 0.35)), url("../img/table.jpg");
}
.image-play {
  background-image: linear-gradient(rgba(9, 13, 28, 0.35), rgba(9, 13, 28, 0.35)), url("../img/play.jpg");
}
.step-card-caption {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
  box-shadow: 0 12px 30px rgba(39, 193, 165, 0.2);
}
.caption-title {
  color: var(--theme-text);
}
.caption-content {
  margin-bottom: 0;
  color: var(--theme-text-soft);
}
/* ---------- CONTACT ---------- */
.section-contact {
  padding-top: 80px;
  padding-bottom: 80px;
  padding-top: 20px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.info-card {
  padding: 28px;
  background: var(--theme-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow-soft);
  border-radius: 24px;
  text-align: center;
  height: 100%;
  color: var(--theme-text);
}
.info-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(108, 79, 125, 0.18), rgba(39, 193, 165, 0.18));
  border: 1px solid var(--theme-border);
  font-size: 30px;
  color: var(--theme-text);
}
.info-card-icon.info-card-image {
  width: 134px;
  height: 134px;
  margin-bottom: 20px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  border: 0;
  box-shadow: 0 14px 32px rgba(108, 79, 125, 0.24);
  overflow: hidden;
}
.info-card-icon.info-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info-card .btn {
  margin-top: 10px;
}
/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-content {
    max-width: none;
  }
  .hero-visual {
    min-height: 420px;
  }
  .home-open-table-panel {
    max-width: none;
  }
  .step-card {
    grid-template-columns: 1fr;
  }
  .step-card.reverse .step-card-image,
  .step-card.reverse .step-card-caption {
    order: initial;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .section-hero {
    padding-top: 46px;
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-visual {
    min-height: 360px;
  }
  .hero-card-main {
    padding: 22px;
  }
  .hero-card-title {
    font-size: 24px;
  }
  .hero-floating-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    margin-top: 12px;
  }
  .hero-visual {
    display: block;
  }
  .hero-open-tables {
    min-height: 0;
  }
  .home-open-table-panel {
    max-height: none;
    padding: 14px;
  }
  .home-open-table-row {
    grid-template-columns: 42px minmax(0, 1fr) 30px;
    min-height: 82px;
    gap: 10px;
  }
  .home-open-table-avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .home-open-table-preview {
    display: none;
  }
  .step-card-image {
    min-height: 220px;
  }
  .step-card-caption {
    padding: 26px 22px;
  }
}

/*# sourceMappingURL=index.min.css.map */