/* Base Styles */
body {
  margin: 0;
  background-color: #121212;
  font-family: "Roboto", sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
}

/* Main Content */
.container {
  text-align: left;
  padding: 2rem 1rem;
  max-width: 400px;
  width: 100%;
}

.profile-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: block;
}

h1 {
  font-size: 1.8rem;
  margin: 0.5rem 0 0.2rem;
  letter-spacing: 1px;
  text-align: center;
}

h2 {
  font-size: 1rem;
  font-weight: normal;
  margin-bottom: 1.5rem;
  color: white;
  text-align: center;
}

.links {
  display: flex;
  width: max-content;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 auto;
  margin-bottom: 2rem;
}

/* Link Button without border */
.link-btn {
  background-color: transparent;
  color: white;
  text-align: left;
  padding: 0.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Removed hover effect */

/* Icon Styling */
.icon-btn i {
  border: 1.5px solid #2bace2;
  border-radius: 50%;
  padding: 0.4rem;
  color: white;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.inline-logo {
  height: 2em;
  vertical-align: middle;
  margin-right: -2px;
}

/* Social Links Row */
.social-links {
  display: flex;
  gap: 1rem;
  justify-content: start;
  margin-top: 10px;
}

@media (min-width: 600px) {
  .container {
    max-width: 500px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 600px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 650px;
  }
}

a {
  -webkit-tap-highlight-color: transparent; /* Removes iOS blue flash */
  -webkit-touch-callout: none; /* Disables touch highlight menu on iOS */
  text-decoration: none;
  color: white;
}

a:focus,
a:active,
.link-btn:focus,
.link-btn:active {
  outline: none !important;
  color: white !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Hover behavior completely removed */
