/* ==========================================================================
   Hot Mess Hobbies — shared stylesheet
   Brand vibe: warm, playful, a little chaotic-but-charming.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;600;700&family=Nunito+Sans:wght@400;600;700;800&display=swap');

:root {
  --color-coral: #FF6B4A;
  --color-coral-dark: #E4522F;
  --color-jungle: #1F4B3F;
  --color-jungle-light: #2E6B58;
  --color-mustard: #F4B740;
  --color-cream: #FFF8F0;
  --color-cream-dark: #FBEEDD;
  --color-ink: #2B2420;

  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;

  --radius: 18px;
  --shadow: 0 8px 24px rgba(43, 36, 32, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

p { margin: 0 0 1em; }

a { color: var(--color-coral-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 0.75em 1.6em;
  border-radius: 999px;
  background: var(--color-coral);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover {
  background: var(--color-coral-dark);
  transform: rotate(-1deg) scale(1.03);
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--color-jungle);
  color: var(--color-jungle);
}
.btn-outline:hover { background: var(--color-jungle); color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--color-cream);
  border-bottom: 3px dashed var(--color-mustard);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-ink);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo span { color: var(--color-coral); }
.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--color-ink);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.nav-links a.active { color: var(--color-coral-dark); }
.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; }

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 3px dashed var(--color-mustard);
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px 24px; border-top: 1px solid var(--color-cream-dark); }
}

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 56px;
  text-align: center;
}
.hero .badge {
  display: inline-block;
  background: var(--color-mustard);
  color: var(--color-ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
  transform: rotate(-2deg);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.hero p.lead {
  max-width: 600px;
  margin: 0 auto 28px;
  font-size: 1.15rem;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
.section-title { text-align: center; margin-bottom: 12px; }
.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
  color: #5a5049;
}

/* ---------- Venture / Product cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.15s ease;
}
.card:hover { transform: translateY(-4px) rotate(-0.5deg); }
.card-img {
  aspect-ratio: 4/3;
  background: var(--color-cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-body { padding: 20px; }
.card-body h3 { margin-bottom: 6px; }
.card-body .price { font-family: var(--font-display); color: var(--color-coral-dark); font-weight: 600; }
.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--color-jungle);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ---------- Venture highlight (home page) ---------- */
.venture {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  margin-bottom: 32px;
}
.venture:nth-child(even) { grid-template-columns: 1fr 1fr; }
.venture:nth-child(even) .venture-media { order: 2; }
.venture-media {
  background: var(--color-cream-dark);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 720px) {
  .venture, .venture:nth-child(even) { grid-template-columns: 1fr; }
  .venture:nth-child(even) .venture-media { order: 0; }
}

/* ---------- Coming soon ---------- */
.coming-soon {
  background: var(--color-jungle);
  color: #fff;
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.coming-soon h2 { color: var(--color-mustard); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: var(--color-cream-dark);
  padding: 40px 0 24px;
  margin-top: 40px;
}
.site-footer a { color: var(--color-mustard); }
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-note { font-size: 0.85rem; opacity: 0.7; text-align: center; }

/* ---------- Contact form ---------- */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--color-cream-dark);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-coral);
}

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.story-block {
  max-width: 720px;
  margin: 0 auto 32px;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.value-item {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
