/* video.css - Fiche vidéo Ventabren.info */

.video-page {
  background: #f7f5f0;
  color: #2f2f2f;
}

.video-hero {
  min-height: 38vh;
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.55)),
    url("images/chateau-reine-jeanne.jpg") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 160px 30px 70px;
  box-sizing: border-box;
}

.video-hero-content span {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 14px;
  opacity: .9;
}

.video-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  margin: 18px 0;
}

.video-hero-content p {
  font-size: 22px;
  margin: 0;
}

.video-main {
  max-width: 1100px;   /* au lieu de 900px */
  margin: 80px auto;
  padding: 0 30px;
}

.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,.22);
}

.video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-presentation {
  max-width: 1100px;  
  margin: 45px auto 8px;
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
}

.video-presentation p {
  margin: 0 0 18px;
}

.video-infos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 45px;
}

.video-infos div {
  background: white;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,.07);
}

.video-infos strong {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: .6;
}

.video-infos span {
  font-size: 18px;
}

.video-related {
  max-width: 1200px;
  margin: 20px auto 40px;
  padding: 0 30px;
  text-align: center;
}

.video-related h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 45px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.related-grid a {
  min-height: 220px;
  background: white;
  border-radius: 24px;
  padding: 30px;
  text-decoration: none;
  color: #2f2f2f;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  box-shadow: 0 18px 45px rgba(0,0,0,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.related-grid a:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,.16);
}

.related-grid span {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  opacity: .6;
}

.related-grid h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  margin: 12px 0 0;
}

@media (max-width: 800px) {
  .video-hero {
    min-height: 48vh;
    padding: 135px 22px 55px;
  }


  .video-hero-content h1 {
    font-size: 38px;
  }

  .video-hero-content p {
    font-size: 19px;
  }

  .video-main {
    margin: 55px auto;
    padding: 0 20px;
  }

  .video-player {
    border-radius: 18px;
  }

  .video-presentation {
    font-size: 18px;
    text-align: left;
  }

  .video-infos,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .video-related {
    margin: 15px auto 35px;
    padding: 0 20px;
  }

  .video-related h2 {
    font-size: 34px;
  }
}
.video-infos .info-categorie {
    background: #ddd0be;
}

.video-infos .info-collection {
    background: #c8d3dd;
}

.video-infos .info-annee {
    background: #d3b89c;
}

.video-infos .info-duree {
    background: #c4cfb7;
}

.video-info-box {
  max-width: 760px;
  margin: 15px auto 0;
  padding: 15px 28px 28px 28px;
  background: #f1eadf;
  border: 1px solid #d8c8b4;
  border-radius: 22px;
}

.video-info-card:nth-child(1) {
  background: #ddd0be;
}

.video-info-card:nth-child(2) {
  background: #c8d3dd;
}

.video-info-card:nth-child(3) {
  background: #d3b89c;
}

.video-info-card:nth-child(4) {
  background: #c4cfb7;
}

.video-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.video-info-card {
  background: white;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,.07);
}

.info-label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  opacity: .6;
}

.info-value {
  display: block;
  font-size: 18px;
}

@media (max-width: 800px) {
  .video-info-grid {
    grid-template-columns: 1fr;
	}
}

.video-related {
  
}

