* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: black;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  flex-wrap: wrap; /* allows stacking on smaller screens */
}

.text {
  max-width: 500px;
  flex: 1 1 300px;
}

.name {
  font-weight: bold;
  margin-bottom: 10px;
}

.gradient-text {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(90deg, #007BFF, #FFD700); /* Blue → Yellow */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s ease;
}

.desc {
  margin: 20px 0;
  color: #bbb;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid white;
  border-radius: 5px;
  text-decoration: none;
  color: white;
  transition: background 0.3s;
}

.btn:hover {
  background: white;
  color: black;
}

.image {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.image img {
  max-width: 100%; /* responsive scaling */
  height: auto;
  border-radius: 10px;
  filter: grayscale(100%) brightness(70%);
}
