@charset "UTF-8";

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow: hidden;
}

.left {
  position: fixed;
  display: flex;
  flex-direction: row;
  align-items: center;
  top: 0;
  left: 0;
  height: 100vh;
  width: 8vw;
  z-index: 10;
  pointer-events: none;
}

.gradient {
  position: absolute;
  height: 100vh;
  width: 8vw;
  top: 0;
  left: 0;
  z-index: 3;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
}

.container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 14987px;
  display: flex;
  flex-direction: column;
}

.info {
  flex: 0 0 35vh;
  width: 100%;
  background-color: white;
}

.leadsheet {
  position: relative;
  flex: 1;
  height:40vh;
  background-color: white;
  overflow: visible;
  pointer-events: none;
}

.leadsheet_image_base {
  position: absolute;
  top: 27%;
  left:200px;
  transform: translateY(-50%);
  pointer-events: none;

  display: flex;          /* ← aligne les slices côte à côte */
  flex-direction: row;
  align-items: center;
}

.leadsheet_image_base img {
  height: 300px;         /* ← même hauteur pour toutes */
  width: auto;
  display: block;
}

/* ── DOT ─────────────────────────────────────────────────────────── */
.dot {
  position: absolute;
  width: 9px;
  height: 17px;
  rotate: 55deg;
  background: black;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 5;
}

/* ── INFO CARD ───────────────────────────────────────────────────── */
.info-card {
  position: absolute;
  width: 200px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background-color: white;
  padding-bottom: 10px;  
}

.info-card img {
  width: 200px;
  height: 100px;
  object-fit: cover;
  object-position: top;
}

.info-card .card-text {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1rem;
  line-height: 1.1;
  text-align: center;
  color: black;
}

.info-card .card-name {
  font-family: 'Times New Roman', Times, serif;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  color: black;
}