/* ================================
   RESET & BASE
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #120f0c;
  color: #e6d6b1;
  line-height: 1.6;
}

/* ================================
   LINKS
================================ */

a {
  color: inherit;
  text-decoration: none;
}

/* ================================
   NAVIGATION
================================ */

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 60px;
  background: linear-gradient(
    rgba(18, 15, 12, 0.92),
    rgba(18, 15, 12, 0.75)
  );
}

nav .logo {
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 600;
}

nav .nav-links a {
  margin-left: 28px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #e6d6b1;
}

nav .nav-btn {
  border: 1px solid #c7a66b;
  padding: 10px 18px;
}

/* ================================
   HERO SECTION
================================ */

.hero {
  height: 100vh;
  background-image:
    linear-gradient(
      rgba(20,15,12,0.78),
      rgba(20,15,12,0.78)
    ),
    url("images/sylvia_hero_1920x900.jpg");

  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-content {
  max-width: 900px;
}

/* ================================
   HERO TEXT
================================ */

.hero h1 {
  font-size: 52px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 36px;
  color: #d9caa3;
}

/* ================================
   HERO BUTTONS
================================ */

.hero-buttons a {
  display: inline-block;
  margin: 0 12px;
  padding: 14px 28px;
  border: 1px solid #c7a66b;
  color: #c7a66b;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.25s ease;
}

.hero-buttons a:hover {
  background-color: #c7a66b;
  color: #120f0c;
}

/* ================================
   SECTION DEFAULTS
================================ */

section {
  padding: 90px 60px;
}

.section-dark {
  background-color: #1b1612;
}

.section-light {
  background-color: #f4f1ea;
  color: #2b2b2b;
}

/* ================================
   HEADINGS
================================ */

h2 {
  font-size: 36px;
  margin-bottom: 24px;
  text-align: center;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

/* ================================
   TEXT BLOCKS
================================ */

p {
  max-width: 900px;
  margin: 0 auto;
}

/* ================================
   FOOTER
================================ */

footer {
  background-color: #120f0c;
  text-align: center;
  padding: 40px 20px;
  font-size: 13px;
  color: #c7a66b;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  nav {
    padding: 16px 24px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-buttons a {
    display: block;
    margin: 12px auto;
    width: 220px;
  }

  section {
    padding: 60px 24px;
  }
}
