@charset "UTF-8";
/* stylelint-disable no-descending-specificity */
header,
footer {
  display: none;
}

.short-header {
  display: flex;
  gap: var(--spacing);
  justify-content: flex-end;
}

main.home-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
main.home-main > *:not(.left) {
  grid-column: 2;
}

.left {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 50vw;
  overflow-y: hidden;
  scroll-behavior: smooth;
}
.left .hero > img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
.left:hover > .goto-button {
  opacity: 1;
}

.goto-button {
  position: fixed;
  bottom: calc(3 * var(--padding-stack));
  width: 50vw;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--color-text);
}
.goto-button .button {
  background-color: var(--color-accent-surface);
  transition: background-color 0.3s ease;
}
.goto-button:hover .button {
  background-color: var(--color-accent);
}

.right {
  margin-inline-start: 3vw;
  display: grid;
  grid-template-rows: min-content min-content 1fr;
  grid-auto-rows: stretch;
}
.right > *:not(.short-header) {
  max-width: 40ch;
}

.album-links {
  padding-block-end: var(--padding-stack);
}

.album-list-item h2 {
  font-size: var(--s1);
}
.album-list-item > a {
  display: flex;
  align-items: center;
  position: relative;
}
.album-list-item > a::after {
  content: "Découvrir";
  position: absolute;
  left: 0;
  bottom: -1em;
  opacity: 0;
}
.album-list-item .icon {
  opacity: 0;
  padding-inline-start: 0.5ch;
}
.album-list-item .icon > svg {
  height: 0.9em;
  width: 0.9em;
}
.album-list-item.active {
  color: var(--color-accent);
  transition: transform 0.3s ease;
}
.album-list-item.active .icon {
  opacity: 1;
}
.album-list-item.active a::after {
  opacity: 1;
}
.album-list-item.active:hover {
  transform: translateX(1em);
}

/*# sourceMappingURL=home.css.map */
