@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;1,700&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:        #ff8fab;
  --pink-light:  #ffe0ea;
  --pink-pale:   #fff5f8;
  --purple:      #c77dff;
  --purple-light:#f0e0ff;
  --yellow:      #ffe066;
  --yellow-light:#fffbe0;
  --text:        #1a1a2e;
  --text-mid:    #5a5a7a;
  --text-soft:   #a0a0c0;
  --white:       #ffffff;
  --border:      #ffd6e4;

  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  --pill:   999px;
  --soft:   18px;
  --max:    980px;

  --xs:  11px;
  --sm:  13px;
  --md:  16px;
  --lg:  32px;
  --xl:  52px;

  --s1: 8px;
  --s2: 16px;
  --s3: 28px;
  --s4: 56px;
  --s5: 100px;
  --s6: 140px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: var(--md);
  font-weight: 300;
  color: var(--text);
  background-color: var(--pink-pale);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--pink-light); }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s4);
}

/* NAV */
.navbar {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  padding: var(--s2) 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 22px;
  color: var(--pink);
  font-weight: 700;
}

.logo:hover { color: var(--purple); }

.nav-links {
  list-style: none;
  display: flex;
  gap: var(--s1);
}

.nav-links a {
  font-size: var(--xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--text-soft);
  padding: 8px 16px;
  border-radius: var(--pill);
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--pink-light);
  color: var(--pink);
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: var(--xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 14px 36px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  background: var(--purple);
  transform: translateY(-2px);
}

.btn-soft {
  display: inline-block;
  background: var(--white);
  color: var(--pink);
  font-family: var(--font-body);
  font-size: var(--xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 13px 36px;
  border-radius: var(--pill);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-soft:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--pink);
  font-family: var(--font-body);
  font-size: var(--xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  padding: 13px 36px;
  border-radius: var(--pill);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-white:hover {
  background: var(--yellow);
  color: var(--text);
  transform: translateY(-2px);
}

/* STRIP */
.strip {
  background: var(--pink);
  padding: var(--s3) 0;
  overflow: hidden;
  display: flex;
}

.strip-inner {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: var(--s3);
  padding-right: var(--s3);
  animation: marquee 30s linear infinite;
  will-change: transform;
  min-width: 100%;
}

.strip-inner span {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.strip-dot {
  color: var(--yellow);
  margin: 0 var(--s2);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* HERO */
.hero {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  animation: rise 0.5s ease forwards;
  overflow: hidden;
}

/* HERO LAYOUT WITH IMAGE SLOTS */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  gap: 20px;
  align-items: stretch;
  min-height: 600px;
  padding: 20px;
}

.hero-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s3) 0;
}

.hero-center p { text-align: center; }
.hero-center h1 { text-align: center; }

.hero-img-slot {
  border-radius: var(--soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-img-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 30px;
}

.home-img-1 {
  padding: 5px;
}

.hero-tag {
  display: inline-block;
  background: var(--yellow-light);
  border: 1.5px solid var(--yellow);
  color: var(--text-mid);
  font-size: var(--xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 18px;
  border-radius: var(--pill);
  margin-bottom: var(--s3);
}

.hero h1 {
  font-family: var(--font-head);
  font-size: var(--xl);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  max-width: 620px;
  margin-bottom: var(--s3);
}

.hero h1 span { color: var(--pink); }

.hero p {
  font-size: var(--md);
  font-weight: 300;
  color: var(--text-mid);
  max-width: 400px;
  line-height: 1.85;
  margin-bottom: var(--s4);
}

.hero-btns {
  display: flex;
  gap: var(--s2);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

/* ABOUT HOME BLOCK */
.about-home {
  padding: var(--s6) 0;
  background: var(--pink-pale);
}

.about-home .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s5);
  align-items: center;
}

.about-home-text h2 {
  font-family: var(--font-head);
  font-size: var(--lg);
  font-style: italic;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s3);
  line-height: 1.2;
}

.about-home-text p {
  font-size: var(--md);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: var(--s4);
}

.about-home-card {
  background: var(--white);
  border-radius: var(--soft);
  border: 2px solid var(--border);
  padding: var(--s4);
}

.about-home-card h3 {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 22px;
  color: var(--purple);
  margin-bottom: var(--s2);
}

.about-home-card p {
  font-size: var(--sm);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-top: var(--s3);
}

.tag {
  background: var(--pink-light);
  color: var(--pink);
  font-size: var(--xs);
  font-weight: 500;
  padding: 5px 14px;
  border-radius: var(--pill);
  border: 1.5px solid var(--border);
}

.tag.purple {
  background: var(--purple-light);
  color: var(--purple);
  border-color: #e0c0ff;
}

.tag.yellow {
  background: var(--yellow-light);
  color: #a07800;
  border-color: var(--yellow);
}

/* BRINGS PAGE */
.brings-hero {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  overflow: hidden;
}

.brings-hero .container,
.about-hero .container,
.contact-hero .container {
  text-align: center;
}

.brings-hero h1 {
  font-family: var(--font-head);
  font-size: var(--xl);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  max-width: 580px;
  margin-bottom: var(--s3);
  margin-left: auto;
  margin-right: auto;
}

.brings-hero h1 span { color: var(--purple); }

.brings-hero p {
  font-size: var(--md);
  font-weight: 300;
  color: var(--text-mid);
  max-width: 460px;
  line-height: 1.85;
  margin-left: auto;
  margin-right: auto;
}

.brings-section {
  padding: var(--s6) 0;
  background: var(--pink-pale);
}

.brings-section .container {
  max-width: 100%;
  padding: 0 40px;
}

.brings-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  margin-bottom: var(--s5);
}

