@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');

/* Général */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  /* Assure une hauteur pleine page */
  font-family: 'Open Sans', Arial, sans-serif;
  background: url('/static/img/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

body {
  display: flex;
  flex-direction: column;
}

/* Conteneur principal */
.main-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  padding: 200px 0px;
  align-items: stretch;
  align-content: stretch;
  flex-wrap: wrap;
}

.row {
  flex-grow: 1;
  text-align: center;
  align-content: flex-end;
}

/* Ligne 1 : Texte */
.hook {
  flex: 1;
  font-size: 2rem;
  text-transform: uppercase;
  display: flex;

}

.block-text {
  flex-grow: 1;
  align-self: flex-end;
}
.block-text p {
  margin: 0;
  position: relative;
  padding: 0 0 0 24px;
  display: inline-block;
}
.block-text p:before{
  background: #bfbfbf;
  content: "";
  display: block;
  height: 1px;
 position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
}

.baskerville {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.6);
}

.orange {
  color: #e6b613;
  font-style: italic;
}

/* Ligne 2 : Liens sociaux */
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.links .column {
  text-align: center;
  display: flex;
  max-width: 200px;
  flex: 1;
}

.links .column a {
  color: #c4c4c4;
  text-decoration: none;
  font-size: 1.2em;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.links .column a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #e6b613;
  transition: 0.4s ease-in-out;
}

/* Pied de page */
footer {
  text-align: center;
  color: #bfbfbf;
  padding: 20px;
  margin-top: auto;
}

@media only screen and (max-width: 767px) {
  .hook {
    display: block;
  }
  .block-text {
      padding: 15px 0 ;
  }
  .links {
    flex-direction: row;
  }
  .links  .column{
    flex-basis: calc(50% - 12px);
  } 
}