/* Reset & Base */
* {
  box-sizing: border-box;
}

body {
  background: #0d0d0d;
  color: white;
  margin: 0;
  font-family: 'Nippo', sans-serif;
  font-weight: 400;
}

h1, h2, .bio, .title {
  font-weight: 500; /* or 600 if you added the fake 600 alias above */
}

.location {
  font-weight: 400;
  margin-bottom: 16px;
}

.name {
  margin-top: 1px;
  margin-bottom: 1px;
}

.verified-icon {
  width: 18px;
  height: 18px;
  margin-left: 2px;
  margin-bottom: 3px;
  vertical-align: middle;
}

.subtext {
  font-weight: 600;
  font-size: 32px;
}

.tagline {
  font-weight: 400;
}

/* Banner with image and curve */
.banner {
  position: relative;
  height: 540px;
  overflow: hidden;
}

.banner-image {
  background: url('/files/banner.png') no-repeat center center / cover;
  height: 100%;
  width: 100%;
}

.banner-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
}

/* Profile Card */
.profile-card {
  background: #1a1a1a;
  width: 90%;
  max-width: 850px;
  margin: -220px auto 2rem auto;
  padding: 2rem;
  border-radius: 2px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 600px) {
  .profile-card {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    margin-top: -60px;
    padding-left: 0;
    padding-right: 0;
  }

  .banner-curve {
    display: none;
  }

  .banner {
    height: 126px;
  }
}

/* Avatar, Text, Socials */
.avatar {
  width: 180px;             /* increased from 120px */
  height: 180px;
  border-radius: 50%;       /* forces it into a perfect circle */
  margin-top: -80px;        /* adjusts how far it pops out of the card */
  margin-bottom: 12px;
  border: 2px solid #1a1a1a;
  background-color: #0d0d0d;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  object-fit: cover;        /* ensures it fills the circle cleanly */
}

@media screen and (max-width: 600px) {
  .avatar {
    width: 130px;
    height: 130px;
    margin-top: -40px;
  }
}

.location {
  font-size: 1rem; /* or your original styling */
  font-family: 'Nippo', sans-serif;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 6px; /* optional: space between icon and text */
  justify-content: center;
}

.location-icon {
  width: 18px;
  height: 18px;
}

.bio {
  color: #89b4fa;
  margin: 0.5rem 0 1rem 0;
  font-size: 16px;
}

.tagline {
  margin-top: 1rem;
  color: white;
  line-height: 1.5;
  font-size: 1rem;
}

.email-btn {
  background: #3b82f6;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  color: white;
  cursor: pointer;
}

/* ------------------------ Email Button Styling ------------------------ */

.cta,
.cta * {
  font-family: 'Nippo', sans-serif;
}

.cta {
  display: inline-flex;
  padding: 8px 24px;
  font-size: 16px;
  color: white;
  background: #3b82f6;
  transition: 1s;
  box-shadow: 6px 6px 0 black;
  transform: skewX(-15deg);
  border: none;
  cursor: pointer;
  margin: 1.5rem auto;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.cta:focus {
  outline: none;
}

.cta:hover {
  transition: 0.5s;
  box-shadow: 10px 10px 0 #fbc638;
}

.cta .second {
  transition: 0.5s;
  margin-right: 0px;
}

.cta:hover .second {
  transition: 0.5s;
  margin-right: 15px;
}

.span {
  transform: skewX(15deg);
  position: relative;
  top: -0.5px;            /* lift text slightly */
}

.second {
  width: 20px;
  margin-left: 10px;    /* reduce gap from 30px */
  position: relative;
  top: 3px;             /* align arrow vertically */
}

.one {
  transition: 0.4s;
  transform: translateX(-60%);
}

.two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.cta:hover .three {
  animation: color_anim 1s infinite 0.2s;
}

.cta:hover .one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta:hover .two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

.cta img.icon {
  width: 18px;
  height: 18px;
  transform: skewX(15deg);
  margin-right: 8px;
  color: white;
  position: relative;
  top: -0.5px;
}


@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: #fbc638;
  }

  100% {
    fill: white;
  }
}

/* -------------------- End Of Email Button Styling -------------------- */

