:root {
  --pink: #ff5fa2;
  --hot-pink: #ff2f89;
  --blue: #56b7ff;
  --gold: #ffc857;
  --chocolate: #7b4b2a;
  --text: #5a3450;
  --muted: #8b6e80;
  --card-bg: rgba(255, 255, 255, 0.92);
  --shadow: 0 20px 42px rgba(133, 87, 118, 0.14);
  --shadow-soft: 0 10px 24px rgba(133, 87, 118, 0.1);
  --border-soft: 1px solid rgba(255, 95, 162, 0.12);
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--text);
  overflow-x: hidden;
  font-family: "DM Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 187, 220, 0.28) 0%, transparent 28%),
    radial-gradient(circle at top right, rgba(150, 221, 255, 0.22) 0%, transparent 24%),
    linear-gradient(180deg, #fff9f1 0%, #fff3fa 46%, #f5fbff 100%);
}

h1, h2, h3, h4 {
  font-family: "Baloo 2", cursive;
}

img {
  max-width: 100%;
  display: block;
}

.cookie-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.falling-cookie {
  position: absolute;
  top: -60px;
  opacity: 0.92;
  animation: fall linear forwards;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.08));
}

@keyframes fall {
  0% {
    transform: translateY(-10vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.95;
  }
  100% {
    transform: translateY(120vh) rotate(360deg);
    opacity: 0;
  }
}

.welcome-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 244, 250, 0.84);
  backdrop-filter: blur(7px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  padding: 1rem;
}

.welcome-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.sprinkle-burst {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.sprinkle {
  position: absolute;
  width: 10px;
  height: 18px;
  border-radius: 999px;
  opacity: 0;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.45));
  animation: burst 2.2s ease-out forwards;
  will-change: transform, opacity;
}

@keyframes burst {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(0.6);
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--tx), var(--ty)) rotate(320deg) scale(1);
    opacity: 0;
  }
}

.welcome-card {
  position: relative;
  width: min(92vw, 680px);
  padding: 2rem 1.25rem;
  border-radius: 28px;
  text-align: center;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  border: 4px solid rgba(255, 95, 162, 0.14);
  z-index: 2;
}

.welcome-tag {
  display: inline-block;
  margin: 0 0 0.75rem;
  background: #fff1a8;
  color: #996000;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 700;
}

.welcome-card h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 1;
  color: var(--hot-pink);
}

.welcome-card p {
  max-width: 540px;
  margin: 1rem auto 0;
  font-size: 1rem;
}

