@charset "UTF-8";
/* global */
html {
  margin-top: 0 !important;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #c0c0c0;
  display: grid;
  grid-template: 20vh 100vh 80vh 80vh 20vh/100%;
}

/* Header */
header {
  position: sticky;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  background-color: #c0c0c0;
  grid-column: 1/2;
  z-index: 100;
}

header h1 {
  border-top: solid #555852;
  border-bottom: solid #555852;
  font-style: italic;
}

div.logo {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px;
  flex-grow: 1;
}

svg {
  fill: #e0ff54;
  padding: 15px;
  flex: 0 1 140px;
}

a {
  color: #6247aa;
}

ul {
  font-size: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

ul a {
  padding-left: 20px;
  padding-right: 20px;
}

ul a,
header svg {
  border-top: solid #d2dacc;
  border-left: solid #d2dacc;
  border-bottom: solid #555852;
  border-right: solid #555852;
}

/* main */
section h2 {
  font-family: "Courier Prime", monospace;
}

section {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding-top: 20vh;
}

section h1 {
  color: #6247aa;
  text-decoration: underline;
}

#vision {
  grid-row: 2/3;
}

#vision {
  background-color: rgb(19, 19, 19);
}

#vision article {
  display: flex;
  justify-content: space-between;
}

#vision article div {
  width: 40%;
  margin-left: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

h2 {
  color: #e0ff54;
}

#vision p {
  color: white;
  padding-bottom: 20px;
}

#vision img {
  height: 80vh;
  box-shadow: inset 5em 0em rgb(19, 19, 19);
}

#esthetique {
  grid-row: 3/4;
}

/* container images */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

.canvas-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background-color: #111827;
  overflow: hidden;
  cursor: none;
}

.hidden-image {
  display: none;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.thumbnails {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.thumbnail {
  width: 96px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #d1d5db;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.thumbnail:hover {
  border-color: #93c5fd;
  opacity: 1;
}

.thumbnail.active {
  border: 4px solid #3b82f6;
  transform: scale(1.1);
  opacity: 1;
}

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

#contacts {
  grid-row: 4/5;
}

#contacts article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#cont-sociaux {
  width: 100%;
  display: flex;
  margin-bottom: 10vh;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
}

footer {
  grid-row: 5/6;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: solid #555852;
}

@media (max-width: 576px) {
  header svg {
    flex: 0 1 100px;
  }
  #vision img {
    display: none;
  }
  #vision article div {
    width: 80%;
    text-shadow: 1px 1px 1px #111827;
  }
  #vision article {
    background-image: url("http://tp1.local/wp-content/uploads/2026/03/Backgroundgradient.jpg");
    background-size: cover;
  }
  #esthétique {
    flex-direction: column;
  }
  #contacts {
    flex-direction: column;
  }
  #contacts article div:last-child {
    margin-top: 0;
  }
  #contacts img {
    height: 80vw;
  }
}/*# sourceMappingURL=style_deadhyperlink.css.map */