html, body {
  height: 100%;
  margin: 0;
}

body {
  background-color: #121212;
  color: #e0e0e0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;

  display: flex;
  flex-direction: column;
}

.intro-section, .about-section {
  width: fit-content;
  max-width: 85%;
  margin: 20px auto;
  padding: 30px;
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-section {
  flex: 1;
}

h1, h2, h3 {
  color: #46c267;
}

ul {
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
}

strong {
  color: #03dac6;
}

.highlight-name {
  color: #46c267;
  font-weight: bold;
  text-shadow:
  0 0 10px rgba(55, 140, 77, 0.5),
  0 0 5px rgba(70, 194, 103, 0.3);
}

.social-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 15px;
}

.social-btn {
  text-decoration: none;
  color: #46c267;
  border: 1px solid #46c267;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease; /* Makes the hover smooth */
}

.social-btn i {
  margin-right: 8px;
}

.social-btn:hover {
  background-color: #46c267;
  color: #121212; /* Text turns dark when background turns green */
  box-shadow: 0 0 15px rgba(70, 194, 103, 0.4);
}

footer {
  background-color: #000;
  border-top: 1px solid #333;
  padding: 20px 0;
  color: #888;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}