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

body {
  background-color: hsl(0, 0%, 0%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #333;
}

.name-header {
  text-align: center;
  padding: 2rem 1rem;
  background: rgb(0, 0, 0);
}

.name-header h1 {
  font-size: 3rem;
  background: linear-gradient(90deg, #FFC3E3 0%, #D79AD7 35%, #3C1C75 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}


.gradient-bar {
  height: 5px;
  width: 200px;
  margin: 0 auto;
  border-radius: 5px;
  background: linear-gradient(90deg, #FFC3E3 0%, #D79AD7 35%, #3C1C75 100%);
  margin-bottom: 2rem;
}

.about-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 1rem;
}

.about-box {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  max-width: 600px;
  text-align: center;
  margin: 2rem auto;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-box:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.about-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
}

.about-title {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  line-height: 1.2;
  text-align: left;
}

.about-text {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

.footer {
  background-color: black;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  border-radius: 1rem 1rem 0 0;
}


.footer-button {
  background: linear-gradient(90deg, #955DE5, #B388EB);
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(149, 93, 229, 0.4);
  transition: all 0.25s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-button:hover {
  background: linear-gradient(90deg, #B388EB, #E7C6FF);
  box-shadow: 0 6px 14px rgba(180, 140, 255, 0.6);
  transform: translateY(-2px);
}

.footer-button:visited {
  color: white;
  text-decoration: none;
}

@media (max-width: 500px) {
  .footer {
    flex-direction: column;
    gap: 1rem;
  }
}

.contact-button {
  background: linear-gradient(90deg, #955DE5, #B388EB);
  color: white;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(149, 93, 229, 0.4);
  transition: all 0.25s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  margin-top: 1rem;
  flex-direction: column;
}
