/* welcome.css - Specific styling for the welcome page */

.welcome-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #e5eaf1 100%);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin-right: var(--spacing-md);
  box-shadow: var(--shadow-md);
}

.logo h1 {
  margin-bottom: 0;
  font-size: 2.5rem;
  color: var(--primary-dark);
}

.logo-accent {
  color: var(--accent);
  font-weight: 500;
}

.welcome-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
}

.welcome-card h2 {
  font-size: 1.8rem;
  margin-bottom: var(--spacing-lg);
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-xl);
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--spacing-xl);
  gap: var(--spacing-md);
}

.feature {
  flex: 1 1 200px;
  display: flex;
  align-items: flex-start;
  text-align: left;
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 1.8rem;
  margin-right: var(--spacing-md);
  color: var(--primary);
}

.feature-text h3 {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-xs);
  color: var(--primary-dark);
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.cta-container {
  margin-top: var(--spacing-xl);
}

.start-btn {
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: 1.1rem;
  background-color: var(--primary);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  min-width: 200px;
}

.start-btn:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
}

.session-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: var(--spacing-md);
}

.footer {
  text-align: center;
  margin-top: var(--spacing-xl);
  color: var(--text-light);
  font-size: 0.8rem;
}

.footer a {
  color: var(--primary);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .welcome-card {
    padding: var(--spacing-lg);
  }

  .features {
    flex-direction: column;
  }

  .feature {
    margin-bottom: var(--spacing-md);
  }
}


/* Add this to your CSS (styles.css or welcome.css) */
.pairapy-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subtitle {
  margin-top: -35px;
  margin-bottom: 15px;
  color: #4a6fa5;
  font-family: 'Raleway', sans-serif;
  font-size: 1.9rem;
  font-weight: 500;
  opacity: 0.85;
}