@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500&display=swap');

:root {
  --bg-color: #faf9f6; /* Elegant off-white/pearl */
  --text-primary: #1a1a1a;
  --text-secondary: #555555;
  --accent-gold: #c5a059;
  --accent-gold-hover: #e0b666;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

/* Subtle background glowing effect */
body::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.04) 0%, rgba(250, 249, 246, 0) 70%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 800px;
  width: 100%;
  z-index: 1;
}

.logo-container {
  margin-bottom: 3rem;
  opacity: 0;
  animation: slideDownFade 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.2s;
}

.logo {
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.08));
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.logo:hover {
  transform: scale(1.03);
}

.content {
  opacity: 0;
  animation: slideUpFade 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.6s;
}

h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-transform: uppercase;
  background: linear-gradient(135deg, #1a1a1a, #4a4a4a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 0 auto 2rem auto;
}

p.subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

/* Contact UI */
.contact-info {
  margin-top: 1rem;
  opacity: 0;
  animation: slideUpFade 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: 0.8s;
}

.contact-info p {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

.contact-email {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

footer {
  position: absolute;
  bottom: 2rem;
  width: 100%;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #888;
  opacity: 0;
  animation: fadeIn 1.5s ease-out forwards;
  animation-delay: 1.2s;
}

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

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 600px) {
  body {
    padding: 1rem;
  }
  .logo {
    max-width: 240px;
  }
  h1 {
    font-size: 2.2rem;
  }
  .contact-email {
    font-size: 1.2rem;
  }
}
