/* ----------------------------------------------
   RESET & GLOBAL (futuristic minimalist)
   no gradients — only solid colors, clean edges
---------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0b0c10;        /* deep dark solid background */
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: #eef4ff;
  line-height: 1.5;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overflow: hidden;
}

.wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  transform: scale(0.72);
  transform-origin: center center;
}

/* intro card – solid, sharp, minimalistic with subtle futuristic border */
.intro-card {
  background: #111217;          /* solid dark card, no gradient */
  border-radius: 2rem;
  padding: 2.5rem 2rem 2.2rem;
  text-align: center;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(45, 156, 219, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.intro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 40px -14px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(45, 156, 219, 0.25);
}

/* avatar (initials) – clean, solid accent */
.avatar {
  width: 80px;
  height: 80px;
  background: #2d9cdb;         /* solid electric blue, no gradient */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}

.avatar span {
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: none;
}

.avatar:hover {
  background: #3b8fc2;
  transform: scale(0.98);
}

/* name styling – crisp, modern */
.fullname {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: #ffffff;
  word-break: keep-all;
}

.tagline {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  color: #b0c4de;
  background: rgba(45, 156, 219, 0.12);
  display: inline-block;
  width: auto;
  margin: 0 auto 1.8rem auto;
  padding: 0.3rem 1rem;
  border-radius: 60px;
  letter-spacing: 0.3px;
  backdrop-filter: none; /* solid background, no gradient */
  border: 0.5px solid rgba(45, 156, 219, 0.3);
}

/* bio paragraphs – clean, readable, minimalist */
.bio {
  text-align: center;
  margin-bottom: 2.2rem;
}

.bio p {
  font-size: 1rem;
  font-weight: 400;
  color: #dfe7f5;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.second-paragraph {
  margin-bottom: 0;
}

/* social links container – flex, spacious */
.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* each icon button – minimalist but futuristic hover */
.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #1a1d26;
  padding: 0.8rem 1.6rem;
  border-radius: 60px;
  text-decoration: none;
  color: #f0f6ff;
  font-weight: 500;
  font-size: 1.05rem;
  transition: all 0.25s ease;
  border: 1px solid #2a2e3a;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.social-icon i {
  font-size: 1.5rem;
  transition: transform 0.2s;
}

.icon-label {
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* Instagram specific hover (solid brand color without gradient) */
.instagram-icon:hover {
  background: #e4405f;
  border-color: #e4405f;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px -6px rgba(228, 64, 95, 0.4);
}

/* Facebook specific hover */
.facebook-icon:hover {
  background: #1877f2;
  border-color: #1877f2;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px -6px rgba(24, 119, 242, 0.4);
}

.social-icon:hover i {
  transform: scale(1.08);
}

/* contact note – minimal subtle */
.contact-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.5rem 0 1rem;
  font-size: 0.85rem;
  color: #9aaec9;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.5rem 1rem;
  border-radius: 40px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 0.5px solid #2a2e3a;
}

.contact-note i {
  font-size: 0.85rem;
  color: #2d9cdb;
}

/* footer note – minimalist, futuristic decorative line */
.footer-note {
  text-align: center;
  margin-top: 1.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: #7c8aa0;
  border-top: 1px solid #21242e;
  padding-top: 1.5rem;
  font-weight: 400;
}

/* responsive adjustments */
@media (max-width: 550px) {
  body {
    min-height: 100svh;
    height: 100svh;
    padding: 0.55rem;
    overflow: hidden;
  }

  .wrapper {
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    transform: scale(0.936);
    transform-origin: center center;
  }

  .intro-card {
    width: 100%;
    max-height: calc(100svh - 1.1rem);
    overflow: hidden;
    border-radius: 1.3rem;
    padding: 1rem 0.9rem;
  }

  .fullname {
    font-size: clamp(1.35rem, 6vw, 1.55rem);
    line-height: 1.2;
    margin-bottom: 0.35rem;
  }

  .tagline {
    font-size: clamp(0.72rem, 3.2vw, 0.82rem);
    padding: 0.2rem 0.6rem;
    margin-bottom: 0.8rem;
  }

  .bio {
    margin-bottom: 0.8rem;
  }

  .bio p {
    font-size: clamp(0.76rem, 3.5vw, 0.86rem);
    line-height: 1.4;
    margin-bottom: 0.6rem;
  }

  .social-links {
    gap: 0.8rem;
    margin-bottom: 0.8rem;
  }

  .social-icon {
    width: 100%;
    justify-content: center;
    padding: 0.5rem 0.7rem;
    gap: 0.5rem;
    font-size: 0.85rem;
  }

  .social-icon i {
    font-size: 1.1rem;
  }

  .icon-label {
    font-size: 0.8rem;
  }

  .avatar {
    width: 52px;
    height: 52px;
    margin-bottom: 0.6rem;
  }

  .avatar span {
    font-size: 1.2rem;
  }

  .contact-note {
    font-size: 0.7rem;
    padding: 0.35rem 0.55rem;
    margin: 0.6rem auto 0.5rem;
  }

  .footer-note {
    margin-top: 0.6rem;
    padding-top: 0.7rem;
    font-size: 0.62rem;
  }
}

/* accessibility & focus outlines – always clean */
.social-icon:focus-visible {
  outline: 2px solid #2d9cdb;
  outline-offset: 3px;
  border-radius: 60px;
}

/* no gradients anywhere — fully solid color palette */
