* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, #8fd3f4 0, transparent 35%),
    linear-gradient(135deg, #1f2937, #111827);
  color: #ffffff;
  display: grid;
  place-items: center;
  padding: 24px;
}

.card {
  width: min(720px, 100%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  color: #bfdbfe;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 8vw, 72px);
  line-height: 1;
}

.subtitle {
  margin: 22px auto 0;
  max-width: 520px;
  color: #dbeafe;
  font-size: 20px;
}

.buttons {
  margin-top: 36px;
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  min-width: 160px;
  padding: 16px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.primary {
  background: #ffffff;
  color: #111827;
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.18);
}

.secondary {
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.content {
  margin: 34px auto 28px;
  padding: 24px;
  max-width: 520px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.content h2 {
  margin-top: 0;
}

.back {
  color: #bfdbfe;
  text-decoration: none;
  font-weight: 700;
}

.back:hover {
  text-decoration: underline;
}

@media (max-width: 520px) {
  .card {
    padding: 34px 22px;
  }

  .button {
    width: 100%;
  }
}


.garden-photo {
  width: 70%;
  max-width: 320px;
  border-radius: 18px;
  display: block;
  margin: 12px auto 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);

  cursor: zoom-in;
}


.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox.show {
  display: grid;
}

.lightbox img {
  width: min(1600px, 95vw);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.close {
  position: fixed;
  top: 18px;
  right: 28px;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  cursor: pointer;
}