.inquiry-note {
  font-size: 0.85rem;
  color: #aaa;
  margin-top: -0.5rem;
  margin-bottom: 1.25rem;
}
.inquiry-note a {
  color: #ccc;
  text-decoration: none;
}
.inquiry-note a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 600px) {
  .name {
    font-size: 1.25rem;
  }

  .subtext {
    font-size: 1.15rem;
  }

  .tagline {
    font-size: 0.85rem;
  }

  .bio {
    font-size: 14px;
  }

  .location {
    font-size: 0.9rem;
  }

  .email-btn,
  .cta {
    font-size: 14px;
    padding: 6px 18px;
  }

  .cta {
    font-size: 12px;
    padding: 5px 14px;
    box-shadow: 3px 3px 0 black;
  }

  .cta .second {
    width: 14px;
    margin-left: 5px;
    top: 1.5px;
  }

  .cta img.icon {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    top: -0.5px;
  }

  .inquiry-note {
    font-size: 0.75rem;
  }
}


.socials-circles {
  display: flex;
  flex-wrap: wrap;
  padding: 0 12px;
  justify-content: center;
  gap: 0.5rem;
}

.socials-circles img {
  width: 42px;
  height: 42px;
  background: #222;
  padding: 4px;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s;
}

.socials-circles a:hover img {
  transform: scale(1.1);
  background: #3b82f6;
}



/* Sections & Layout */
h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #FFC2EA;
  margin-bottom: 1rem;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.section {
  margin-bottom: 2.5rem;
}

/* Link Cards */
.link-pair {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 2rem;
  row-gap: 2.25rem;
  margin-bottom: 1rem;
}

.link-card {
  background-color: #1a1a1a;
  border-radius: 2px;
  padding: 1.3rem 1rem 1.3rem 5rem;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
  cursor: pointer;
  z-index: 2;
  text-decoration: none;
  color: inherit;    
}

.link-card.half,
.link-card.full {
  padding-left: 5rem; /* add space for the icon */
}

.link-card:hover {
  transform: none;
}

.link-card.half {
  width: calc(50% - 1rem);
}

.link-card.full {
  width: 100%;
  margin-bottom: 1rem;
}

.link-icon {
  position: absolute;
  top: 50%;
  left: -22px;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: #1f1f2f;
  padding: 5px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

@media screen and (max-width: 600px) {
  .link-icon {
    left: -8px !important;
  }
}

.link-text {
  margin-left: -0.75rem;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 600px) {
  .link-card {
    padding: 0.85rem 0.75rem 0.85rem 3.25rem;
    border-radius: 2px;
  }

  .link-card.half,
  .link-card.full {
    padding-left: 3.25rem;
  }

  .link-icon {
    width: 54px;
    height: 54px;
    left: -14px;
  }

  .link-text {
    margin-left: -0.4rem;
  }

  .title {
    font-size: 0.9rem;
  }

  .subtext {
    font-size: 0.7rem;
  }

  .link-pair {
    column-gap: 1rem;
    row-gap: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  h2 {
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
  }
}

.title {
  font-weight: 600;
  font-size: 1rem;
}

.subtext {
  font-size: 0.85rem;
  color: #999;
  margin-top: 4px;
}

.footer {
  text-align: center;
  color: #999;
  padding: 2rem 1rem;
  font-size: 0.875rem;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .link-card.half {
    width: 100%;
  }

  .link-icon {
    left: -32px;
  }

  .link-text {
    margin-left: 0;
  }
}

.link-card {
  position: relative;
}

.link-arrow {
  width: 12px; /* Smaller size */
  height: auto;
  margin-left: auto;
  margin-right: 8px;  /* pull it slightly in from the edge */
  transition: transform 0.3s ease;
}

.link-card:hover .link-arrow {
  transform: translateX(6px);
}

@media screen and (max-width: 600px) {
  .link-arrow {
    width: 8px; /* Even smaller on mobile */
  }
}

.verified-wrapper {
  position: relative;
  display: inline-block;
}

.verified-tooltip {
  position: absolute;
  bottom: 110%; /* closer to the icon */
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;  /* makes the text thinner */
  white-space: nowrap;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.verified-wrapper:hover .verified-tooltip {
  visibility: visible;
  opacity: 1;
}


