body {
  font-family: 'Open Sans', Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #2e2e2e;
  background-image: url('photos/mountain.jpg');
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

header {
  background-color: rgba(0, 0, 0, 0.7);
  color: #80b3ff;
  padding: 10px 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  animation: slideDown 1s ease-in-out;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

nav {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  animation: fadeIn 1.5s ease-in-out 0.5s;
  opacity: 0;
  animation-fill-mode: forwards;
}

nav a {
  color: #80b3ff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: color 0.3s ease-in-out;
}

nav a:hover {
  color: #a3c9ff;
  transform: scale(1.1);
}

.container {
  width: 80%;
  margin: 20px auto;
  font-size: 1.2rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  border: 3px solid #80b3ff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.profile-image:hover {
  transform: rotate(10deg) scale(1.1);
}

.profile {
  text-align: center;
  padding: 20px 0;
  animation: fadeIn 2s ease-in-out;
}

.profile h1 {
  margin-bottom: 10px;
  font-size: 2rem;
  color: #80b3ff;
}

.profile p {
  color: #ccc;
  font-style: italic;
}

.about, .projects, .contact {
  margin: 40px 0;
  animation: fadeInUp 1.2s ease-in-out;
}

.about h2, .projects h2, .contact h2 {
  border-bottom: 2px solid #80b3ff;
  padding-bottom: 10px;
  color: #80b3ff;
  font-size: 1.8rem;
}

.projects .project {
  margin: 20px 0;
  animation: fadeInUp 1.5s ease-in-out;
}

.projects .project img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 2px solid #80b3ff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease-in-out;
}

.projects .project img:hover {
  transform: scale(1.05);
}

.projects .project h3 {
  margin-top: 10px;
  color: #80b3ff;
  font-size: 1.5rem;
}

.projects .project p {
  color: #ddd;
  line-height: 1.6;
}

.contact form {
  display: flex;
  flex-direction: column;
}

.contact form input, .contact form textarea {
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #80b3ff;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease-in-out;
}

.contact form input:focus, .contact form textarea:focus {
  border-color: #a3c9ff;
  outline: none;
}

.contact form button {
  padding: 10px;
  background-color: #80b3ff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease-in-out, transform 0.2s;
}

.contact form button:hover {
  background-color: #a3c9ff;
  transform: scale(1.05);
}

/* ===== ICON LINKS (BADGES) ===== */

.icon-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}

/* Badge size */
.icon-link {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px solid #80b3ff;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

/* Icon size */
.icon-link svg {
  width: 18px;
  height: 18px;
  fill: #80b3ff;
}

/* Hover */
.icon-link:hover {
  transform: scale(1.15);
  border-color: #a3c9ff;
  background: rgba(163, 201, 255, 0.15);
}

.icon-link:hover svg {
  fill: #a3c9ff;
}