.bring-card-new {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--soft);
  padding: var(--s4);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  min-height: 420px;
}

.bring-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(255, 143, 171, 0.18);
}

.bring-card-new .card-tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink);
  font-size: var(--xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: var(--pill);
  margin-bottom: var(--s2);
  align-self: flex-start;
}

.bring-card-new:nth-child(2) .card-tag,
.bring-card-new:nth-child(5) .card-tag {
  background: var(--purple-light);
  color: var(--purple);
}

.bring-card-new:nth-child(3) .card-tag,
.bring-card-new:nth-child(6) .card-tag {
  background: var(--yellow-light);
  color: #a07800;
}

.bring-card-new h3 {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 26px;
  color: var(--text);
  margin-bottom: var(--s2);
}

.bring-card-new p {
  font-size: var(--md);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

/* CARD IMAGE SLOT */
.card-img-slot {
  width: 100%;
  flex-grow: 1;
  min-height: 160px;
  max-height: 200px;
  border-radius: 10px;
  margin-top: var(--s3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-inner {
  width: 80%;
  height: 80%;
  object-fit: contain;
  border-radius: 10px;
}

.flowers-img {
  width: 100%;
  height: 100%;
}

.plushies-img {
  width: 145%;
  height: 145%;
}

.sweaters-img {
  width: 160%;
  height: 160%;
}

.stickers-img {
  width: 120%;
  height: 120%;
}

.patches-img {
  width: 120%;
  height: 120%;
}

.pins-img {
  width: 135%;
  height: 135%;
}

.brings-cta {
  background: var(--pink);
  border-radius: var(--soft);
  padding: var(--s5);
  text-align: center;
  margin-top: var(--s5);
}

.brings-cta h2 {
  font-family: var(--font-head);
  font-style: italic;
  font-size: var(--lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s2);
}

.brings-cta p {
  font-size: var(--md);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--s4);
}

/* ABOUT PAGE */
.about-hero {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  overflow: hidden;
}

.about-hero .container {
  max-width: 100%;
  padding: 0;
}

.about-hero h1 {
  font-family: var(--font-head);
  font-size: var(--xl);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  max-width: 620px;
  margin-bottom: var(--s3);
  margin-left: auto;
  margin-right: auto;
}

.about-hero h1 span { color: var(--pink); }

.about-hero p {
  font-size: var(--md);
  font-weight: 300;
  color: var(--text-mid);
  max-width: 460px;
  line-height: 1.85;
  margin-left: auto;
  margin-right: auto;
}

.about-body {
  padding: var(--s6) 0;
  background: var(--pink-pale);
}

.about-cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s5);
  align-items: start;
  margin-bottom: var(--s5);
}

