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

/* Body Styling with Background Image */
body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-image: url("/assets/background-9b6f9c5d.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #333;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

/* Semi-transparent overlay for readability */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2); /* Semi-transparent white */
  backdrop-filter: blur(3px); /* Adds a soft blur for modern look */
  z-index: 0;
}

/* Container */
.container {
  max-width: 800px;
  animation: fadeIn 1.5s ease-in-out;
  position: relative;
  z-index: 1; /* Keeps text above overlay */
}

/* Title */
h1 {
  font-size: 3rem;
  margin-bottom: 50px;
  color: #ffffff;
  font-weight: 600;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

/* Subtitle */
p {
  font-size: 3rem;
  margin-bottom: 50px;
  color: #ffffff;
  animation: fadeInUp 1.2s ease forwards;
  opacity: 0;
}

/* Contact Link */
a {
  font-size: 1.5rem;
  text-decoration: none;
  color: #ffffff;
  font-weight: 400;
  animation: fadeInUp 1.4s ease forwards;
  opacity: 0;
}

a:hover {
  text-decoration: underline;
}

/* Fade-in animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive adjustments */
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }
  p {
    font-size: 2.5rem;
  }
  div {
    font-size: 1.2rem;
  }
}
