/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Landing page styles */
.landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  text-align: center;
  padding: 2rem;
}

.header {
  margin-bottom: 3rem;
}

.name {
  font-size: 3rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.social-links h2 {
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-list li {
  margin: 0.75rem 0;
}

.social-list a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  gap: 0.75rem;
}

.social-list a:hover {
  color: #007bff;
}

.social-icon {
  font-size: 1.25rem;
  width: 1.5rem;
  text-align: center;
}

.social-name {
  font-weight: 400;
}
