/**
 * Portfolio Enterprise – override palette blu professionale
 * Caricato dopo style.css; non modifica layout né animazioni.
 */

/* Gradienti blu/viola tech al posto di rossi */
:root {
  --gradient-box: linear-gradient(135deg, #0071ff 0%, #5856d6 50%, #7c3aed 100%);
  --gradient-one: linear-gradient(to right bottom, #0071ff, #5856d6);
  --gradient-two: linear-gradient(to right, #0071ff, #7c3aed);
  --gradient-three: linear-gradient(to right, #03041c, #0a1f5c);
  --text-gradient-one: linear-gradient(to right, #0071ff, #7c3aed);
}

/* Accenti neon controllati su elementi interattivi */
.tmp-btn.radius-round:hover,
.tmp-arrow-icon-btn:hover .tmp-icon,
.read-more-btn:hover {
  box-shadow: 0 0 20px rgba(0, 113, 255, 0.4);
}

/* Card e blocchi glass: bordo blu sottile */
.bg-blur-style-one,
.counter-card.tmponhover,
.service-card-v1.tmp-link-animation:hover,
.latest-portfolio-card.tmp-hover-link:hover .img-box {
  border-color: rgba(0, 113, 255, 0.25);
}

/* Progress bar: colore fill coerente con primary */
.tmp-skill-area .progress-bar {
  background: var(--color-primary) !important;
}

/* Filtri portfolio: spaziatura e stato attivo */
.portfolio-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.portfolio-filter-buttons .tmp-btn.is-checked {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}

/* Pannello dettagli progetto */
.project-details-panel .bg-blur-style-one {
  border: 1px solid rgba(0, 113, 255, 0.2);
}
#project-details-title {
  font-size: 1.5rem;
  color: var(--color-heading);
}

/* Hero senza foto profilo centrale: contenuto allineato, padding ridotto */
.rpp-banner-three-area .banner-three-main-wrapper {
  padding-top: 120px;
  padding-bottom: 100px;
  flex-direction: column;
}
@media (min-width: 992px) {
  .rpp-banner-three-area .banner-three-main-wrapper {
    padding-top: 160px;
    padding-bottom: 140px;
  }
}
@media (min-width: 1200px) {
  .rpp-banner-three-area .banner-three-main-wrapper {
    padding-top: 180px;
    padding-bottom: 160px;
  }
}
.rpp-banner-three-area .banner-three-main-wrapper .row {
  justify-content: center;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .rpp-banner-three-area .banner-three-main-wrapper .row .col-lg-5 + .col-lg-5 {
    padding-left: 2.5rem;
  }
}
.rpp-banner-three-area .banner-three-main-wrapper .inner,
.rpp-banner-three-area .banner-three-main-wrapper .banner-right-content {
  text-align: left;
}
.rpp-banner-three-area .banner-three-main-wrapper .inner {
  padding-right: 1.5rem;
}
.rpp-banner-three-area .banner-three-main-wrapper .banner-right-content {
  padding-left: 1.5rem;
  min-width: 0;
}
/* Paragrafo "Chi sono" in hero: testo bianco, larghezza piena */
.rpp-banner-three-area .banner-three-main-wrapper .banner-right-content .about-me .para {
  max-width: 100%;
  width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
  overflow: visible;
  color: #fff;
}
/* Contenitore typewriter: bianco (override regola template .para span) */
.rpp-banner-three-area .about-me .para #hero-typewriter-text {
  color: #fff;
}
/* Solo le parole evidenziate in blu nel typewriter hero */
.rpp-banner-three-area .about-me .para #hero-typewriter-text .hero-typewriter-highlight {
  color: var(--color-primary, #0071ff);
}
/* Cursore typewriter stile chatbot */
.hero-typewriter-cursor {
  display: inline-block;
  animation: hero-cursor-blink 0.9s step-end infinite;
  color: var(--color-primary, #0071ff);
  margin-left: 1px;
}
@keyframes hero-cursor-blink {
  50% { opacity: 0; }
}
@media (max-width: 991px) {
  .rpp-banner-three-area .banner-three-main-wrapper .row .col-lg-5:first-child {
    margin-bottom: 2rem;
  }
  .rpp-banner-three-area .banner-three-main-wrapper .inner,
  .rpp-banner-three-area .banner-three-main-wrapper .banner-right-content {
    padding-left: 0;
    padding-right: 0;
  }
}

/* Badge reCAPTCHA v3 nascosto; il disclaimer è mostrato sotto il form contatti */
.grecaptcha-badge {
  visibility: hidden !important;
}

/* Skip link accessibilità */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
}
