/* Onboarding Display Styles for Soundpaste Plugin */

.soundpaste-onboarding-page {
  max-width: 1200px;
  margin: 0 auto;
}

.soundpaste-onboarding-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 12px;
  margin-top: 20px;
}

.soundpaste-onboarding-header h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: white;
}

.soundpaste-onboarding-header .dashicons {
  font-size: 1.2em;
  vertical-align: middle;
  margin-right: 10px;
}

.soundpaste-onboarding-header .lead {
  font-size: 1.2em;
  margin: 0;
  opacity: 0.9;
}

.onboarding-section {
  background: white;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.onboarding-section h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: #1e293b;
  border-bottom: 2px solid #e1e5e9;
  padding-bottom: 10px;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.feature-item {
  text-align: center;
  padding: 20px;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  background: #f8fafc;
}

.feature-item .dashicons {
  font-size: 3em;
  color: #667eea;
  margin-bottom: 15px;
}

.feature-item h3 {
  margin: 10px 0;
  color: #1e293b;
}

/* Option Cards */
.option-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.option-card {
  border: 2px solid #e1e5e9;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.option-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.soundpaste-option {
  border-color: #667eea;
}

.option-header {
  background: #f8fafc;
  padding: 20px;
  border-bottom: 1px solid #e1e5e9;
  position: relative;
}

.soundpaste-option .option-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.option-header h3 {
  margin: 0;
  font-size: 1.3em;
}

.option-header .dashicons {
  margin-right: 8px;
  font-size: 1.1em;
}

.option-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #10b981;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: 600;
}

.option-badge.recommended {
  background: #f59e0b;
}

.option-content {
  padding: 20px;
}

.option-content ul {
  margin: 15px 0;
  padding-left: 0;
}

.option-content li {
  list-style: none;
  margin: 8px 0;
  padding-left: 0;
}

.trial-info {
  background: #fef3c7;
  border: 1px solid #f59e0b;
  border-radius: 6px;
  padding: 15px;
  margin: 15px 0;
}

.trial-highlight {
  text-align: center;
  color: #92400e;
}

.trial-highlight .dashicons {
  color: #f59e0b;
  margin-right: 5px;
}

.option-action {
  margin-top: 20px;
}

/* Coming Soon Grid */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.coming-soon-item {
  padding: 20px;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  background: #f1f5f9;
  text-align: center;
}

.coming-soon-item .dashicons {
  font-size: 2.5em;
  color: #94a3b8;
  margin-bottom: 10px;
}

.coming-soon-item h4 {
  margin: 10px 0;
  color: #475569;
}

.coming-soon-item p {
  color: #64748b;
  margin: 0;
  font-size: 0.9em;
}

/* Getting Started Steps */
.getting-started-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  background: #ffffff;
}

.step-number {
  background: #667eea;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.2em;
  flex-shrink: 0;
}

.step-content h4 {
  margin: 0 0 10px 0;
  color: #1e293b;
}

.step-content p {
  margin: 0 0 15px 0;
  color: #64748b;
}

/* Completion section button styling */
.completion-form .button-hero .dashicons {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  font-size: 1em;
}

/* Responsive design */
@media (max-width: 768px) {
  .option-cards,
  .feature-grid,
  .coming-soon-grid,
  .getting-started-steps {
    grid-template-columns: 1fr;
  }

  .soundpaste-onboarding-header {
    padding: 30px 15px;
  }

  .soundpaste-onboarding-header h1 {
    font-size: 2em;
  }

  .onboarding-section {
    padding: 20px;
  }
}

/* External Services Notice */
.external-services-notice .notice-box {
  background: #fef7f0;
  border: 2px solid #f97316;
  border-radius: 8px;
  padding: 20px;
  margin: 0;
}

.external-services-notice h2 {
  color: #ea580c;
  margin-top: 0;
  margin-bottom: 15px;
  border-bottom: none;
  padding-bottom: 0;
  font-size: 1.2em;
}

.external-services-notice h2 .dashicons {
  margin-right: 8px;
  font-size: 1.1em;
  vertical-align: middle;
}

.external-services-notice p {
  color: #9a3412;
  margin: 10px 0;
  line-height: 1.5;
}

.external-services-notice ul {
  color: #9a3412;
  margin: 15px 0;
  padding-left: 20px;
}

.external-services-notice li {
  margin: 8px 0;
  line-height: 1.4;
}

.external-links {
  margin-top: 15px;
  text-align: center;
}

.external-links a {
  color: #ea580c;
  text-decoration: underline;
  font-weight: 500;
}

.external-links a:hover {
  color: #c2410c;
}
