:root {
  --pink: #ffe4ec;
  --blue: #e6f0ff;
  --green: #e8f8f0;
  --yellow: #fff6e5;

  --text-dark: #222;
  --text-light: #666;
}




/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADER */
.site-header {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 1.6rem; /* was ~1.2rem */
  text-decoration: none;
  color: #111;
}


.tagline {
  font-size: 0.85rem;
  color: #666;
  margin-top: 2px;
}


/* HERO */
.hero {
  padding: 40px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.eyebrow {
  font-size: 0.75rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-text h1 {
  font-size: 2rem;
  margin: 10px 0;
}

.hero-text p {
  color: #555;
  font-size: 1rem;
}

/* HERO CARDS (UPDATED) */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mini-card {
  border-radius: 16px;
  padding: 24px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}



/* DID YOU KNOW */
.mini-card:nth-child(1) {
  background: var(--pink);
}

/* PUZZLE GAMES */
.mini-card:nth-child(2) {
  background: var(--blue);
}

/* BRAINTEASERS */
.mini-card:nth-child(3) {
  background: var(--green);
}

/* COLORING */
.mini-card:nth-child(4) {
  background: var(--yellow);
}



.mini-label.facts {
  color: #ff6b9a;
}

.mini-label.games {
  color: #4a7cff;
}

.mini-label.teasers {
  color: #2bb673;
}

.mini-label.coloring {
  color: #f5a623;
}


.mini-card {
  border: 1px solid rgba(0,0,0,0.04);
}




.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.mini-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
}

.mini-card h3 {
  font-size: 1.2rem;
  margin: 8px 0;
}

.mini-card p {
  font-size: 0.95rem;
  color: #555;
}

/* SECTION */
.section {
  padding: 40px 0;
}

.section h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.section p {
  color: #555;
}

/* FREE PACK */
.free-pack-box {
  background: #f7f7f7;
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.free-pack-text h2 {
  margin-bottom: 10px;
}

.free-pack-text p {
  margin-bottom: 16px;
}

/* FORM FIX (IMPORTANT) */
.signup-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.signup-form input {
  flex: 1;
  min-width: 200px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}

.signup-form button {
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  background: #111;
  color: #fff;
  cursor: pointer;
}

.signup-form button:hover {
  background: #333;
}

.small-heading {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 8px;
}

.free-pack-list ul {
  list-style: none;
}

.free-pack-list li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* FOOTER */
.site-footer {
  padding: 30px 0;
  border-top: 1px solid #eee;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-nav a {
  margin-right: 15px;
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .mini-card {
    min-height: 130px;
  }

  .free-pack-box {
    grid-template-columns: 1fr;
  }

  /* FIX HUGE INPUT ISSUE */
  .signup-form {
    flex-direction: column;
  }

  .signup-form input,
  .signup-form button {
    width: 100%;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }
}



/* FUN FACT OF THE DAY */
.fact-of-day-card {
  margin-top: 24px;
  background: #fff4e8;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  padding: 20px;
  max-width: 460px;
}

.fact-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: #f28c28;
  margin-bottom: 8px;
}

.fact-of-day-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.fact-of-day-card p {
  color: #444;
}

.fact-btn {
  margin-top: 14px;
  border: none;
  background: #f28c28;
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.fact-btn:hover {
  opacity: 0.95;
}