/* =========================================================
   POPBUBBLY — MINIMAL ABOUT PAGE
   Width: 908px
   Palette inspired by the supplied A*Teens graphic:
   lavender, lilac, dreamy pink, crisp white + soft grey
   ========================================================= */

:root {
  --page-bg: #f2f3f7;
  --white: #ffffff;

  --lavender: #a653dc;
  --purple: #7d35bd;
  --deep-purple: #612698;
  --soft-purple: #d5b6f4;
  --pale-lilac: #f4ecff;
  --pink: #f5b8ed;
  --blue-lilac: #c7c8ff;

  --ink: #272033;
  --muted: #756d80;
  --line: #e9def4;

  --shadow: 0 18px 50px rgba(81, 55, 109, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 42px 20px;
  background:
    radial-gradient(circle at 10% 5%, rgba(204, 168, 255, 0.18), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(255, 195, 242, 0.17), transparent 32%),
    var(--page-bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.75;
}

.site-shell {
  width: min(908px, 100%);
  margin: 0 auto;
}

/* HERO */

.hero {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  z-index: -3;
  transform: scale(1.015);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(67, 33, 101, 0.78) 0%,
      rgba(111, 56, 154, 0.48) 38%,
      rgba(211, 161, 241, 0.14) 72%,
      rgba(255,255,255,0.02) 100%
    );
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  width: 300px;
  height: 300px;
  top: -120px;
  left: -50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
  filter: blur(16px);
}

.hero::after {
  right: 28px;
  bottom: 25px;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.9), transparent);
  box-shadow:
    0 -70px 28px 5px rgba(246, 202, 255, 0.28),
    -120px -210px 50px 5px rgba(255,255,255,0.18);
}

.home-button {
  position: absolute;
  top: 25px;
  right: 25px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  color: #fff;
  background: rgba(125, 53, 189, 0.28);
  backdrop-filter: blur(12px);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 12px;
  font-weight: 700;
  transition: .25s ease;
}

.home-button:hover {
  transform: translateY(-2px);
  background: rgba(166, 83, 220, 0.65);
  box-shadow: 0 8px 22px rgba(43, 19, 74, 0.22);
}

.home-button span {
  font-size: 18px;
  line-height: 1;
}

.hero-copy {
  position: absolute;
  left: 48px;
  bottom: 48px;
  width: min(520px, calc(100% - 96px));
}

.eyebrow {
  margin: 0 0 9px;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

.logo {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 8vw, 84px);
  line-height: .94;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(255,255,255,.20),
    0 8px 26px rgba(70, 26, 106, .35);
}

.logo-pop,
.logo-bubbly {
  display: inline-block;
}

.logo-star {
  display: inline-block;
  margin: 0 .02em;
  color: #dba8ff;
  text-shadow:
    0 0 12px rgba(255,255,255,.95),
    0 0 26px rgba(218,168,255,.85);
  transform: translateY(-.01em);
}

.hero-tagline {
  margin: 16px 0 0;
  color: rgba(255,255,255,.94);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: .03em;
}

/* CONTENT */

.content-card {
  position: relative;
  margin-top: 24px;
  padding: 56px 62px 48px;
  background: var(--white);
  border: 1px solid #eee8f4;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.content-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(213, 182, 244, .30), transparent 67%);
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  color: var(--purple);
  font-size: 33px;
  letter-spacing: -.04em;
}

.mini-star {
  color: var(--soft-purple);
}

.intro {
  max-width: 690px;
  margin: 0 auto 36px;
  color: #4e4856;
  text-align: center;
  font-size: 17px;
}

.intro strong {
  color: var(--purple);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.info-box {
  padding: 27px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, #ffffff 30%, #fbf8ff 100%);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.info-box:hover {
  transform: translateY(-4px);
  border-color: #ddc9ef;
  box-shadow: 0 12px 28px rgba(91, 54, 122, .10);
}

.info-box h3 {
  margin: 0 0 9px;
  color: var(--deep-purple);
  font-size: 18px;
}

.info-box p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.favorites {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 34px 0 28px;
}

.favorites span {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--pale-lilac);
  color: var(--purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
}

.closing {
  margin: 0;
  text-align: center;
  color: #675d70;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
}

/* FOOTER */

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 24px 10px 0;
  color: #968ca0;
  font-size: 11px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-star {
  color: var(--lavender);
}

/* RESPONSIVE */

@media (max-width: 700px) {
  body {
    padding: 18px 12px 28px;
  }

  .hero {
    min-height: 500px;
    border-radius: 22px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        0deg,
        rgba(52, 25, 78, .86) 0%,
        rgba(102, 49, 145, .55) 46%,
        rgba(181, 137, 222, .08) 100%
      );
  }

  .hero-copy {
    left: 28px;
    bottom: 35px;
    width: calc(100% - 56px);
  }

  .logo {
    font-size: clamp(43px, 14vw, 66px);
  }

  .content-card {
    padding: 40px 24px;
    border-radius: 22px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-wrap: wrap;
    text-align: center;
  }
}
