/* ===== Wrapper del perfil ===== */
/* Wrapper compacta */
.vp-profile-wrapper {
  min-height: 70vh;
  display: flex;
  align-items: flex-start;   /* contenido arriba */
  justify-content: center;
  padding-top: 20px;         /* menos espacio contra el menú */
  padding-bottom: 20px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  transition: background 0.5s ease;
  box-sizing: border-box;
  background: linear-gradient(to bottom, rgba(0,0,0,.6), rgba(0,0,0,.9)), #222;
  background-size: cover;
  background-position: center;
}

/* Tarjeta compacta */
.vp-profile {
  background: rgba(0,0,0,.35);
  border-radius: 12px;
  backdrop-filter: blur(2px);
  padding: 24px 16px;   /* aire moderado */
  max-width: 560px;
  width: 100%;
  text-align: center;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}



/* ===== Avatar ===== */
.vp-avatar img {
  width: 130px;   /* 👈 más compacto */
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-bottom: 12px;
}

/* ===== Username ===== */
.vp-username {
  font-size: clamp(20px, 2.8vw, 26px);
  font-weight: 500;
  margin: 0 0 8px 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  color: #fff !important;
}

/* ===== Botón ===== */
.vp-actions { margin-top: 8px; }
.vp-btn {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  background: rgba(255,255,255,.1);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: .25s;
}
.vp-btn:hover { background: rgba(255,255,255,.18); }

/* ===== Cuerpo ===== */
.vp-content {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.5;
}

/* ===== Estado: no encontrado ===== */
.vp-not-found {
  max-width: 800px;
  margin: 20px auto;
  font-size: 16px;
  text-align: center;
}


/* Descripción corta */
.vp-short-desc {
  font-size: 15px;             /* un poco más pequeña que el username */
  font-weight: 400;            /* ligera, para contraste con el @usuario */
  color: rgba(255,255,255,0.9); /* blanco con leve transparencia */
  margin: 6px 0 0 0;           /* espacio reducido arriba */
  line-height: 1.4;
  max-width: 80%;              /* evita que se vea muy ancho */
  margin-left: auto;
  margin-right: auto;
}

.vp-social-links {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  justify-content: center;
}

.vp-social-links a {
  font-size: 26px;
  color: #ffffff !important;   /* forzamos blanco */
  opacity: 0.9;                /* leve transparencia para integrarlo */
  transition: transform 0.2s, opacity 0.2s;
}

.vp-social-links a:hover {
  transform: scale(1.2);
  opacity: 1;                  /* al pasar el mouse se ve más intenso */
}

.vp-social-links a:focus {
  outline: none;
  box-shadow: none;
}

/* Estilo general de los campos */
.vp-field input[type="url"] {
  border: 1px solid #ccc;
  padding: 8px 10px;
  border-radius: 6px;
  width: 100%;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* Foco normal */
.vp-field input[type="url"]:focus {
  border-color: #1db954;
  box-shadow: 0 0 6px rgba(29, 185, 84, 0.4);
  outline: none;
}

/* Campo inválido (cuando no cumple el pattern o está mal escrito) */
.vp-field input[type="url"]:invalid {
  border-color: #ff4d4d;
  box-shadow: 0 0 6px rgba(255, 77, 77, 0.4);
}

/* Campo válido */
.vp-field input[type="url"]:valid {
  border-color: #1db954;
  box-shadow: 0 0 6px rgba(29, 185, 84, 0.4);
}

/* Estilo del tooltip nativo en navegadores que lo soportan */
.vp-field input[type="url"]:invalid:focus {
  background-color: #fff5f5;
}


.vp-categorias {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center; /* 🔹 centra los botones */
}


.vp-cat-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    font-size: 13px;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid #ddd;
    cursor: default;
    transition: background 0.3s, color 0.3s;
}

.vp-cat-btn:hover {
    background: #000;
    color: #fff;
}


