/* =================================
SINGLE PROJECT
================================= */

.project-single {
  background: #ffffff;
  display: flex;
  justify-content: center;
  padding: 40px 0;
  color: #808080;
}

/* container principal */

.project-container {
  width: 60%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* ================================
VIDEO
================================ */

.project-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 20px;
}

.project-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================================
TITLE + DATE
================================ */

.project-title-date {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 0.9rem;
  font-weight: 100;
  letter-spacing: 0.5px;
}

/* ================================
DESCRIPTION
================================ */

.project-description {
  margin-top: 20px;
  font-size: 0.85rem;
  line-height: 1.5;
  letter-spacing: 0.5px;
  text-align: justify;
}

/* ================================
GALERIE (Modula)
================================ */

.project-gallery {
  margin: 40px 0;
}

/* ================================
CREDITS
================================ */

.project-credits {
  margin-top: 0px;
  text-align: center;
  font-size: 0.85rem;
  line-height: 0.8;
  letter-spacing: 0.5px;
}

.project-credits a {
  color: #1a0dab;
}

.project-credits strong {
  display: block;
  margin-top: 30px;
  margin-bottom: 5px;
}

.project-credits span {
  display: block;
}

/* ================================
BACK ARROW
================================ */

.project-back {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  font-size: 1.2rem;
}

.project-back a {
  color: #808080;

  transition: 0.3s;
}

.project-back a:hover {
  opacity: 0.6;
}

/* =================================
ZOOM HOVER IMAGE
================================ */
.zoom-hover,
.zoom-hover-guillaume {
  transition: transform 0.4s ease;
}

.zoom-hover:hover {
  transform: scale(1.20);
}

.zoom-hover-guillaume:hover {
  transform: scale(1.4);
}

/* =================================
MOBILE
================================ */

@media (max-width: 768px) {
  .project-single {
    padding: 20px 10px;
  }

  .project-container {
    width: 100%;
  }

  .project-title-date {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
    margin: 20px 0;
  }

  .project-description {
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .project-credits {
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .project-back {
    font-size: 1rem;
    margin: 20px auto;
  }
}
