/*
Theme Name: About Me Theme
Theme URI: https://nafprojects.com
Description: A minimalistic dark theme for personal profile pages
Author: naf9000
Version: 1.0
*/

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

.profile-section {
  margin-bottom: 2rem;
}

.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333333;
  display: inline-block;
}

.main-heading {
  font-size: 3.75rem;
  font-weight: bold;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.description {
  font-size: 1.25rem;
  color: #888888;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.button {
  min-width: 56px;
  width: 56px;
  height: 56px;
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.7s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.button:hover {
  background-color: #2a2a2a;
  border-color: #555555;
  min-width: 180px;
  width: auto;
  padding: 0 1.5rem;
  gap: 0.75rem;
  border-radius: 28px;
}

.button svg {
  flex-shrink: 0;
}

.button-text {
  max-width: 0;
  opacity: 0;
  transition: all 0.9s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
}

.button:hover .button-text {
  max-width: 200px;
  opacity: 1;
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 3rem;
  }

  .description {
    font-size: 1.125rem;
  }
}
