.footer {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-divider);
  margin-top: auto;
  padding: 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-text {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-attribution {
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}
:root {
  /* Warm neutral palette inspired by Funko Pop */
  --color-primary: #2b2624;
  --color-secondary: #3d3835;
  --color-accent: #d4a574;
  --color-accent-hover: #e0b888;
  --color-text: #f5f1ed;
  --color-text-secondary: #b8a99a;
  --color-divider: #524a45;
  --color-surface: #1a1715;
  --color-highlight: #8b7355;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--color-primary);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.app-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  padding: 2rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-text);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-accent-hover);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: var(--color-accent);
  color: var(--color-surface);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease;
  text-align: center;
}

.btn:hover {
  background-color: var(--color-accent-hover);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
}

.btn-outline:hover {
  background-color: rgba(212, 165, 116, 0.1);
  border-color: var(--color-accent-hover);
  color: var(--color-accent-hover);
}

.btn-text {
  color: var(--color-text-secondary);
  transition: color 0.15s ease;
  text-decoration: none;
}

.btn-text:hover {
  color: var(--color-accent);
}

/* Home Page */
.home-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero-section {
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.hero-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-surface) 100%);
  padding: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--color-accent);
}

.funko-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.passion-statement {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  max-width: 600px;
}

/* Featured Projects */
.featured-projects {
  margin-top: 4rem;
  text-align: center;
}

.featured-projects h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--color-text);
}

.project-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.project-card {
  background-color: var(--color-secondary);
  border: 1px solid var(--color-divider);
  border-radius: 8px;
  padding: 2rem 1.5rem;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.listkeeper-card {
  gap: 1rem;
}

.card-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.card-link h3 {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin: 0;
  transition: color 0.2s ease;
}

.listkeeper-card:hover .card-link h3 {
  color: var(--color-accent-hover);
}

.card-link p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.project-card h3 {
  color: var(--color-accent);
  font-size: 1.5rem;
  margin: 0;
  transition: color 0.2s ease;
}

.project-card:hover h3 {
  color: var(--color-accent-hover);
}

.project-card p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.project-tag {
  display: inline-block;
  color: var(--color-highlight);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.card-play-badge {
  display: block;
  align-self: flex-start;
  margin-top: 0.5rem;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.card-play-badge:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.card-play-img {
  height: 40px;
  width: auto;
}


/* Project Pages */
.project-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.project-header {
  text-align: center;
  margin-bottom: 2rem;
}

.project-header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.project-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.project-meta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.meta-divider {
  opacity: 0.5;
}

.project-download {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  padding: 1.5rem 0;
}

.play-store-badge {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.play-store-badge:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.play-store-img {
  height: 60px;
  width: auto;
}

@media (max-width: 768px) {
  .play-store-img {
    height: 50px;
  }
}

.project-overview,
.project-highlights,
.project-legal {
  margin-bottom: 3rem;
}

.project-overview h2,
.project-highlights h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.project-overview p {
  font-size: 1.1rem;
  line-height: 1.8;
}

.highlights-list {
  list-style: none;
  padding: 0;
}

.highlights-list li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-secondary);
  font-size: 1.05rem;
}

.highlights-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.project-legal {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-divider);
}

.back-link {
  text-align: center;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
  .main-content {
    padding: 1rem;
  }

  .home-page {
    padding: 2rem 1rem;
  }

  .hero-image {
    width: 140px;
    height: 140px;
  }

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

  .passion-statement {
    font-size: 1.1rem;
  }

  .featured-projects {
    margin-top: 3rem;
  }

  .featured-projects h2 {
    font-size: 1.5rem;
  }

  .project-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .project-page {
    padding: 2rem 1rem;
  }

  .project-header h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}
.navbar {
  background-color: var(--color-surface);
  border-bottom: 1px solid var(--color-divider);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background-color: rgba(26, 23, 21, 0.95);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.logo-text {
  transition: color 0.2s ease;
}

.logo-text:hover {
  color: var(--color-accent-hover);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
  border-radius: 6px;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background-color: var(--color-accent);
  transition: transform 0.2s ease;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.github-link {
  color: var(--color-text-secondary);
  transition: color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border-radius: 6px;
}

.github-link:hover {
  color: var(--color-accent);
  transform: scale(1.1);
}

.language-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: none;
  border: 1px solid var(--color-divider);
  border-radius: 6px;
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  font-weight: 500;
}

.language-toggle:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.language-code {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.language-link {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  padding: 0.5rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-container {
    padding: 1rem;
  }

  .nav-right {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    background-color: var(--color-surface);
    border-top: 1px solid var(--color-divider);
    gap: 0;
  }

  .mobile-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--color-divider);
  }

  .mobile-nav .nav-item:last-child {
    border-bottom: none;
  }

  .mobile-nav .nav-link {
    padding: 1rem 1.5rem;
    display: block;
    width: 100%;
  }

  .mobile-nav .nav-link::after {
    display: none;
  }

  .mobile-nav .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
}
