/* ============================================
   #PreMarriageTalk — Toolkit Hub Styles
   ============================================ */

.toolkit-hero {
  position: relative;
  background: linear-gradient(135deg, #003333 0%, #0d8f8f 60%, #1aadad 100%);
  color: #ffffff;
  padding: 8rem 0 5rem 0;
  overflow: hidden;
  text-align: center;
}

.toolkit-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

.toolkit-hero h1 {
  font-family: 'TT Wellingtons', 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.toolkit-hero .highlight-coral,
.toolkit-hero .highlight-gold {
  color: #ffd4d6 !important;
  font-style: italic;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.toolkit-hero-subtitle {
  font-family: 'TT Wellingtons', 'Outfit', sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

/* Wave Divider Overrides to blend seamlessly with .toolkit-section (#f8fafb) */
.toolkit-hero .hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.toolkit-hero .parallax > use:nth-child(4) {
  fill: #f8fafb;
}

.footer-wave-wrapper {
  background-color: #f8fafb;
  margin-top: 0;
}

/* Main Section */
.toolkit-section {
  font-family: 'TT Wellingtons', 'Outfit', sans-serif;
  background-color: #f8fafb;
  padding: 3rem 0 5rem 0;
  min-height: 60vh;
}

.toolkit-header-bar {
  text-align: center;
  margin-bottom: 3.5rem;
}

.toolkit-section-tag {
  color: var(--teal-600, #0d8f8f);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.5rem;
}

.toolkit-section-title {
  font-family: 'TT Wellingtons', 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-teal, #325759);
  margin-bottom: 0.75rem;
}

.toolkit-section-desc {
  color: var(--gray-600, #546675);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid Layout */
.toolkit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1120px;
  margin: 0 auto;
}

/* Toolkit Card */
.toolkit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e2e8ec;
  box-shadow: 0 8px 24px rgba(0, 51, 51, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.toolkit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(13, 143, 143, 0.12);
  border-color: var(--teal-300, #4dd4d4);
}

.toolkit-card.featured {
  border: 2px solid var(--teal-500, #1aadad);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfd 100%);
}

.featured-ribbon {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: linear-gradient(135deg, #d96a6c, #e8787a);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(217, 106, 108, 0.3);
}

.toolkit-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--teal-50, #e6f7f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.toolkit-card.featured .toolkit-card-icon {
  background: linear-gradient(135deg, #0d8f8f, #1aadad);
  color: #fff;
  box-shadow: 0 4px 12px rgba(13, 143, 143, 0.25);
}

.toolkit-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-teal, #325759);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.badge-beta {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  line-height: 1.2;
}

.toolkit-card-desc {
  font-size: 0.95rem;
  color: #546675;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.toolkit-card-meta {
  border-top: 1px solid #edf2f5;
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toolkit-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #6b7c8a;
}

.toolkit-meta-item strong {
  color: var(--dark-teal, #325759);
}

.toolkit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.toolkit-btn-primary {
  background: linear-gradient(135deg, #0d8f8f 0%, #1aadad 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(13, 143, 143, 0.25);
}

.toolkit-btn-primary:hover {
  background: linear-gradient(135deg, #007070 0%, #0d8f8f 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(13, 143, 143, 0.35);
  color: #ffffff;
}

.toolkit-btn-disabled {
  background: #e2e8ec;
  color: #94a3b0;
  cursor: not-allowed;
  pointer-events: none;
}

.toolkit-card.upcoming {
  opacity: 0.85;
}

.toolkit-card.upcoming:hover {
  transform: none;
  border-color: #e2e8ec;
}

/* Callout Box */
.toolkit-bottom-callout {
  max-width: 900px;
  margin: 4rem auto 0;
  background: linear-gradient(135deg, #003333, #325759);
  color: white;
  border-radius: 24px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 12px 30px rgba(0, 51, 51, 0.15);
}

.toolkit-callout-text h3 {
  font-family: 'TT Wellingtons', 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.toolkit-callout-text p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.toolkit-callout-btn {
  white-space: nowrap;
  background: #d96a6c;
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.toolkit-callout-btn:hover {
  background: #c45a5c;
  transform: translateY(-2px);
  color: white;
}

@media (max-width: 768px) {
  .toolkit-hero {
    padding: 6.5rem 1rem 4rem 1rem;
  }
  .toolkit-grid {
    gap: 1.25rem;
  }
  .toolkit-card {
    padding: 1.4rem 1.15rem;
    border-radius: 16px;
  }
  .toolkit-card-icon {
    width: 46px;
    height: 46px;
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    border-radius: 12px;
  }
  .toolkit-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.45rem;
    line-height: 1.3;
  }
  .toolkit-card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.85rem;
  }
  .toolkit-card-meta {
    padding-top: 0.75rem;
    margin-bottom: 1rem;
    gap: 0.35rem;
  }
  .toolkit-meta-item {
    font-size: 0.82rem;
    gap: 0.4rem;
  }
  .toolkit-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-radius: 10px;
  }
  .toolkit-bottom-callout {
    flex-direction: column;
    text-align: center;
    padding: 1.75rem 1.25rem;
  }
  .toolkit-callout-text h3 {
    font-size: 1.42rem;
    line-height: 1.3;
    margin-bottom: 0.45rem;
  }
  .toolkit-callout-text p {
    font-size: 0.92rem;
    line-height: 1.5;
  }
  .desktop-br {
    display: none;
  }
  .toolkit-callout-btn {
    width: 100%;
    text-align: center;
  }
}

/* Simple Footer */
.footer-simple {
  background: #ffffff;
  border-top: 1px solid #e2e8ec;
  padding: 2.25rem 1.25rem;
  text-align: center;
  margin-top: auto;
}

.footer-simple .container {
  max-width: 900px;
  margin: 0 auto;
}

.footer-simple p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray-600, #546675);
  line-height: 1.6;
}

.footer-simple p strong {
  color: var(--dark-teal, #325759);
}

.footer-simple .footer-links {
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: var(--gray-400, #94a3b0);
}

.footer-simple .footer-links a {
  color: var(--teal-600, #0d8f8f);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-simple .footer-links a:hover {
  color: var(--teal-700, #0a6f6f);
  text-decoration: underline;
}