.welcome-card button {
  margin-top: 1.25rem;
  border: none;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: white;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  min-height: 48px;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem 0.9rem;
  background: rgba(255, 248, 239, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: var(--border-soft);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.logo {
  width: 280px;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-kicker {
  margin: 0;
  font-weight: 700;
  color: var(--hot-pink);
  font-size: 0.95rem;
}

.brand-sub {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
  line-height: 1.35;
}

.nav {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.96rem;
}

.header-cta {
  text-decoration: none;
  background: linear-gradient(135deg, var(--hot-pink), var(--pink));
  color: white;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

main section {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero,
.about-section,
.process-section,
.occasions-section,
.instagram-section,
.testimonials-section,
.social-section,
.contact-section {
  padding: 2rem 1rem 4rem;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 1.5rem;
  padding-top: 2rem;
}

.pill {
  display: inline-block;
  background: rgba(255, 200, 87, 0.24);
  color: #975c00;
  font-weight: 700;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero h2 {
  margin: 0.9rem 0;
  font-size: clamp(2rem, 8vw, 4.7rem);
  line-height: 0.98;
  color: var(--chocolate);
}

.hero p {
  font-size: 1rem;
  max-width: 650px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.btn {
  text-decoration: none;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  font-family: inherit;
  cursor: pointer;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--hot-pink), var(--pink));
  color: white;
  box-shadow: 0 12px 26px rgba(255, 60, 135, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
  border: 2px solid rgba(86, 183, 255, 0.36);
}

.hero-badges {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.84);
  border: var(--border-soft);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-art {
  display: flex;
  justify-content: center;
}

.hero-showcase {
  position: relative;
  width: min(460px, 100%);
  min-height: 380px;
}

.hero-panel {
  position: absolute;
  width: 220px;
  min-height: 155px;
  border-radius: 24px;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.65);
}

.hero-panel h3 {
  margin: 0.45rem 0 0.25rem;
  font-size: 1.45rem;
  line-height: 1.05;
}

.hero-panel p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-emoji {
  font-size: 1.8rem;
}

.hero-panel-one {
  top: 10px;
  left: 10px;
  background: linear-gradient(180deg, #fff7fb, #ffe7f3);
}

.hero-panel-two {
  top: 110px;
  right: 10px;
  background: linear-gradient(180deg, #f4fbff, #dff3ff);
}

.hero-panel-three {
  bottom: 10px;
  left: 70px;
  background: linear-gradient(180deg, #fff9e9, #fff0bf);
}

.section-heading span {
  display: inline-block;
  color: var(--hot-pink);
  font-weight: 700;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.section-heading h3 {
  margin: 0;
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: var(--chocolate);
  line-height: 1.05;
}

.section-heading.center {
  text-align: center;
}

.grid-two,
.process-grid,
.occasion-grid,
.testimonial-grid,
.contact-layout {
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.occasion-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.process-card,
.occasion-card,
.testimonial-card,
.contact-card,
.contact-form,
.social-card,
.instagram-card {
  background: var(--card-bg);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.card h4,
.process-card h4,
.occasion-card h4,
.contact-card h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--hot-pink);
  font-size: 1.35rem;
}

.process-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: white;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.testimonial-card {
  margin: 0;
}

.testimonial-card p {
  margin-top: 0;
  line-height: 1.7;
}

.testimonial-card footer {
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.instagram-card,
.social-card {
  max-width: 980px;
  margin: 1.5rem auto 0;
}

.instagram-card {
  text-align: center;
}

.instagram-intro {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.7;
}

.instagram-links,
.social-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.instagram-widget-wrap {
  margin-top: 1.5rem;
  width: 100%;
  overflow: hidden;
}

.social-pill {
  text-decoration: none;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  font-weight: 700;
  border: var(--border-soft);
  box-shadow: var(--shadow-soft);
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-layout {
  grid-template-columns: 0.92fr 1.08fr;
}

.contact-card ul {
  padding-left: 1.1rem;
  margin-bottom: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-weight: 600;
}

.contact-form span {
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(155, 127, 146, 0.22);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--text);
  outline: none;
  min-height: 48px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(86, 183, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(86, 183, 255, 0.12);
}

.full-width {
  width: 100%;
}

.form-btn {
  align-self: flex-start;
}

.site-footer {
  text-align: center;
  padding: 1.5rem 1rem 2.4rem;
  color: #875d78;
  font-size: 0.95rem;
}

@media (max-width: 1100px) {
  .hero,
  .grid-two,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .occasion-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-art {
    order: -1;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 0.9rem 1rem;
  }

  .logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    text-align: center;
  }

  .brand-copy {
    width: 100%;
    text-align: center;
  }

  .logo {
    width: min(260px, 78vw);
    max-width: 78vw;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .brand-kicker {
    font-size: 0.92rem;
  }

  .brand-sub {
    font-size: 0.82rem;
    max-width: 100%;
    line-height: 1.35;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
    width: 100%;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 0.75rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 16px rgba(133, 87, 118, 0.08);
    font-size: 0.92rem;
    text-align: center;
  }

  .header-cta {
    width: 100%;
    min-height: 44px;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }

  .hero {
    padding-top: 1.25rem;
  }
}

@media (max-width: 720px) {
  .hero-showcase {
    min-height: 320px;
  }

  .hero-panel {
    width: 200px;
    min-height: 140px;
    padding: 1rem;
  }

  .hero-panel h3 {
    font-size: 1.25rem;
  }

  .hero-panel-three {
    left: 28px;
  }

  .form-grid,
  .occasion-grid,
  .testimonial-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 0.8rem 0.8rem 0.95rem;
  }

  .logo-wrap {
    align-items: center;
    text-align: center;
  }

  .logo {
    width: min(290px, 84vw);
    max-width: 84vw;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .brand-copy {
    text-align: center;
  }

  .brand-kicker {
    font-size: 0.88rem;
  }

  .brand-sub {
    font-size: 0.78rem;
  }

  .nav {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .nav a {
    min-height: 40px;
    padding: 0.65rem 0.55rem;
    font-size: 0.88rem;
    border-radius: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero-showcase {
    min-height: 280px;
  }

  .hero-panel {
    position: relative;
    width: 100%;
    min-height: auto;
    margin-bottom: 0.85rem;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .hero-panel-three {
    left: auto;
  }

  .welcome-card {
    padding: 1.7rem 1rem;
  }

  .social-pill,
  .btn,
  .welcome-card button {
    width: 100%;
  }

  .instagram-links,
  .social-links {
    flex-direction: column;
  }

  .form-btn {
    width: 100%;
    align-self: stretch;
  }
}


/* FINAL mobile logo fix */
@media screen and (max-width: 980px) {
  .site-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 0.9rem 0.9rem 1rem !important;
  }

  .logo-wrap {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    gap: 0.6rem !important;
  }

  .logo {
    display: block !important;
    width: 260px !important;
    max-width: 78vw !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .brand-copy {
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto !important;
  }
}

@media screen and (max-width: 520px) {
  .logo {
    width: 300px !important;
    max-width: 84vw !important;
    height: auto !important;
    margin: 0 auto !important;
  }

  .logo-wrap,
  .brand-copy,
  .site-header {
    text-align: center !important;
  }
}