/* SEO content styling - hidden by default, shown only for crawlers */
header {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  min-height: 100vh;
  display: none; /* Hidden by default */
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

header p {
  font-size: 1.25rem;
  max-width: 600px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Hide SEO content when Vue app is loaded */
.vue-app-loaded header,
.vue-app-loaded .seo-content {
  display: none !important;
}

/* Alternative: Hide by default and show only for crawlers */
header {
  display: none;
}

/* Show for search engines and when Vue app hasn't loaded */
html:not(.vue-app-loaded) header {
  display: flex;
}

/* Responsive design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }
  
  header p {
    font-size: 1rem;
  }
}
