/* ══════════════════════════════════════
   KONTAKT — LYXIGT VISITKORT
══════════════════════════════════════ */

.vc-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) var(--page-padding) 60px;
}

.vc-scene {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 760px;
}

@media (max-width: 1100px) {
  .vc-scene {
    max-width: 680px;
  }
}

/* ── KORTET ── */
.vc-card {
  width: 100%;
  aspect-ratio: 1.75 / 1; /* Standard visitkortsformat */
  background-color: #f7ecdf;
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(253, 16, 94, 0.18) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(249, 166, 32, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 40% 70%,
      rgba(255, 113, 29, 0.14) 0%,
      transparent 55%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(255, 175, 50, 0.14) 0%,
      transparent 55%
    );
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  /* Subtil gyllene kant */
  box-shadow:
    0 0 0 0.5px rgba(249, 166, 32, 0.08),
    0 6px 24px rgba(20, 14, 8, 0.25),
    0 24px 64px rgba(20, 14, 8, 0.15),
    0 2px 6px rgba(20, 14, 8, 0.3);
  /* Liten lutning — känns som ett fysiskt kort */
  transform: rotate(-1.2deg);
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}

.vc-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow:
    0 0 0 0.5px rgba(249, 166, 32, 0.15),
    0 12px 40px rgba(20, 14, 8, 0.3),
    0 40px 90px rgba(20, 14, 8, 0.2),
    0 4px 10px rgba(20, 14, 8, 0.35);
}

/* ── KORTETS INNEHÅLL ── */
.vc-body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
  padding: 0;
}

/* ── VÄNSTER: Namn + titel ── */
.vc-left {
  padding: 10% 10% 8% 11%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.vc-name {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}

.vc-name-first {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 5.5vw, 3rem);
  font-weight: 600;
  color: #fd105e;
  letter-spacing: 0.03em;
}

.vc-name-last {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1rem, 5.5vw, 3rem);
  font-weight: 600;
  font-style: normal;
  color: #fd105e;
  letter-spacing: 0.01em;
}

.vc-title {
  font-family: "forma-djr-micro", sans-serif;
  font-size: clamp(7px, 1.1vw, 10px);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fd105e;
  margin: 0;
  line-height: 1.5;
}

/* ── VERTIKAL LINJE ── */
.vc-vline {
  background: linear-gradient(
    to bottom,
    transparent 8%,
    rgba(253, 16, 94, 0.6) 30%,
    rgba(253, 16, 94, 0.6) 70%,
    transparent 92%
  );
  width: 1px;
}

/* ── HÖGER: Kontaktuppgifter ── */
.vc-right {
  padding: 10% 10% 8% 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  position: relative;
}

.linkedin-link {
  position: absolute;
  top: 8%;
  right: 8%;
  display: block;
  line-height: 0;
}

.linkedin {
  cursor: pointer;
}

a {
  display: inline-block;
}

.vc-contact-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.vc-contact-label {
  font-family: "forma-djr-micro", sans-serif;
  font-size: clamp(0.6rem, 0.9vw, 0.8rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-pink);
  display: block;
}

.vc-contact-value {
  font-family: "forma-djr-micro", sans-serif;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  color: #fd105e;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  display: block;
}

.linkedin path {
  fill: #fd105e;
  transition: 0.3s;
}

.linkedin:hover path {
  fill: #b80044;
}

a.vc-contact-value:hover {
  color: #b80044;
}

.portrait-container {
  width: clamp(80px, 15vw, 170px);
  height: clamp(80px, 15vw, 170px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  align-self: center;
  background: rgba(249, 166, 32, 0.45);
}

.hero-circle-bg {
  display: none;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── MOBILVY ── */
.vc-mobile {
  display: none;
}

@media (max-width: 768px) {
  .vc-scene {
    display: none;
  }

  .vc-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: calc(var(--nav-height) + 2rem) 2rem 4rem;
    text-align: center;
  }

  .vc-mobile-name {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
  }

  .portrait-container--mobile {
    width: 130px;
    height: 130px;
  }

  .vc-mobile-title {
    font-size: 0.75rem;
  }

  .vc-mobile-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 320px;
  }

  .vc-mobile-contacts .vc-contact-label {
    font-size: 0.65rem;
  }

  .vc-mobile-contacts .vc-contact-value {
    font-size: 1rem;
  }
}

/* ── RESPONSIV ── */
@media (max-width: 480px) {
  .vc-scene {
    max-width: 100%;
  }

  .vc-body {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1px 1fr;
  }

  .vc-vline {
    width: 100%;
    height: 1px;
    background: linear-gradient(
      to right,
      transparent 8%,
      rgba(253, 16, 94, 0.5) 30%,
      rgba(253, 16, 94, 0.5) 70%,
      transparent 92%
    );
  }

  .vc-card {
    aspect-ratio: auto;
    min-height: 380px;
  }
}
