* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

body {
  background-color: #f8f4e1;
  color: #4e1f00;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #4e1f00;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo-img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: #f8f4e1;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #feba17;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #f8f4e1;
  margin: 5px;
  transition: all 0.3s ease;
}

/* About Dev Section */
.about-dev {
  padding: 120px 50px 100px;
  text-align: center;
  background: linear-gradient(180deg, #f8f4e1, #74512d);
}

.dev-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.dev-name h1 {
  font-size: 64px;
  color: #feba17;
  text-shadow: 0 0 10px rgba(78, 31, 0, 0.5);
  text-align: left;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.dev-photo {
  flex: 1;
  max-width: 400px;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 0.3s;
}

.dev-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(78, 31, 0, 0.5);
}

.dev-description {
  max-width: 800px;
  margin: 0 auto 60px;
}

.dev-description h2 {
  font-size: 36px;
  color: #feba17;
  margin-bottom: 50px;
}

.dev-description p {
  font-size: 18px;
  color: #74512d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  font-size: 24px;
  color: #feba17;
  transition: color 0.3s, transform 0.3s;
}

.social-icon:hover {
  color: #74512d;
  transform: scale(1.2);
}

.dev-signature {
  max-width: 300px;
  margin: 0 auto;
}

.signature-img {
  width: 100%;
  height: auto;
  transition: transform 0.3s, box-shadow 0.3s;
}

.signature-img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(254, 186, 23, 0.7);
}

/* Fade-In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #4e1f00;
  color: #f8f4e1;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 43rem;
}

.about-dev {
  padding: 120px 50px 120px;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px;
    left: 0;
    background-color: #4e1f00;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: block;
  }

  .about-dev {
    padding: 100px 20px 80px;
  }

  .dev-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .dev-name h1 {
    font-size: 48px;
    text-align: center;
  }

  .dev-photo {
    max-width: 300px;
  }

  .dev-img {
    height: 300px;
  }
}
