/* 
  JanXer Landing Page Styles
  Polite, Simple, and Classic Aesthetic
*/

:root {
  --bg-color: #fcfcfc;
  --text-color: #2c3e50;
  --accent-color: #34495e;
  --font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-family);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.container {
  max-width: 600px;
  padding: 40px;
  animation: fadeIn 2s ease-in-out;
}

.logo {
  max-width: 250px;
  margin-bottom: 40px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--accent-color);
}

p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
  font-style: italic;
}

.divider {
  width: 50px;
  height: 1px;
  background-color: #ccc;
  margin: 0 auto 30px;
}

.footer {
  font-size: 0.9rem;
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.8;
}

.email-link {
  color: #777;
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  transition: color 0.3s ease;
  font-style: italic;
}

.email-link:hover {
  color: var(--accent-color);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  .container { padding: 20px; }
}
