:root {
  --color-sage-50: #f6f7f6;
  --color-sage-100: #e5eae4;
  --color-sage-900: #1a2f25;
  --color-blush-50: #fdf2f4;
  --color-blush-100: #ffe4e8;
  --color-blush-200: #f5e6e0;
}

/* Base styles */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: var(--color-sage-900);
  color: var(--color-blush-200);
  height: 100vh;
  overflow: hidden;
}

/* Navigation */
.nav {
  position: absolute;
  top: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}

.nav__brand {
  font-family: 'Syne', sans-serif;
  color: var(--color-blush-200);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.25rem;
  transition: opacity 0.2s ease;
}

.nav__brand:hover {
  opacity: 0.8;
}

.nav__link {
  color: var(--color-blush-200);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.nav__link:hover {
  opacity: 0.8;
}

/* Main content */
.main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
	gap: 2rem;
}

/* Header */
.header {}

.header__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  color: var(--color-blush-200);
  margin-bottom: 1rem;
  letter-spacing: 0.025em;
  line-height: 1.1;
}

.header__subtitle {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: rgba(245, 230, 224, 0.8);
  font-weight: 400;
  margin: 0;
}

/* Content */
.content {
  max-width: 42rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.content__text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.5;
  color: rgba(245, 230, 224, 0.8);
}

/* Button styles */
.button {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  border-radius: 9999px;
  transition: opacity 0.2s ease;
}

.button--primary {
  background-color: var(--color-blush-200);
  color: var(--color-sage-900);
  padding: 1rem 2rem;
}

.button--primary:hover {
  opacity: 0.9;
}

.button--secondary {
  border: 1px solid var(--color-blush-200);
  color: var(--color-blush-200);
  padding: 1rem 2rem;
}

.button--secondary:hover {
  background-color: var(--color-blush-200);
  color: var(--color-sage-900);
}

.button-group {
	display: flex;
	gap: 2rem;
	align-items: center;
	flex-wrap: wrap;
}

.social-icon {
	color: var(--color-blush-200);
	width: 53px;
	height: 53px;
}

/* Media Queries */
@media (min-width: 768px) {
  .header__title {
    font-size: 5rem;
  }

  .header__subtitle {
    font-size: 1.875rem;
  }
}

@media (max-height: 600px) {
  .header {
    margin-bottom: 1rem;
  }

  .content {
    margin-bottom: 1rem;
  }
}