/* ===== KC Hobby Co brand ===== */
:root {
  --pink: #EE2A7B;
  --pink-dark: #C4145E;
  --pink-deep: #A50F4E;
  --pink-light: #F45E9E;
  --pink-pale: #FDEBF4;
  --ink: #2B0F1E;
  --white: #FFFFFF;
  --font-bubble: "Titan One", cursive;
  --font-script: "Yellowtail", cursive;
  --font-body: "Poppins", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

/* Leopard-ish spot pattern overlay for pink sections */
.hero, .section-pink, .footer {
  background-color: var(--pink);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='%23F45E9E' fill-opacity='0.35'%3E%3Cpath d='M30 40c8-6 20-4 24 4s-2 18-12 19-20-17-12-23z'/%3E%3Cpath d='M140 20c10-4 22 2 22 12s-12 15-21 11-11-19-1-23z'/%3E%3Cpath d='M80 120c9-7 22-3 25 6s-6 17-16 16-18-15-9-22z'/%3E%3Cpath d='M180 150c8-6 19-2 21 7s-7 15-16 13-13-14-5-20z'/%3E%3Cpath d='M40 180c9-5 20 0 21 9s-9 14-18 11-12-15-3-20z'/%3E%3Ccircle cx='110' cy='70' r='6'/%3E%3Ccircle cx='200' cy='90' r='5'/%3E%3Ccircle cx='20' cy='110' r='5'/%3E%3Ccircle cx='150' cy='200' r='6'/%3E%3C/g%3E%3C/svg%3E");
}

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1.5rem;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(43, 15, 30, 0.12);
}

.nav-logo {
  font-family: var(--font-script);
  font-size: 1.9rem;
  color: var(--pink);
  text-decoration: none;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--pink); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--pink);
  cursor: pointer;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-family: var(--font-body);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: 3px solid transparent;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px) scale(1.02); }

.btn-nav {
  background: var(--pink);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
}

.btn-white {
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 6px 0 var(--pink-deep);
}

.btn-white:hover { box-shadow: 0 8px 0 var(--pink-deep); }

.btn-ghost {
  border-color: var(--white);
  color: var(--white);
}

.btn-big {
  font-size: 1.2rem;
  padding: 1rem 2.6rem;
  border: none;
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 5rem 1.5rem 6rem;
  color: var(--white);
}

.hero-script {
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 3.2rem);
  transform: rotate(-4deg);
}

.bubble {
  font-family: var(--font-bubble);
  font-size: clamp(3.2rem, 12vw, 8rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow:
    0.06em 0.06em 0 var(--pink-dark),
    -2px -2px 0 var(--pink-light);
  margin: 0.5rem 0 1rem;
}

.bubble-pink {
  color: var(--pink);
  text-shadow:
    0.06em 0.06em 0 var(--pink-pale),
    -2px -2px 0 var(--pink-light);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.hero-note {
  opacity: 0.95;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Sections ===== */
.section {
  padding: 4.5rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section-pink {
  max-width: none;
  color: var(--white);
}

.section-pink > * { max-width: 1100px; margin-left: auto; margin-right: auto; }

.script-accent {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--pink);
  transform: rotate(-3deg);
  line-height: 1;
}

.script-accent.light { color: var(--white); }

.section h2.bubble { font-size: clamp(2.4rem, 7vw, 4.5rem); }

.section-lead {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}

.section-lead.light { color: var(--white); }

/* ===== What we buy ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: 1rem;
}

.buy-card {
  background: var(--pink-pale);
  border: 3px solid var(--pink-light);
  border-radius: 22px;
  padding: 1.8rem 1.4rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.buy-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 12px 24px rgba(238, 42, 123, 0.25);
}

.buy-emoji { font-size: 2.6rem; margin-bottom: 0.5rem; }

.buy-card h3 {
  font-family: var(--font-bubble);
  color: var(--pink);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.buy-card p { font-size: 0.95rem; }

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.step {
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  padding: 2rem 1.4rem;
  backdrop-filter: blur(2px);
}

.step-num {
  font-family: var(--font-bubble);
  font-size: 2.2rem;
  width: 64px;
  height: 64px;
  line-height: 64px;
  margin: 0 auto 1rem;
  background: var(--white);
  color: var(--pink);
  border-radius: 50%;
  box-shadow: 0 5px 0 var(--pink-deep);
}

.step h3 {
  font-family: var(--font-bubble);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* ===== About ===== */
.about-wrap {
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: left;
}

.about-wrap p { margin-bottom: 1rem; font-size: 1.05rem; }

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.badge {
  background: var(--pink);
  color: var(--white);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== Contact form ===== */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  padding: 2rem 1.8rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  margin-top: 0.3rem;
  padding: 0.7rem 0.9rem;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
}

.contact-form textarea { resize: vertical; }

.form-cats {
  border: 2px dashed rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.2rem;
}

.form-cats legend {
  font-weight: 700;
  padding: 0 0.5rem;
}

.form-cats label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.25rem 0.9rem 0.25rem 0;
  font-weight: 500;
}

.form-msg { margin-bottom: 1.2rem; }

.form-pref {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.form-pref label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
}

.form-status {
  margin-top: 1rem;
  font-weight: 700;
  min-height: 1.5em;
}

/* ===== Direct contact ===== */
.contact-direct { margin-top: 2.5rem; }

.contact-direct-title {
  font-family: var(--font-script);
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.contact-chip {
  background: var(--white);
  color: var(--pink);
  text-decoration: none;
  font-weight: 700;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  box-shadow: 0 4px 0 var(--pink-deep);
  transition: transform 0.15s ease;
}

.contact-chip:hover { transform: translateY(-2px); }

/* ===== Footer ===== */
.footer {
  text-align: center;
  color: var(--white);
  padding: 3rem 1.5rem 2rem;
}

.footer-logo {
  font-family: var(--font-script);
  font-size: 2.4rem;
  line-height: 1;
}

.footer-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  transform: rotate(-4deg);
  opacity: 0.9;
  margin: 0.4rem 0 1rem;
}

.footer-small { font-size: 0.85rem; opacity: 0.85; }

/* ===== Mobile nav ===== */
@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.2rem;
    box-shadow: 0 8px 16px rgba(43, 15, 30, 0.15);
  }

  .nav-links.open { display: flex; }
}
