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

body {
  background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
  color: #e6c972;
  font-family: 'Playfair Display', serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* glowing gold background effect */
.overlay {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.35) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 0;
}

.content {
  position: relative;
  z-index: 1;
  padding: 40px;
  animation: fadeIn 2s ease-in-out;
}

.logo {
  width: 300px;
  max-width: 80%;
  margin-bottom: 30px;
  filter: drop-shadow(0 0 25px rgba(212,175,55,0.8));
}

h1 {
  font-size: 2.4rem;
  text-transform: uppercase;
  color: #f9e7b0;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

p {
  font-family: 'Montserrat', sans-serif;
  color: #f1da89;
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact p {
  font-size: 0.95rem;
  color: #e8c86b;
}

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