/**
 * Test Affinità di Coppia - Specific Styles
 * 
 * Extra styles for section separators (LEI/LUI) and result layout
 */

/* Section separators */
.section-separator {
  margin: 3rem 0 2rem;
  padding: 2rem;
  text-align: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.section-separator h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
}

.section-separator p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

.section-lei {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.section-lui {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Result scores container */
.scores-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.score-box {
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.score-box h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #374151;
}

.score-value {
  font-size: 3rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.score-interpretation {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: #6b7280;
}

.score-lei {
  background: linear-gradient(135deg, #ffeef8 0%, #ffe0f0 100%);
}

.score-lei .score-value {
  color: #ec4899;
}

.score-lui {
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
}

.score-lui .score-value {
  color: #3b82f6;
}

.score-diff {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.score-diff .score-value {
  color: #059669;
}

/* Interpretation text */
.interpretation-text {
  margin-top: 3rem;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
}

.interpretation-text h3 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  color: #111827;
}

.interpretation-text h4 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.2rem;
  color: #374151;
}

.interpretation-text p {
  margin: 0.75rem 0;
  line-height: 1.7;
  color: #4b5563;
}

.interpretation-text ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.interpretation-text li {
  margin: 0.75rem 0;
  line-height: 1.7;
  color: #4b5563;
}

.interpretation-text strong {
  color: #111827;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .section-separator {
    margin: 2rem 0 1.5rem;
    padding: 1.5rem;
  }

  .section-separator h2 {
    font-size: 1.5rem;
  }

  .scores-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .score-value {
    font-size: 2.5rem;
  }

  .interpretation-text {
    padding: 1.5rem;
  }
}
