/* Cardo 400i */
@font-face {
  font-family: 'Cardo';
  font-style: italic;
  font-weight: 400;
  src: url('/assets/fonts/Cardo/Cardo-Italic.ttf') format('truetype'); /* Modifiez le chemin selon votre organisation */
}

/* Rubik 400 */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/fonts/Rubik/Rubik-Regular.ttf') format('truetype'); /* Modifiez le chemin selon votre organisation */
}

/* Rubik 700 */
@font-face {
  font-family: 'Rubik';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/fonts/Rubik/Rubik-Bold.ttf') format('truetype'); /* Modifiez le chemin selon votre organisation */
}

:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --font-sans: "Rubik", sans-serif;
  --font-serif: "Cardo", serif;
}

.section-content,
.section-content * {
  box-sizing: border-box;
}

.section-content {
  display: grid;
  grid-gap: 1rem;
  padding: 1rem;
  max-width: 1024px;
  margin: 0 auto;
  font-family: var(--font-sans);
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card-section {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform var(--d) var(--e);
}
@media (min-width: 600px) {
  .card-section {
    height: 350px;
  }
}
.card-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: center;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}
.card-section:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}
.card-section:nth-child(1):before {
  background-image: url(/assets/images-articles/montagnes.jpg);
}
.card-section:nth-child(2):before {
  background-image: url(/assets/images-articles/mer-etoiles.jpg);
}
/*
.card-section:nth-child(3):before {
  background-image: url(https://images.unsplash.com/photo-1545243424-0ce743321e11?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ);
}
.card-section:nth-child(4):before {
  background-image: url(https://images.unsplash.com/photo-1531306728370-e2ebd9d7bb99?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=400&fit=max&ixid=eyJhcHBfaWQiOjE0NTg5fQ);
} */

.content-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}
.content-section > * + * {
  margin-top: 1rem;
}

.title-section {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
}

.copy-section {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.35;
}

.btn-section {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: white;
  background-color: black;
  border: none;
  border-radius: 5px;
  transition: background-color 300ms ease, transform 200ms ease, box-shadow 200ms ease;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-section:hover {
  background-color: #0d0d0d;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn-section:focus {
  outline: none;
}

@media (hover: hover) and (min-width: 600px) {
  .card-section:after {
    transform: translateY(0);
  }

  .content-section {
    transform: translateY(calc(100% - 4.5rem));
  }
  .content-section > *:not(.title-section) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .card-section:hover,
  .card-section:focus-within {
    align-items: center;
    transform: translateY(-10px);
  }
  .card-section:hover:before,
  .card-section:focus-within:before {
    transform: translateY(-4%);
  }
  .card-section:hover:after,
  .card-section:focus-within:after {
    transform: translateY(-50%);
  }
  .card-section:hover .content-section,
  .card-section:focus-within .content-section {
    transform: translateY(0);
  }
  .card-section:hover .content-section > *:not(.title-section),
  .card-section:focus-within .content-section > *:not(.title-section) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .card-section:focus-within:before, .card-section:focus-within:after,
  .card-section:focus-within .content-section,
  .card-section:focus-within .content-section > *:not(.title-section) {
    transition-duration: 0s;
  }
}