@font-face {
  font-family: "Brown-M";
  src: url(../font/BrownCondLL-Medium.otf);
}

@font-face {
  font-family: "Brown-L";
  src: url(../font/BrownCondLLTT-Light.ttf);
}

@font-face {
  font-family: "Brown-LI";
  src: url(../font/BrownCondLLTT-LightItalic.ttf);
}

@font-face {
  font-family: "Larish";
  src: url(../font/LarishNeueSemiboldRegular.otf);
}

:root {
    --home-bg-color: #f9f7f5;
    --home-accent-color: #232323;
    --season-2627-blue-1: #2fa9e1;
    --season-2627-blue-3: #0066b0;
    --season-2627-blue-4: #0088cf;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
*::-webkit-scrollbar {
  display: none;
}

html, body {
  margin: 0;
  height: 100%;
  background: var(--home-bg-color);
}

.presentation-carrousel {
  display: block;
  min-height: 100vh;
    padding: 20px;
  font-family: 'Brown-M', sans-serif;
  background-color: var(--home-bg-color);
}

/* ═══════════════════════════════════════════════════════════════
   HERO – Stack + Info panel
   ═══════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  overflow: visible;
  height: 100%;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr;
  width: 100%;
  height: calc(100vh - 40px);
  overflow: visible;
}

.hero-col {
  position: relative;
  overflow: hidden;
}

.hero-col--stack {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  min-height: 0;
  padding: 0px 15px 0 0px;
  background-color: transparent !important;
}

.hero-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-stack-item--intro {
  display: flex;
  justify-content: center;
  align-items: center; 
}

.hero-stack-item--intro img {
  object-position: center center !important;
  width: auto !important;
  height: auto !important;
  max-height: 400px !important;

}

.hero-stack-item {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity   0.45s ease;
  cursor: pointer;
}

.hero-stack-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  background-color: var(--home-bg-color);
}

.hero-partenaires-area {
  border-top: 1px solid #000;
  margin-top: 20px;
  font-family: 'Brown-L';
  padding-top: 20px;

}

.hero-partenaires-area h6 {
    font-family: 'Brown-M', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.hero-partenaire-logo {
    max-width: 25%;
    padding-top: 20px;
}


.hero-stack-item.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  z-index: 2;
}

.hero-stack-item:not(.is-active) {
  opacity: 0;
  transform: translateY(6px) scale(0.98);
}

.hero-stack-item:first-child {
  opacity: 1;
  transform: none;
}

/* ── Info panel (right side) ── */
.hero-col--info {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 450px;
  padding: 0px 30px 20px 15px;
  box-sizing: border-box;
  background: var(--home-bg-color);
  border-left: 1px solid var(--home-accent-color);
  z-index: 5;
}

.hero-distribution {
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: opacity 0.35s ease;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--home-accent-color);
}

.hero-distrib-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-distrib-role {
    font-family: 'Brown-M', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.hero-distrib-name {
  font-family: 'Brown-L', sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-weight: 700;
}

.hero-manual-text {
  font-family: 'Brown-L', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-weight: 700;
  border-top: 1px solid var(--home-accent-color);
  padding-top: 20px;
}

.hero-tags {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.hero-tags-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.hero-age {
  flex-shrink: 0;
}

.hero-age-badge {
  position: relative;
  width: fit-content;
  white-space: nowrap;
  height: auto;
  border: 1px solid black;
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8rem;
}

.hero-tag {
  position: relative;
  width: fit-content;
  white-space: nowrap;
  height: auto;
  border: 1px solid black;
  background-color: var(--home-bg-color);
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: none;
  pointer-events: auto;
}

.hero-tag--hexagone {
  background-color: var(--season-2627-blue-4);
  color: #fff;
}

.hero-dates {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-date-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hero-date-value {
  font-family: 'Brown-M', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.hero-partenaire-item {
    font-family: 'Brown-L', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    line-height: 1.3;
    font-weight: 700;
}

.hero-date-lieu {
  font-family: 'Brown-L', sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  font-weight: 700;
}

/* ── Title + Company (overlaid on image) ── */
.hero-title-area {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  width: fit-content;
  max-width: 420px;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow: visible;
}

.hero-stack-company {
  font-family: 'Brown-M', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  align-self: flex-start;
  text-align: left;
}

.hero-stack-company span {
  display: inline-block;
  color: #000;
  background: var(--home-bg-color);
  padding: 4px 12px 4px 12px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-stack-title {
  font-family: 'Brown-M', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: left;
  word-break: break-word;
  width: 100%;
  box-sizing: border-box;
}

.hero-stack-title span {
  display: inline;
  color: #000;
  background: var(--home-bg-color);
  padding: 4px 24px 4px 20px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-link-area {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--home-accent-color);
}

#hero-video-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--home-bg-color);
    color: #000;
    text-decoration: none;
    font-family: 'Brown-M', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
    font-weight: 700;
    border: 1px solid #000;
    margin-top: 20px;
}