/* Metonymic + Debris - 2025 Convergence */
:root {
  --bg: #0a0a0a;
  --fg: #e8e8e8;
  --accent: #00ff9d;
  --accent-dim: #00cc7d;
  --muted: #999;
  --alt-bg: #121212;
  --container-width: 1200px;
  --card-bg: #1a1a1a;
  --border: #2a2a2a;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.8;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2rem 1rem;
}

h1, h2, h3 {
  font-weight: 300;
  margin-bottom: 1rem;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.04em;
  font-weight: 200;
}

h2 {
  font-size: 2.5rem;
  margin-top: 3rem;
  font-weight: 300;
}

h3 {
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 400;
}

p {
  margin-bottom: 1.5rem;
  color: var(--fg);
  font-size: 1.1rem;
  max-width: 75ch;
}

ul {
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

ul li {
  margin-bottom: 0.5rem;
}

/* Navigation */
.navbar {
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--accent);
}

.logo {
  font-weight: 300;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.1em;
}

/* Hero */
.hero {
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 10rem 1rem;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .overlay {
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.05) 0%, rgba(10, 10, 10, 0.85) 100%);
  padding: 4rem 1rem;
  backdrop-filter: blur(8px);
  width: 100%;
}

.hero h1 {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  font-weight: 200;
  letter-spacing: 0.05em;
}

.hero p.subhead {
  font-size: 1.3rem;
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* Sections */
.section {
  padding: 5rem 1rem;
}

.alt-bg {
  background: var(--alt-bg);
}

/* Grid Layout */
.feature-grid,
.card-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 255, 157, 0.1);
  border-color: var(--accent);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: #000;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-top: 1rem;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0, 255, 157, 0.3);
}

.cta-button:hover {
  background: var(--accent-dim);
  box-shadow: 0 0 30px rgba(0, 255, 157, 0.5);
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.cta-button.secondary:hover {
  background: var(--accent);
  color: #000;
}

/* Images */
.responsive-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.responsive-img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 48px rgba(0, 255, 157, 0.15);
  border-color: var(--accent);
}

/* Footer */
.footer {
  padding: 4rem 1rem;
  background: var(--card-bg);
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

/* Blockquotes */
blockquote {
  font-style: italic;
  color: var(--fg);
  border-left: 3px solid var(--accent);
  padding-left: 2.5rem;
  margin: 4rem 0;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 300;
}

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

a:hover {
  color: var(--accent-dim);
  text-decoration: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p.subhead {
    font-size: 1.2rem;
  }
  
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .feature-grid,
  .card-grid,
  .industry-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .section {
    padding: 3rem 1rem;
  }
}

/* Force hero text visibility */
.hero h1,
.hero h2,
.hero h3,
.hero p {
  color: #ffffff !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero .overlay h1,
.hero .overlay h2,
.hero .overlay h3,
.hero .overlay p {
  color: #ffffff !important;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* Gallery-specific styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.artwork-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.artwork-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 255, 157, 0.1);
  border-color: var(--accent);
}

.artwork-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.artwork-card .info {
  padding: 2rem;
}

.artwork-card h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.3rem;
  color: #fff;
}

.artwork-card .medium {
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  letter-spacing: 0.03em;
}

/* Blog / Voice Notes Styling */
.blog-main {
  min-height: 80vh;
  padding: 4rem 0;
}

.blog-main h1 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--accent);
}

.blog-main .subhead {
  text-align: center;
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 4rem;
  font-style: italic;
}

.blog-posts {
  max-width: 800px;
  margin: 0 auto;
}

.blog-post {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}

.blog-post:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 255, 157, 0.15);
}

.blog-post time {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.blog-post h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-weight: 400;
}

.blog-post .post-content {
  line-height: 1.8;
  color: var(--fg);
  font-size: 1.05rem;
}

.blog-post .post-content p {
  margin-bottom: 1.5rem;
}

.blog-post .post-content p:last-child {
  margin-bottom: 0;
}
