* {
  margin: 0;
  padding: 0;
  box-shadow: border-box;
}
body {
  text-transform: capitalize;
  font-family: "Robot", sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 6%;
  background-color: #fdfdfd;
  border-bottom: 2px solid #e8ecef;
  position: sticky;
  top: 0;
  z-index: 10;
}
.logo {
  font-family: "playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #4a2c4a;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin-left: 2rem;
}
nav ul li a {
  text-decoration: none;
  color: #4a2c2a;
  font-weight: 500;
  font-size: 1.1rem;
  position: relative;
}
nav ul li a::after {
  content: " ";
  position: absolute;
  width: 0;
  height: 2px;
  background: #d4a373;
  bottom: -4px;
  left: 0;
  transition: width 0.3s ease;
}
nav ul li a:hover::after {
  width: 100%;
}
.hero {
  min-height: 100vh;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: linear-gradient(
    to right,
    #ff8177 0%,
    #ff867a 0%,
    #ff8c7f 21%,
    #f9f918 52%,
    #cf556c 78%,
    #b12db1 100%
  );
  flex-direction: column;
  color: #1a1a1a;
  padding: 0 6%;
}
.hero h1 {
  font-size: 2.5rem;
  font-family: "playfair Display", serif;
  margin-bottom: 1, 2rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
}
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #4a2c2a;
  color: #fff;
  text-decoration: none;
  border-radius: 15px;
  font-weight: 500;
  font-size: 1.2rem;
  transition: backgoround 0.3s ease;
}
.btn:hover {
  background: #6b4e31;
}
.about {
  padding: 6rem 5%;
  text-align: center;
  background: #fff;
}
.about h2 {
  font-family: "playfair Display", serif;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: #4a2c2a;
}
.about p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #333;
}
#project {
  padding: 6rem 6%;
  text-align: center;
  background-color: #cf556c;
  font-size: 1.5rem;
}

#project h2 {
  font-family: "playfair display", serif;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: #4a2c2a;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.8rem;
}
.project-card {
  background: white;
  padding: 2rem;
  border-radius: 30px;
  border: 1px solid #e8ecef;
  transition: transform 0.3s ease, box-shado 0.3s ease;
}
.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}
.project-card h3 {
  font-family: "playfair Display", serif;
  font-family: 1.5rem;
  animation: 0.8rem;
  columns: 0.8rem;
}
.project-card p {
  font-size: 1.5rem;
  color: #555;
}
footer {
  text-align: center;
  padding: 1.8rem;
  background: #4a2c2a;
  color: #fff;
  font-family: 2.5rem;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .logo {
    font-size: 1.5rem;
  }
  nav ul {
    flex-direction: column;
    gap: 1.1rem;
  }
  nav ul li {
    margin-left: 0;
  }
  .abuot h2 {
    font-size: 2rem;
  }
  .project-card {
    padding: 1.5rem;
  }
}
