body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Landing page */

.Landing-page-bg {
  background: url(../images/misquamicut_beach.png) no-repeat center center;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* iOS Safari mishandles background-attachment: fixed, so only use it on desktop */
@media (min-width: 1024px) {
  .Landing-page-bg {
    background-attachment: fixed;
  }
}

.App-header {
  background: rgba(36, 36, 36, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
  flex: 1;
  min-height: 0;
}

.App-logo {
  width: 40vmin;
  pointer-events: none;
}

.Landing-tagline {
  max-width: 34em;
  margin: 24px 24px 0;
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
}

.Landing-section {
  box-sizing: border-box;
  width: 100%;
  max-width: 34em;
  padding: 0 24px;
  margin: 20px 0 0;
  font-size: 16px;
  line-height: 1.6;
}

.Landing-section h2 {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-bottom: 4px;
}

.Landing-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.Landing-link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.Landing-link:hover {
  border-bottom-color: #ffffff;
}

.Contact-button {
  display: inline-block;
  margin-top: 24px;
  padding: 8px 16px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  color: #ffffff;
  background: transparent;
  font-weight: 600;
  text-decoration: none;
}

.Contact-button:hover {
  background: #ffffff;
  border-color: transparent;
  color: #000000;
}

.Landing-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  text-align: center;
  background: rgba(36, 36, 36, 0.7);
  color: #f7f7f7;
  font-size: 14px;
}

.Landing-footer__link {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.Landing-footer__link:hover {
  border-bottom-color: #ffffff;
}

.Landing-footer__divider {
  opacity: 0.7;
}

@media (max-width: 720px) {
  .Landing-footer {
    flex-direction: column;
    gap: 6px;
  }

  .Landing-footer__divider {
    display: none;
  }
}

/* Privacy page */

.privacy {
  min-height: 100vh;
  box-sizing: border-box;
  background: linear-gradient(180deg, #f7f7f2 0%, #e8f0ef 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 64px 20px;
}

.privacy__content {
  max-width: 720px;
  background: #ffffff;
  color: #1f1f1f;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  line-height: 1.6;
}

.privacy__content h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.privacy__content h2 {
  font-size: 20px;
  margin: 24px 0 8px;
}

.privacy__content ul {
  padding-left: 20px;
}
