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

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

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #0b1a2c;
  color: #fff;
  transition: background 0.5s, color 0.5s;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #112a45;
  padding: 1em 2em;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
  font-weight: bold;
  color: #a97ee6;
  font-size: 1.5em;
}

.contact-link {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
}

.text-section {
  padding: 2em;
  text-align: center;
  animation: fadeUp 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

.image-section {
  display: flex;
  justify-content: center;
  gap: 1em;
  padding: 2em;
  flex-wrap: wrap;
  animation: fadeUp 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

.image-section img {
  max-width: 45%;
  height: auto;
  border-radius: 10px;
}

.contact-page {
  display: flex;
  justify-content: center;
  padding: 2em;
}

.contact-section {
  text-align: center;
  max-width: 600px;
  width: 100%;
  animation: fadeUp 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1em;
  animation: fadeUp 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 0.6s;
}

.about-me {
  animation: fadeUp 1s ease-out;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
}

.contact-form button {
  padding: 0.8em;
  background-color: #a97ee6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.about-me a,
.about-me a:visited,
.about-me a:hover,
.about-me a:active {
  color: #ffffff;
  text-decoration: none;
}
.image-section img:first-child {
  max-width: 90%;
}


.about-me a:hover {
  text-decoration: underline;
}