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

body {
  font-family: 'Fira Code', monospace;
  background-color: #2e3245;
  color: #ddd;
  line-height: 1.6;
}

.nav {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background-color: #2e3245;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
.nav a:hover {
  color: #FACC15;
  transform: scale(1.1);
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 4rem 8%;
}

.hero-text {
  display: flex;
  flex-direction: column; 
  justify-content: center;
}

.hero h1 {
  font-size: 3rem;
  color: #FACC15;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero h2 {
  font-size: 1.3rem;
  margin-top: 0.3rem;
  color: #ddd;
  letter-spacing: 2px; 
  text-transform: uppercase;
}

.hero img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about {
  background-color: #212431;
  padding: 4rem 8%;
  border-radius: 10px;
}

.about h1 {
  font-size: 2rem;
  color: #FACC15;
  margin-bottom: 1rem;
}

.about p {
  max-width: 600px;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.about h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ddd;
}

.tools {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}


.tools img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.tools img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.designs {
  padding: 4rem 8%;
}
.designs h1 {
  font-size: 2rem;
  color: #FACC15;
  margin-bottom: 2rem;
}
.designs img {
  max-width: 300px;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.designs img:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.6);
}

.footer {
  background: #FACC15;
  color: #222;
  text-align: center;
  padding: 1rem;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}
.footer:hover {
  background: #e0b814;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero img {
    margin-top: 1rem;
  }
  .about {
    text-align: center;
  }
  .tools {
    justify-content: center;
  }
  .projects .card {
    flex-direction: column;
    text-align: center;
  }
}
