/* Simple NostrID Concept Styles */

body {
  background: #18181b;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  background: rgba(24, 24, 27, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #333;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.nav-logo .logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F7931A;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: #F7931A;
}

.nav-cta {
  background: #F7931A !important;
  color: black !important;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 2rem;
}

/* Hero Section */
.hero-section {
  text-align: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 4rem;
}

.title {
  font-size: 4rem;
  margin: 0;
  background: linear-gradient(135deg, #F7931A, #a259ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.subtitle {
  font-size: 2rem;
  margin: 1rem 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 2rem auto;
  line-height: 1.6;
}

/* Sections */
.section {
  margin: 4rem 0;
  padding: 2rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  color: #F7931A;
  font-weight: 700;
}

/* Idea Grid */
.idea-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.idea-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.idea-item:hover {
  transform: translateY(-5px);
  border-color: #F7931A;
}

.idea-item h3 {
  color: #F7931A;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.idea-item p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* How It Works */
.how-it-works {
  max-width: 600px;
  margin: 2rem auto;
}

.step-simple {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-simple:hover {
  transform: translateY(-3px);
  border-color: #a259ff;
}

.step-number {
  background: linear-gradient(135deg, #F7931A, #a259ff);
  color: white;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.step-simple h4 {
  margin: 0 0 0.5rem 0;
  color: #F7931A;
  font-size: 1.1rem;
}

.step-simple p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* Vision */
.vision-text {
  font-size: 1.3rem;
  line-height: 1.6;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Join Section */
.join-section {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.join-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn-primary {
  background: linear-gradient(135deg, #F7931A, #a259ff);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(247, 147, 26, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.8rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #F7931A;
  transform: translateY(-2px);
}

/* Simple Footer */
.footer-simple {
  text-align: center;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
}

.footer-simple p {
  margin: 0 0 1rem 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.footer-links a {
  color: #a259ff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-links a:hover {
  color: #F7931A;
}

/* Highlights */
.highlight {
  color: #F7931A;
  font-weight: 600;
}

.nostr {
  color: #a259ff;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .idea-grid {
    grid-template-columns: 1fr;
  }
  
  .step-simple {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .container {
    padding: 5rem 1rem 2rem;
  }
}