.about-cols h2 {
  font-family: var(--font-head);
  font-size: var(--lg);
  font-style: italic;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: var(--s3);
}

.about-cols p {
  font-size: var(--md);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: var(--s3);
}

.stats-stack {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.stat-pill {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--soft);
  padding: var(--s3) var(--s4);
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.stat-pill h3 {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 28px;
  color: var(--pink);
  line-height: 1;
  min-width: 90px;
}

.stat-pill p {
  font-size: var(--sm);
  font-weight: 400;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.4;
}

.about-strip {
  background: var(--purple);
  border-radius: var(--soft);
  padding: var(--s5);
  margin-bottom: var(--s5);
}

.about-strip h2 {
  font-family: var(--font-head);
  font-style: italic;
  font-size: var(--lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s2);
}

.about-strip p {
  font-size: var(--md);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  max-width: 540px;
  line-height: 1.85;
}

.events-block {
  background: var(--white);
  border-radius: var(--soft);
  border: 2px solid var(--border);
  padding: var(--s5);
}

.events-block h2 {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  color: var(--text);
  margin-bottom: var(--s3);
}

.events-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s2);
}

.event-chip {
  background: var(--pink-pale);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: var(--s2) var(--s3);
  font-size: var(--sm);
  font-weight: 400;
  color: var(--text-mid);
  text-align: center;
}

/* CONTACT PAGE */
.contact-hero {
  background: var(--white);
  padding: var(--s6) 0 var(--s5);
  border-bottom: 2px solid var(--border);
}

.contact-hero h1 {
  font-family: var(--font-head);
  font-size: var(--xl);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  max-width: 580px;
  margin-bottom: var(--s3);
  margin-left: auto;
  margin-right: auto;
}

.contact-hero h1 span { color: var(--pink); }

.contact-hero p {
  font-size: var(--md);
  font-weight: 300;
  color: var(--text-mid);
  max-width: 440px;
  line-height: 1.85;
  margin-left: auto;
  margin-right: auto;
}

.contact-body {
  padding: var(--s6) 0;
  background: var(--pink-pale);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--s5);
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.contact-left h2 {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  color: var(--text);
  margin-bottom: 0;
}

.contact-left p {
  font-size: var(--md);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 0;
}

.info-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--soft);
  padding: var(--s4);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.info-row span {
  display: block;
  font-size: var(--xs);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.info-row p {
  font-size: var(--sm);
  font-weight: 400;
  color: var(--text);
  margin: 0;
  line-height: 1.5;
}

.form-card {
  background: var(--white);
  border-radius: var(--soft);
  border: 2px solid var(--border);
  padding: var(--s5);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.form-card input,
.form-card textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--sm);
  color: var(--text);
  background: var(--pink-pale);
  outline: none;
  transition: border-color 0.2s;
}

.form-card input:focus,
.form-card textarea:focus {
  border-color: var(--pink);
  background: var(--white);
}

.form-card textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.7;
}

/* FOOTER */
.footer {
  background: var(--white);
  border-top: 2px solid var(--border);
  padding: var(--s4) 0;
  text-align: center;
}

.footer p {
  font-size: var(--xs);
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: 0.8px;
}

/* ANIMATIONS */
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ACCESSIBILITY */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 4px;
}

/* MOBILE */
@media (max-width: 768px) {
  :root {
    --xl: 36px;
    --lg: 26px;
    --s6: 88px;
    --s5: 64px;
  }

  .container { padding: 0 var(--s3); }
  .navbar .container { flex-direction: column; gap: var(--s2); }
  .nav-links { flex-wrap: wrap; justify-content: center; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-img-slot { display: none; }
  .about-home .container { grid-template-columns: 1fr; }
  .brings-grid-new { grid-template-columns: 1fr; }
  .about-cols { grid-template-columns: 1fr; }
  .events-list { grid-template-columns: 1fr 1fr; }
  .events-block { padding: var(--s3); overflow: hidden; }
  .contact-layout { grid-template-columns: 1fr; }
}
