/* Global Styles */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

.landing-container {
  position: relative;
  height: 100vh;
  background-image: url('../assets/background.jpg'); /* Background image path */
  background-size: cover;
  background-position: center;
  animation: moveBackground 20s infinite linear; /* Animation to move background */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

@keyframes moveBackground {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

.content {
  z-index: 10;
  max-width: 1200px;
  margin: 0 20px;
  animation: fadeInUp 1.5s ease-out;
}

h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 4rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.subheading {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.bio-section {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.bio-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.bio-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  background-color: #0078d4;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1.2em;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-5px);
  background-color: #005a8b;
}

.contact-btn {
  background-color: #34d399;
}

.contact-btn:hover {
  background-color: #059669;
}

footer {
  margin-top: 50px;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.6);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 600px) {
  h1 {
    font-size: 2.5em;
  }

  .subheading {
    font-size: 1.1em;
  }

  .bio-section {
    padding: 20px;
  }

  .btn {
    font-size: 1em;
  }
}