.related-grid a {
  min-height: 220px;
  background: white;
  border-radius: 24px;
  text-decoration: none;
  color: #2f2f2f;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

.related-card {
  padding: 0 !important;
  display: flex !important;
  flex-direction: column;
  text-align: left;
}

.related-card img {
  width: 100%;
  height: 145px;
  object-fit: cover;
  display: block;
}

.related-card span,
.related-card h3 {
  margin-left: 24px;
  margin-right: 24px;
}

.related-card span {
  margin-top: 22px;
}

.related-card h3 {
  margin-bottom: 26px;
}

.all-portraits-card {
    max-width: 320px;
    margin: 35px auto 0;

    background: white;
    border-radius: 24px;
    padding: 30px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    text-decoration: none;
    color: #2f2f2f;

    box-shadow: 0 18px 45px rgba(0,0,0,.1);
}

.video-page {
  position: relative;
  overflow: hidden;
}

.video-page::after {
  content: "";
  position: fixed;
  top: 0%;
  right: -400px;
  width: 1800px;
  height: 1800px;

  background-image: url("/refonte/images/olivier2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;

  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.video-page > * {
  position: relative;
  z-index: 1;
}

.lieu-savoir-plus {
  margin: 32px 0 0;
  text-align: center;
}

.lieu-savoir-plus-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid rgba(182,139,82,.5);
  border-radius: 999px;
  padding: 14px 34px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 25px;
  color: #8f6a3b;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.lieu-savoir-plus-btn:hover {
  background: rgba(182,139,82,.08);
  border-color: #5a4a36;
  color: #5a4a36;
}

.lieu-savoir-plus-icone {
  font-size: 22px;
  transition: transform .25s ease;
}

.lieu-savoir-plus-btn--ouvert .lieu-savoir-plus-icone {
  transform: rotate(45deg);
}

.lieu-savoir-plus-contenu {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.7;
  color: #3a3a3a;
  text-align: left;
}

.lieu-savoir-plus-invite {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 25px;
  color: #8f6a3b;
  text-align: center;
  margin: 0 0 14px;
}

.lieu-savoir-plus-galerie {
  columns: 3 200px;
  column-gap: 18px;
  margin-top: 20px;
}

.lieu-savoir-plus-galerie figure {
  margin: 0 0 18px;
  break-inside: avoid;
}

.lieu-savoir-plus-galerie img {
  width: 100%;
  display: block;
  border-radius: 6px;
  cursor: zoom-in;
  transition: transform .25s ease;
}

.lieu-savoir-plus-galerie img:hover {
  transform: translateY(-3px);
}

.lieu-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(247,245,240,.97);
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}

.lieu-lightbox--ouvert {
  display: flex;
}

.lieu-lightbox img {
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  border: 1px solid #e2d5c2;
  border-radius: 4px;
}

.lieu-savoir-plus-galerie figcaption {
  margin-top: 6px;
  font-size: 14px;
  font-style: italic;
  color: #8f6a3b;
}

.video-related h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 500;
  margin: 0 0 20px;
  color: #b68b52;
  text-align: center;
}

/* --- Séparateur avant le titre --- */
.video-related-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 360px;
  margin: 0 auto 30px;
}

.video-related-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a876);
}

.video-related-divider span:last-child {
  background: linear-gradient(to left, transparent, #c9a876);
}

.video-related-divider-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b68b52;
  flex-shrink: 0;
}

/* --- Lien de retour "← Retour à Les lieux" --- */
.lieu-back-link {
  text-align: center;
  margin: 40px 0 100px;
}

.lieu-back-link a {
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid rgba(182,139,82,.35);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #b68b52;
  transition: all .25s ease;
}

.lieu-back-link a:hover {
  background: rgba(182,139,82,.08);
  border-color: rgba(182,139,82,.60);
}

.lieu-auteur-separateur {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 280px;
  margin: 45px auto 30px;
}

.lieu-auteur-separateur span {
  flex: 1;
  height: 1px;
  background: rgba(182,139,82,.35);
}

.lieu-auteur-separateur-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b68b52;
  display: inline-block;
}

.lieu-auteur-bloc {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.lieu-auteur-photo {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background: #ddd0be;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  border: 3px solid #fff;
}

.lieu-auteur-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lieu-auteur-texte p {
  margin: 0;
}

.lieu-auteur-signature {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  font-size: 34px;
  line-height: 1;
  color: #b68b52;
  text-align: right;
  margin: 12px 0 0;
  transform: rotate(-4deg);
  transform-origin: bottom right;
}

@media (max-width: 640px) {
  .lieu-auteur-bloc {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .lieu-auteur-photo {
    width: 130px;
    height: 130px;
  }

  .lieu-auteur-signature {
    text-align: center;
    font-size: 30px;
  }
}
 