/* =========================
   RESET / BASE
========================= */
html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(180deg, #f5eff4 0%, #efe6ec 45%, #f7f2f5 100%);
  font-family: Georgia, "Times New Roman", serif;
  color: #5e4560;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =========================
   CONTAINER
========================= */
#container {
  max-width: 1320px;
  margin: 0 auto;
  background: #fcf9f7;
  box-shadow: 0 16px 40px rgba(78, 45, 70, 0.12);
  position: relative;
  overflow: visible;
}

/* =========================
   HEADER
========================= */
#header {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 78px 20px 62px;
  background:
    linear-gradient(rgba(110, 55, 84, 0.88), rgba(110, 55, 84, 0.88)),
    linear-gradient(90deg, #7e4b67 0%, #74425e 50%, #65314d 100%);
}

#header::before {
  content: none;
}

#header::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 760px;
  height: 220px;
  background: url("https://i.imgur.com/X8gfOqr.png") no-repeat center;
  background-size: contain;
  opacity: 0.05;
  filter: brightness(220%) contrast(92%) saturate(0);
  pointer-events: none;
}

.site-title,
#header h1,
#header .title {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: "Edwardian Script ITC", "Snell Roundhand", "Apple Chancery",
    "URW Chancery L", "Brush Script MT", cursive;
  font-size: 86px;
  line-height: 0.95;
  font-weight: 400;
  color: #fffdfa;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
}

/* =========================
   NAVIGATION
========================= */
#navigation {
  background: linear-gradient(180deg, #fbf8f6 0%, #f7f0eb 100%);
  border-top: 1px solid #efe5e8;
  border-bottom: 1px solid #e7d8de;
  text-align: center;
}

#navigation li {
  display: inline-block;
}

#navigation a {
  display: block;
  padding: 20px 22px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8f607b;
}

#navigation a:hover {
  color: #774962;
}

/* =========================
   CONTENU
========================= */
#content {
  padding: 40px 20px;
}

#content h1,
#content h2 {
  color: #744b67;
  font-size: 28px;
}

#content p {
  font-size: 16px;
  line-height: 1.6;
}

/* =========================
   FOOTER
========================= */
#footer {
  text-align: center;
  padding: 30px;
  background: #6a3d58;
  color: #fff;
}