/* wildpedal-theme.css */
/* Wildpedal Adventures – global theme */

:root {
  --bg: #f5f5f4;
  --bg-card: #ffffff;
  --text: #222222;
  --muted: #666666;
  --accent: #ff8a3d;
  --accent-soft: rgba(255, 138, 61, 0.08);
  --border-soft: #e5e5e5;
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.16);
  --radius-lg: 18px;
  --radius-xl: 999px;
}

/* Reset / base */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #eaf4ff 0, var(--bg) 40%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 32px 16px;
}

/* Layout containers */

.page {
  width: 100%;
  max-width: 960px;
  margin: auto;
}

.card {
  background: var(--bg-card);
  border-radius: 26px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
  padding: 28px 22px;
  overflow: hidden;
}

@media (min-width: 720px) {
  .card {
    padding: 36px 32px 32px;
  }
}

/* Hero layout */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr);
  gap: 24px;
  align-items: center;
}

@media (min-width: 840px) {
  .hero {
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
  }
}

/* Logo & tagline */

.logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
}

.logo img {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.tagline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border-radius: var(--radius-xl);
  padding: 6px 12px;
  font-size: 0.78rem;
  color: var(--muted);
  border: 1px solid rgba(255, 138, 61, 0.25);
}

.tagline-pill span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

/* Typography */

h1 {
  font-size: clamp(2.1rem, 3vw + 1.4rem, 2.5rem);
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 0.96rem;
  color: var(--muted);
  max-width: 34rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.intro {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 22px;
  max-width: 34rem;
}

.intro strong {
  font-weight: 600;
}

/* Buttons & actions */

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.14s ease,
    box-shadow 0.14s ease,
    background 0.14s ease,
    border-color 0.14s ease,
    color 0.14s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #111827;
  box-shadow: 0 12px 24px rgba(248, 113, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(248, 113, 22, 0.4);
  background: #ff7a20;
}

.btn-ghost {
  background: #ffffff;
  color: var(--muted);
  border-color: var(--border-soft);
}

.btn-ghost:hover {
  background: #f9fafb;
  border-color: #d4d4d4;
}

.btn-icon {
  font-size: 1rem;
  line-height: 1;
}

/* Notes */

.note {
  font-size: 0.8rem;
  color: var(--muted);
}

.note span {
  font-weight: 500;
  color: #374151;
}

/* Hero card / media */

.hero-media {
  position: relative;
  padding: 10px;
}

.hero-card {
  background: radial-gradient(circle at top, #e0f2fe 0, #0b1120 70%);
  border-radius: 26px;
  padding: 14px 14px 14px;
  position: relative;
  overflow: hidden;
  color: #e5e7eb;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.65);
}

@media (min-width: 840px) {
  .hero-card {
    min-height: 260px;
  }
}

.thumbnail {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.65);
  background: #020617;
  margin-bottom: 10px;
}

.thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
  object-fit: cover;
}

.thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent 55%);
}

.thumb-labels {
  position: absolute;
  left: 10px;
  bottom: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.7rem;
}

.pill {
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.9);
  background: rgba(15, 23, 42, 0.6);
  color: #e5e7eb;
  backdrop-filter: blur(6px);
  white-space: nowrap;
}

.hero-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #cbd5f5;
  gap: 10px;
  margin-bottom: 2px;
}

.hero-caption small {
  font-size: 0.7rem;
  opacity: 0.8;
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #e5e7eb;
  gap: 10px;
  margin-top: 4px;
}

.hero-foot strong {
  font-weight: 600;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.7rem;
}

.chip {
  border-radius: 999px;
  padding: 4px 8px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.7);
}

/* Sections */

.section {
  margin-top: 26px;
  border-top: 1px solid var(--border-soft);
  padding-top: 22px;
}

.section-title {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 10px;
}

/* Features grid */

.features {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 720px) {
  .features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature {
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 12px 12px 13px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.feature p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--muted);
}

.feature span {
  font-size: 0.75rem;
  color: #4b5563;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Footer note */

.footer-note {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.paw {
  font-size: 0.9rem;
}
