/* Minimal Theme - Ultra clean, single column, sparse */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&display=swap');

html[data-theme="minimal"] {
  --color-bg: #ffffff;
  --color-text: #111111;
  --color-text-light: #666666;
  --color-accent: #111111;
  --color-border: #eeeeee;
  --color-card-bg: #ffffff;
  --font-main: 'Inter', -apple-system, sans-serif;
}

html[data-theme="minimal"] body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  font-weight: 300;
}

/* Header - Extremely minimal */
html[data-theme="minimal"] .site-header {
  background: transparent;
  padding: 3rem 0;
  border-bottom: none;
}

html[data-theme="minimal"] .site-header h1 {
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

html[data-theme="minimal"] .site-logo {
  color: var(--color-text);
}

html[data-theme="minimal"] .site-nav {
  gap: 2rem;
}

html[data-theme="minimal"] .site-nav a {
  color: var(--color-text-light);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 400;
}

html[data-theme="minimal"] .site-nav a:hover {
  color: var(--color-text);
}

/* Hero - Simple, centered */
html[data-theme="minimal"] .hero {
  padding: 6rem 0 4rem;
  max-width: 600px;
  margin: 0 auto;
}

html[data-theme="minimal"] .hero h1 {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.6;
}

html[data-theme="minimal"] .hero-subtitle {
  font-size: 1rem;
  color: var(--color-text-light);
  font-weight: 300;
  margin-top: 1rem;
}

html[data-theme="minimal"] .hero-family {
  display: none; /* Hide in minimal theme */
}

/* Post Grid - Single column, no cards */
html[data-theme="minimal"] .latest-posts {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

html[data-theme="minimal"] .latest-posts h2 {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

html[data-theme="minimal"] .post-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Post Card - Text only, no box */
html[data-theme="minimal"] .post-card {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 2rem 0;
  border-bottom: 1px solid var(--color-border);
}

html[data-theme="minimal"] .post-card:hover {
  transform: none;
  box-shadow: none;
}

html[data-theme="minimal"] .post-card-image-link {
  display: none; /* Hide images in grid */
}

html[data-theme="minimal"] .post-card-content {
  padding: 0;
}

html[data-theme="minimal"] .post-card-content time {
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
}

html[data-theme="minimal"] .post-card-content h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0.5rem 0;
}

html[data-theme="minimal"] .post-card-content h3 a {
  color: var(--color-text);
}

html[data-theme="minimal"] .post-card-content h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

html[data-theme="minimal"] .post-excerpt {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

html[data-theme="minimal"] .post-card-characters,
html[data-theme="minimal"] .character-tag,
html[data-theme="minimal"] .character-tag-small {
  display: none; /* Hide tags in minimal */
}

html[data-theme="minimal"] .read-more {
  display: none; /* No read more in minimal */
}

/* Single Post - Clean, readable */
html[data-theme="minimal"] .post {
  max-width: 600px;
  margin: 0 auto;
  background: transparent;
  box-shadow: none;
  padding: 2rem 1.5rem;
}

html[data-theme="minimal"] .post-title {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

html[data-theme="minimal"] .post-meta {
  color: var(--color-text-light);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

html[data-theme="minimal"] .post-characters {
  display: none;
}

html[data-theme="minimal"] .post-content {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 300;
}

html[data-theme="minimal"] .post-content img {
  margin: 3rem 0;
  box-shadow: none;
  border-radius: 0;
}

html[data-theme="minimal"] .post-footer {
  border-top: 1px solid var(--color-border);
  margin-top: 4rem;
  padding-top: 2rem;
}

html[data-theme="minimal"] .post-nav a {
  color: var(--color-text);
  font-size: 0.875rem;
}

/* Instagram CTA - Hidden in minimal */
html[data-theme="minimal"] .instagram-cta {
  display: none;
}

/* Footer - Minimal */
html[data-theme="minimal"] .site-footer {
  background: transparent;
  color: var(--color-text-light);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0;
  margin-top: 4rem;
}

html[data-theme="minimal"] .site-footer a {
  color: var(--color-text);
}

/* Pagination */
html[data-theme="minimal"] .pagination {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
}

html[data-theme="minimal"] .pagination a {
  color: var(--color-text);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Gallery - Simple grid */
html[data-theme="minimal"] .post-gallery {
  border-top: 1px solid var(--color-border);
}

html[data-theme="minimal"] .post-gallery h3 {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
}

html[data-theme="minimal"] .gallery-item {
  border-radius: 0;
}

html[data-theme="minimal"] .gallery-caption {
  display: none;
}

/* Theme switcher */
html[data-theme="minimal"] .theme-switcher-toggle {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text-light);
}

html[data-theme="minimal"] .theme-switcher-menu {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  box-shadow: none;
}

html[data-theme="minimal"] .theme-option {
  color: var(--color-text);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
