/* -------- Flow - Image complète responsive -------- */

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  overflow: hidden;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
}

a {
  display: block;
  width: 100%;
  height: 100%;
}

.full-image {
  width: 100vw;
  height: 100vh;
  object-fit: contain;
  object-position: center;
  cursor: pointer;
}

/* Responsive - maintenir les proportions sur tous les écrans */
@media (max-width: 768px) {
  .full-image {
    object-fit: contain;
  }
} 