/* Design page specific styles */
.design-wrapper {
  padding: 3rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 5.5rem;
}

.design-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  color: #37474F;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1rem;
  color: #37474F;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.design-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 3rem 0;
  padding: 1rem 0;
}

.tab {
  padding: 0.75rem 2rem;
  font-family: 'Roboto Mono', monospace;
  border: 2px solid #37474F;
  background-color: transparent;
  color: #37474F;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.tab:hover,
.tab.active {
  background-color: #37474F;
  color: #ECEFF1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.3);
}

.design-content {
  display: none;
  background-color: #ECEFF1;
  padding: 2rem;
  border: 1px solid #B0BEC5;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.design-content.active {
  display: block;
}

.design-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.75rem;
  color: #37474F;
  margin-bottom: 1.5rem;
  text-align: center;
}

.design-body h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.3rem;
  color: #37474F;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #00E5FF;
  padding-bottom: 0.5rem;
}

.design-body p {
  color: #37474F;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.design-body ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.design-body li {
  color: #37474F;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.design-body li strong {
  color: #00E5FF;
}

/* Wireframes specific styles */
.wireframes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.wireframe-card {
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

.wireframe-content {
  padding: 1.5rem;
}

.wireframe-content h4 {
  font-family: 'Orbitron', sans-serif;
  color: #37474F;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.wireframe-content p {
  color: #37474F;
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

/* Style guide specific styles */
.style-guide-image {
  text-align: center;
  margin: 2rem 0;
}

.full-width-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.typography-section {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid #00E5FF;
}

/* User flow diagram styles */
.user-flow-section {
  text-align: center;
  margin: 2rem 0;
}

.flow-diagram {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .design-wrapper {
    padding: 2rem 0.5rem;
    padding-top: 5rem;
  }
  
  .design-tabs {
    gap: 0.25rem;
  }
  
  .tab {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .design-content {
    padding: 1.5rem;
  }
  
  .design-title {
    font-size: 1.5rem;
  }
  
  .design-body h3 {
    font-size: 1.2rem;
  }
  
  .wireframes-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .typography-section {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  
  .subtitle {
    font-size: 0.9rem;
  }
  
  .design-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .tab {
    width: 200px;
    text-align: center;
  }
}