/* ── Variables (your color palette) ── */
:root {
  --pink-light:  #fde8ec;
  --pink-mid:    #f7c5cf;
  --pink-deep:   #e8879a;
  --cream:       #fff8f2;
  --brown-soft:  #7a4f4f;
  --brown-light: #c49a8a;
  --text:        #5a3a3a;
  --white:       #ffffff;
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Page background ── */
body {
  background-color: var(--pink-light);
  background-image:
    radial-gradient(circle at 20% 10%, #fbd0db 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, #fce4d0 0%, transparent 45%);
  font-family: 'Lora', Georgia, serif;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 60px;
}

/* ── Divider ── */
.divider {
  text-align: center;
  font-size: 1.1rem;
  color: var(--pink-deep);
  letter-spacing: 0.4em;
  margin: 18px 0;
  opacity: 0.75;
}

/* ── Card ── */
.card {
  background: var(--cream);
  border: 2px solid var(--pink-mid);
  border-radius: 18px;
  box-shadow:
    0 4px 24px rgba(232, 135, 154, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.9);
  max-width: 520px;
  width: 100%;
  padding: 44px 44px 48px;
  animation: fadeUp 0.9s ease both;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes sway {
  0%, 100% { transform: rotate(-4deg); }
  50%       { transform: rotate(4deg); }
}

/* ── Header ── */
.site-header {
  text-align: center;
  margin-bottom: 8px;
}

.cherry-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
  animation: sway 3s ease-in-out infinite;
  transform-origin: top center;
}

h1 {
  font-family: 'Cherry Bomb One', cursive;
  font-size: 2.4rem;
  color: var(--brown-soft);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

/* ── Quote ── */
.quote-block {
  text-align: center;
  margin: 22px 0 8px;
}

.quote-block p {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--brown-light);
  line-height: 1.65;
}

/* ── Section title ── */
.section-title {
  font-family: 'Cherry Bomb One', cursive;
  font-size: 1.15rem;
  color: var(--brown-soft);
  text-align: center;
  margin-top: 30px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

/* ── Favorite links ── */
.fav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fav-list li {
  animation: fadeUp 0.9s ease both;
}
.fav-list li:nth-child(1) { animation-delay: 0.15s; }
.fav-list li:nth-child(2) { animation-delay: 0.28s; }
.fav-list li:nth-child(3) { animation-delay: 0.41s; }

.fav-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--pink-mid);
  border-radius: 10px;
  padding: 11px 16px;
  text-decoration: none;
  color: var(--brown-soft);
  font-size: 0.95rem;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

.fav-list a:hover {
  background: var(--pink-light);
  border-color: var(--pink-deep);
  transform: translateX(4px);
}

.fav-list .icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── Footer ── */
.site-footer {
  margin-top: 36px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--brown-light);
  letter-spacing: 0.08em;
}