/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background-color: #0f0f0f;
  color: #f5f5f5;
  line-height: 1.6;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
}

.logo {
  font-weight: 500;
  letter-spacing: 4px;
}

.nav a {
  color: #f5f5f5;
  text-decoration: none;
  margin-left: 32px;
  font-size: 14px;
  opacity: 0.8;
}

.nav a:hover {
  opacity: 1;
}

/* HERO */
.hero {
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  letter-spacing: 6px;
}

.tagline {
  margin-top: 16px;
  font-size: 18px;
  opacity: 0.75;
}

/* SECTIONS */
.section {
  padding: 100px 20%;
  text clearly spaced;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 24px;
}

.section p {
  font-size: 16px;
  max-width: 600px;
  opacity: 0.85;
}

.dark {
  background-color: #151515;
}

/* VENTURES */
.ventures {
  list-style: none;
  margin-top: 20px;
}

.ventures li {
  margin-bottom: 12px;
  font-size: 16px;
}

.muted {
  opacity: 0.4;
}

/* CONTACT */
.contact-text {
  margin-bottom: 12px;
}

.contact-email {
  font-size: 18px;
  letter-spacing: 1px;
}

/* FOOTER */
footer {
  padding: 40px;
  text-align: center;
  font-size: 14px;
  opacity: 0.5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .section {
    padding: 80px 10%;
  }

  .nav nav {
    display: none;
  }
}
