* {
  box-sizing: border-box;
}

p {
  margin: 0 0 8px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8f6f2;
  color: #222;
}

.hero {
  height: 45vh;
  position: relative;
  background: url('img/hero.jpg') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
}

.content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 20px;
}

h1 {
  font-family: Georgia, serif;
  font-size: 5rem;
  margin: 0;
  font-weight: 500;
}

.subtitle {
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 8px;
}

.description {
  margin: 30px 0;
  font-size: 1.1rem;
}

.button {
  display: inline-block;
  padding: 14px 28px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 50px;
}

.info {
  max-width: 700px;
  margin: auto;
  padding: 10px;
  text-align: center;
}

.info a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.icon {
  display: inline-flex;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
}

a {
  color: inherit;
}
