/* assets/styles/components.css */
/* Minimal and clean component styles */

/* Header */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
  margin-bottom: 1rem;
  width: 100%;
  text-align: center;
}

.logo-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  margin-left: 0;
}

.header-logo {
  height: 30px;
  width: auto;
  margin-bottom: 0.5rem;
}

.header-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

/* Footer */
footer {
  width: 100%;
  padding-bottom: 2rem;
  text-align: center;
  margin-top: auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.7rem;
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.separator {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.5rem;
  font-weight: 300;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
  margin-left: 0.5rem;
}

.social-icon:hover {
  color: rgba(255, 255, 255, 0.9);
}

.peergem-icon img {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.peergem-icon:hover img {
  opacity: 0.9;
}

.copyright {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 300;
}

/* Test content area */
.test-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
}

/* Footer PeerGem icon */
.footer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
}

/* Responsive adjustments for header */
@media (max-width: 768px) {
  header {
    padding: 1.25rem 0;
  }
  
  .header-logo {
    height: 25px;
    margin-bottom: 0.4rem;
  }
  
  .header-tagline {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  header {
    padding: 1rem 0;
  }
  
  .header-logo {
    height: 22px;
    margin-bottom: 0.3rem;
  }
  
  .header-tagline {
    font-size: 0.7rem;
  }
}
