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

:root {
  --color-bg: #FCF9F2;
  --color-white: #FFFFFF;
  --color-dark: #2B2D42;
  --color-muted: #6B7280;
  --color-border: #E5E7EB;
  --color-green: #58CC02;
  --color-green-shadow: #3B8C02;
  --color-orange: #FF9F1C;
  --color-orange-shadow: #D97706;
  --color-blue: #007AFF;
  --color-blue-shadow: #0053B3;
  --color-red: #FF4B4B;
  --color-red-shadow: #EA2B2B;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header & Navigation */
header {
  border-bottom: 2px solid var(--color-border);
  background-color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-dark);
}

.logo-emoji {
  font-size: 28px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}

nav a {
  font-weight: 700;
  font-size: 15px;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--color-blue);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
}

.hero-avatar {
  width: 120px;
  height: 120px;
  background: var(--color-white);
  border: 3px solid var(--color-dark);
  border-radius: 50%;
  margin: 0 auto 24px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 64px;
  box-shadow: 0 6px 0 var(--color-dark);
}

.hero h1 {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.hero p {
  font-size: 20px;
  color: var(--color-muted);
  max-width: 600px;
  margin: 0 auto 32px auto;
}

/* Buttons */
.btn-group {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 18px;
  border: 3px solid var(--color-dark);
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn-green {
  background-color: var(--color-green);
  color: var(--color-white);
  box-shadow: 0 5px 0 var(--color-dark);
}

.btn-green:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--color-dark);
}

.btn-green:active {
  transform: translateY(5px);
  box-shadow: none;
}

.btn-outline {
  background-color: var(--color-white);
  color: var(--color-dark);
  box-shadow: 0 5px 0 var(--color-dark);
}

.btn-outline:hover {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--color-dark);
}

.btn-outline:active {
  transform: translateY(5px);
  box-shadow: none;
}

/* Feature Cards Grid */
.features {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background-color: var(--color-white);
  border: 3px solid var(--color-dark);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 6px 0 var(--color-dark);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border: 3.5px solid var(--color-dark);
  background-color: var(--color-bg);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.card p {
  color: var(--color-muted);
  font-size: 15px;
}

/* About / Backstory Page Styles */
.content-section {
  padding: 60px 0 100px 0;
  max-width: 750px;
  margin: 0 auto;
}

.content-section h1 {
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 24px;
  text-align: center;
}

.content-card {
  background-color: var(--color-white);
  border: 3px solid var(--color-dark);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 0 var(--color-dark);
}

.content-card h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 32px 0 16px 0;
}

.content-card h2:first-of-type {
  margin-top: 0;
}

.content-card p {
  margin-bottom: 20px;
  color: var(--color-dark);
  font-size: 16px;
}

.content-card ul, .content-card ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.content-card li {
  margin-bottom: 8px;
}

/* Footer */
footer {
  border-top: 2px solid var(--color-border);
  background-color: var(--color-white);
  padding: 40px 0;
  margin-top: 80px;
  text-align: center;
  font-size: 14px;
  color: var(--color-muted);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-links a {
  color: var(--color-dark);
}

.footer-links a:hover {
  color: var(--color-blue);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 34px;
  }
  .hero p {
    font-size: 17px;
  }
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 16px 0;
    gap: 12px;
  }
  .content-card {
    padding: 24px;
  }
}
