@charset "utf-8";
/* CSS Document */
:root {
      --bg-color: #0d0d0d;
      --text-color: #f5f5f5;
      --accent-color: #00ffcc;
      --font-family: 'Poppins', 'Segoe UI', sans-serif;
    }

body {
      margin: 0;
      padding: 0;
      background-color: var(--bg-color);
      color: var(--text-color);
      font-family: var(--font-family);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      text-align: center;
    }

    img.profile {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 1rem;
      border: 2px solid var(--accent-color);
    }

    h1 {
font-size: 1.8rem;
margin-bottom: 0.3rem;
color: #ffffff;
text-align: center;
font-size: 2em;
transition: all 0.3s ease-in-out;
text-shadow: 0 0 4px rgba(0, 255, 223, 0); /* no glow initially */
}

h1:hover {
  color: #00ffdf;
  text-shadow: 0 0 6px rgba(0, 255, 223, 0.6), 0 0 12px rgba(0, 255, 223, 0.4);
}

    h2 {
      font-weight: 400;
      font-size: 1rem;
      color: #aaa;
      margin-bottom: 2rem;
    }

    .contact-links {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .contact-links a {
      color: var(--accent-color);
      text-decoration: none;
      font-size: 1.1rem;
      transition: color 0.3s ease;
    }

    .contact-links a:hover {
      color: #ffffff;
    }

    footer {
    position: absolute;
    bottom: -266px;
    font-size: 0.8rem;
    color: #666;
    left: 0px;
    }

.contact-links {
  max-width: 600px;
  margin: 2rem auto;
  color: #fff;
  font-family: sans-serif;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item img {
  margin-right: 1rem;
}

.contact-text p {
  margin: 0.3rem 0;
  line-height: 1.4;
}

.contact-text a {
  color: #00ffcc;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

/* Copy button */
.copy-btn {
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 0.5rem;
  cursor: pointer;
  vertical-align: middle;
  display: inline-block;
  outline: none;
}

.copy-btn svg {
  width: 18px;
  height: 18px;
  stroke: #ffffff; /* white by default */
  transition: transform 0.3s ease, filter 0.3s ease, stroke 0.3s ease;
  filter: drop-shadow(0 0 0 rgba(0,0,0,0));
}

.copy-btn:hover svg {
  transform: scale(1.2);
  stroke: #00e6b8;
  filter: drop-shadow(0 0 6px #39ff14) drop-shadow(0 0 12px #39ff14);
}

/* Responsive for small screens */
@media (max-width: 500px) {
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-item img {
    margin-bottom: 0.5rem;
  }

    /* Larger text and spacing on smaller screens */
    @media (max-width: 600px) {
      img.profile {
        width: 120px;
        height: 120px;
      }
      h1 {
        font-size: 1.6rem;
      }
      h2 {
        font-size: 1.1rem;
      }
      .contact-links a {
        font-size: 1.2rem;
      }
      footer {
        font-size: 0.9rem;
      }
    }
  .contact-links1 {      display: flex;
      flex-direction: column;
      gap: 0.8rem;
}