:root {
  --album-bg: #fff;
  --album-shadow: 0 4px 12px rgba(0,0,0,0.16);
  --album-radius: 5px;
}

body {
  background: var(--album-bg);
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

h1 {
  text-align: center;
  margin-top: 40px;
  font-size: 2em;
  color: #d92eaf;
  font-weight: bold;
  letter-spacing: 0.04em;
}

/* Album Photo Section */
.photo-album {
  width: 100vw;
  max-width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 32px 0 0 0;
  background: var(--album-bg);
}
.album-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  justify-items: center;
  padding: 0 32px 32px 32px;
}
.album-grid img {
  width: 100%;
  max-width: 195px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--album-radius);
  box-shadow: var(--album-shadow);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.album-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

/* Vidéo Section */
.video-section {
  padding: 38px 0 62px 0;
  text-align: center;
  background: var(--album-bg);
}
.video-section h2 {
  font-size: 2em;
  color: #d92eaf;
  font-weight: bold;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.video-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px;
}
.video-container video {
  border-radius: 8px;
  box-shadow: var(--album-shadow);
  background: #fff;
  outline: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .album-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 18px;
  }
  .album-grid img { max-width: 150px; }
}
@media (max-width: 800px) {
  .album-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .album-grid {
    grid-template-columns: 1fr;
    grid-gap: 12px;
    padding: 0 6px 18px 6px;
  }
  .album-grid img { max-width: 98vw; }
  .video-section h2 { font-size: 1.2em; }
  .video-container { gap: 12px; }
  .video-container video { width: 96vw; height: 180px; }
}