/* Purple Garden - Facebook Landing Pages (Positive / Negative experience) */

:root {
  --purple-dark: #6D28D9;
  --purple: #7C3AED;
  --purple-light: #A78BFA;
  --purple-pink: #B968E8;
  --bg-lavender: #E7DFFB;
  --text-body: #2B2B33;
  --text-muted: #767485;
  --icon-bg: #EFE9FC;
  --white: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: var(--text-body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.hero {
  background-image: url("images/background-desktop.webp");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-color: var(--bg-lavender);
  padding: 56px 24px 64px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px;
}

.logo img {
  height: 32px;
  width: auto;
}

.headline {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--purple);
  margin: 0 0 20px;
}

.subtext {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto 32px;
}

.subtext strong {
  font-weight: 700;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--purple) 0%, var(--purple-pink) 100%);
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  padding: 18px 48px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.28);
}

.disclaimer {
  font-size: 14px;
  color: var(--text-muted);
  margin: 20px 0 32px;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  line-height: 0;
}

.hero-image img {
  width: 100%;
  height: auto;
}

.footer {
  background-color: var(--white);
  padding: 40px 24px 32px;
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: var(--icon-bg);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: var(--purple);
}

.copyright {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 14px;
}

.footer-links a {
  color: var(--purple);
}

.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 680px) {
  .hero {
    background-image: url("images/background-mob.webp");
    padding: 40px 10px;
  }

  .logo {
    margin-bottom: 20px;
  }

  .logo img {
    height: 24px;
  }

  .headline {
    font-size: 26px;
  }

  .subtext {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .cta-button {
    font-size: 16px;
    padding: 16px 0;
    width: 100%;
    max-width: 320px;
  }

  .disclaimer {
    font-size: 13px;
    margin: 16px 0 24px;
  }

  .hero-image {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 16px;
  }

  .footer-links {
    gap: 6px 16px;
  }
}
