/* Atelier Aurora – Minimal Placeholder (Updated divider width 350px) */

body {
  margin: 0;
  padding: 0;
  height: 100vh;
  background-color: #ECE9E4; /* warm stone grey */
  color: #2E2C2B; /* deep graphite */
  font-family: "Helvetica Neue", Avenir, Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 0 20px;
  opacity: 0;
  animation: fadeIn 2.5s ease-in forwards;
  animation-delay: 1s;
}

h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.4rem;
  letter-spacing: 0.1rem;
  margin: 0 0 10px 0;
  font-weight: 500;
}

.divider {
  width: 90%;
  max-width: 850px;   /* Prevents it from getting too long on large screens */
  border: none;
  border-top: 1.5px solid #C4A373;
  margin: 25px auto;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.02rem;
  margin: 0;
}

.email {
  font-size: 0.9rem;
  margin-top: 25px;
  color: #2E2C2B;
  opacity: 0.8;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.8rem;
  }
  .divider {
    width: 180px;
  }
  .tagline {
    font-size: 1rem;
  }
}