/* Full-screen gold-tone gradient background */
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(to right, #b993d6, #8ca6db); 
  /*background: linear-gradient(to right, #1e3c72, #2a5298, #f6e27a); -> Royal Sapphire & Mist Gold 
  background: linear-gradient(to left, #b76e79, #f8cdda); -> Rose Gold */
  background-size: cover;
  color: #fff;
  font-family: 'Roboto', sans-serif;
}

/* Heading with gold gradient text effect */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin: 0.5em 0;
  background: linear-gradient(90deg, #FFD700 0%, #DAA520 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph styling */
p {
  font-size: 1.2rem;
  margin: 0.5em 0;
  line-height: 1.5;
}

/* Email link in golden color */
a {
  color: #FFD700;
  text-decoration: none;
}

/* Social icons container */
.social-icons {
  margin-top: 1em;
  display: flex;
  gap: 1em;
}

/* Social icon styling */
.social-icons a {
  font-size: 2rem;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
  p {
    font-size: 1rem;
  }
  .social-icons a {
    font-size: 1.5rem;
  }
}
