/* =========================
   BASE
========================= */

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'Oswald', sans-serif;
}

/* =========================
   FOND DE PAGE
========================= */

.decoration-de-fond {
  min-height: 100vh;
  background: linear-gradient(135deg, #ecb0b0, #e22a2a, #dbd3d3);
}

/* =========================
   TITRE
========================= */

.title {
  font-size: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  padding: 20px 0;
}

/* =========================
   NAVIGATION
========================= */

nav {
  background-color: #111;
  padding: 10px;
}

nav ul {
  font-size: 20px;
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover {
  color: red;
}

/* =========================
   SLOGAN
========================= */

.slogan {
  color: white;
  font-size: 1.5em;
  font-style: italic;
  text-align: center;
  text-shadow: 6px 6px 15px rgb(1, 8, 14);
  padding: 20px;
}

/* =========================
   ACCUEIL
========================= */

.accueil {
  padding: 40px 0 60px;
}

/* =========================
   PHOTO PRINCIPALE
========================= */

.photo {
  display: flex;
  justify-content: center;
  padding: 30px 0 50px;
}

.photo-principale {
  border-radius: 10px;
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.8);
}

/* =========================
   TITRES DE SECTIONS
========================= */

h2 {
  border-radius: 10px;
  color: #dbd3d3;
  background-color: black;
  width: 60%;
  text-align: center;
  font-size: 2.3em;
  margin: 40px auto 20px;
  padding: 15px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.7);
}

/* =========================
   TEXTE DE PRÉSENTATION
========================= */

.presentation {
  border-radius: 10px;
  background-color: black;
  width: 60%;
  font-size: 1.4em;
  color: #dbd3d3;
  text-align: justify;
  margin: 30px auto;
  padding: 25px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.7);
}

/* =========================
   CONTACT
========================= */

.contact {
  padding: 40px 0 60px;
}

/* Formulaire */

.form-contact {
  background-color: black;
  width: 60%;
  margin: 30px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
}

.form-contact label {
  color: #dbd3d3;
  font-size: 1.2em;
  margin-bottom: 5px;
}

.form-contact input,
.form-contact textarea {
  margin-bottom: 20px;
  padding: 10px;
  font-size: 1em;
  border-radius: 5px;
  border: none;
}

.form-contact textarea {
  min-height: 120px;
  resize: vertical;
}

/* Bouton */

.form-contact button {
  background-color: #e22a2a;
  color: white;
  font-size: 1.2em;
  padding: 12px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
}

.form-contact button:hover {
  background-color: #b71f1f;
}