/* CSS Document */
/* BIG TITLE */
.site-title {
  font-family: "Playfair Display", serif;
  font-size: 4em;
  color: white;
  text-align: left;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.25);
}

/* SMALL LOGO */
.logo {
  max-width: 100px;
  display: block;
  margin: 10px auto;
}

/* TAGLINE */
.tagline {
  color: white;
  font-size: 1.1em;
  text-align: center;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: "Space Grotesk", sans-serif;
  background-color: #f8f7f4;
  color: #2f2f2f;
  line-height: 1.6;
}

/* WRAPPER */
#wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
header {
  background: linear-gradient(to bottom, #6b705c, #a5a58d);
  text-align: center;
  padding: 40px 20px;
}

.logo {
  max-width: 220px;
  display: block;
  margin: 0 auto 10px;
}

header p {
  color: white;
  font-size: 1.1em;
}

/* NAV */
nav {
  background-color: #ddbea9;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

nav ul li a {
  display: block;
  padding: 15px;
  text-decoration: none;
  color: #2f2f2f;
  font-weight: 600;
  text-align: center;
}

nav ul li a:hover {
  background-color: #a5a58d;
  opacity: 0.7;
}

/* HERO IMAGE */
.hero-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

/* MAIN */
main {
  padding: 40px 20px;
}

/* SECTIONS */
section {
  background-color: #ffffff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 12px;
  border-left: 5px solid #6b705c;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

/* HEADINGS */
h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  color: #6b705c;
}

/* FOOTER */
footer {
  background-color: #6b705c;
  color: white;
  text-align: center;
  padding: 20px;
}

/* DESKTOP */
@media (min-width: 800px) {

  nav ul {
    flex-direction: row;
    justify-content: center;
  }

  nav ul li a {
    padding: 20px 30px;
  }

  main {
    padding: 60px;
  }

}
/* HEADER LAYOUT */
.site-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 30px;
  background: linear-gradient(to bottom, #6b705c, #a5a58d);
}

/* LEFT (LOGO) */
.header-left {
  flex: 1;
  text-align: right;
}

.logo {
  max-width: 90px;
}

/* RIGHT (TEXT) */
.header-right {
  flex: 2;
  text-align: left;
}

/* BIG TITLE */
.site-title {
  font-family: "Playfair Display", serif;
  font-size: 4.2em;
  color: white;
  letter-spacing: 2px;
  margin: 0;
}

/* TAGLINE */
.tagline {
  color: white;
  font-size: 1.1em;
  margin-top: 5px;
}
/* MOBILE / SMALL SCREEN FIX */
@media (max-width: 800px) {

  .site-title {
    font-size: 2em;
    text-align: center;
  }

  .logo {
    max-width: 60px;
    margin-bottom: 10px;
  }

  .tagline {
    font-size: 0.95em;
  }

  .site-header {
    padding: 30px 15px;
  }

}