/* ===== Íconos de redes sociales (perfil público) ===== */
.vp-social-links {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.vp-social-links a {
  font-size: 26px;
  color: #fff !important;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.vp-social-links a:hover {
  transform: scale(1.2);
  opacity: 1;
}

/* Colores por red para hover */
.vp-social-links a[href*="facebook"]:hover { color: #1877f2 !important; }
.vp-social-links a[href*="instagram"]:hover { color: #E1306C !important; }
.vp-social-links a[href*="tiktok"]:hover { color: #000 !important; }
.vp-social-links a[href*="youtube"]:hover { color: #ff0000 !important; }
.vp-social-links a[href*="twitter"]:hover { color: #1da1f2 !important; }
.vp-social-links a[href*="whatsapp"]:hover { color: #25d366 !important; }
.vp-social-links a[href*="spotify"]:hover { color: #1db954 !important; }
.vp-social-links a[href*="x.com"]:hover { color: #000 !important; }


/* === BIOGRAFÍA PÚBLICA === */
.vp-public-bio-section {
  margin-top: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 24px;
}

/* Video o playlist */
.vp-public-media {
  margin-bottom: 24px;
  text-align: center;
}
.vp-public-media iframe {
  width: 100%;
  max-width: 640px;
  height: 360px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* Texto de biografía */
.vp-public-bio {
  color: #e0e0e0 !important;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 800px;
  margin: 0 auto;
  text-align: left !important; /* 🔹 alineación natural */
  word-break: normal !important; /* ✅ palabras completas, sin cortes forzados */
  overflow-wrap: break-word;     /* evita desbordes sin romper palabras */
  hyphens: none !important;      /* 🚫 sin guiones automáticos */
  font-family: 'Open Sans', sans-serif;
}
.vp-public-bio h2,
.vp-public-bio h3 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  margin-top: 1em;
  margin-bottom: 0.5em;
  color: #111;
}

.vp-public-bio p {
  margin-bottom: 1em;
  
}

/* Responsivo */
@media (max-width: 768px) {
  .vp-section-title,
  .entry-content .vp-section-title,
  .entry-content h2.vp-section-title {
    font-size: 2rem !important;
    margin-top: 30px;
    margin-bottom: 15px;
    
       /* 💫 Ajuste más sutil del resplandor para pantallas pequeñas */
    text-shadow:
      0 0 6px rgba(255, 255, 255, 0.25),
      0 0 10px rgba(255, 255, 255, 0.1),
      0 1px 4px rgba(0, 0, 0, 0.4);
  }
}


.vp-section-title,
.entry-content .vp-section-title,
.entry-content h2.vp-section-title {
  color: #fff !important;
  font-family: 'Anton', sans-serif !important;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.2em;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 25px;
  font-size: 3rem !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;

  /* 🌟 Efecto resplandor suave */
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.3),
    0 0 16px rgba(255, 255, 255, 0.15),
    0 2px 6px rgba(0, 0, 0, 0.4);
}

/* === Evitar que Astra pinte el fondo del bloque === */
.entry-content .vp-section-title,
.entry-content h2.vp-section-title {
  background-color: transparent !important;
}

.vp-public-bio-section {
  margin-top: 40px;
  text-align: center;
  padding: 20px;
}

.vp-public-media {
  margin: 20px auto;
  max-width: 640px;
}

.vp-public-bio {
  max-width: 800px;
  margin: 40px auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #222;
  text-align: justify;
}

/* 🎤 Sección pública: biografía del artista */
.vp-public-bio-section {
  margin-top: 40px;
  padding: 30px 20px;
  background: transparent;
  color: #f2f2f2;
  text-align: left;
}

/* 🔹 Encabezado "SOBRE EL ARTISTA" o "BIOGRAFÍA DE..." */
.vp-public-bio-section h2.vp-section-title {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff !important; /* cambia el color del título */
  margin-bottom: 12px; /* reduce el espacio entre el título y el nombre/artista */
  letter-spacing: 1px;
}

/* 🔸 Texto del cuerpo */
.vp-public-bio {
  color: #e0e0e0 !important; /* tono claro para buena lectura */
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

/* 🔸 Enlaces dentro del texto */
.vp-public-bio a {
  color: #1abc9c;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 188, 156, 0.5);
  transition: all 0.2s ease;
}

.vp-public-bio a:hover {
  color: #16a085;
  border-bottom-color: transparent;
}

/* 🎤 Ajuste de tamaño para el título "BIOGRAFÍA DE [ARTISTA]" */
.vp-public-bio h2,
.vp-public-bio h3 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  color: #fff !important;
  font-size: 2.2rem !important;     /* 🔹 tamaño equilibrado en escritorio */
  margin-top: 0.5em !important;
  margin-bottom: 0.3em !important;
  letter-spacing: 1px;
  line-height: 1.2;
  text-align: center;
  text-shadow: 0 0 10px rgba(255,255,255,0.4);
}

/* 🔸 Adaptación para móviles */
@media (max-width: 768px) {
  .vp-public-bio h2,
  .vp-public-bio h3 {
    font-size: 1.6rem !important;   /* más compacto en pantallas pequeñas */
    margin-top: 0.4em !important;
    margin-bottom: 0.2em !important;
  }
}

