@charset "UTF-8";

/* ============================================
   TEMA: Pietro Curcio Portfolio - MATRIX EDITION
   File: main.css
   ============================================ */


/* ============================================
   MATRIX COLOR PALETTE - Variabili CSS (SOLO VERDE)
   ============================================ */

:root {
  /* Matrix Green - solo verde, niente ciano */
  --matrix-primary: #00FF00;
  --matrix-bright: #00DD00;
  --matrix-dark: #001100;
  
  /* Sfondi */
  --matrix-bg: #000000;
  --matrix-bg-alt: #050a05;
  --matrix-bg-card: #080d08;
  
  /* Testi - più sofisticati */
  --matrix-text: #00AA00;
  --matrix-text-muted: #006600;
  --matrix-text-dim: #003300;
  
  /* Effetti - più sottili, eleganti */
  --matrix-glow: 0 0 5px rgba(0, 255, 0, 0.5), 0 0 10px rgba(0, 255, 0, 0.3);
  --matrix-glow-strong: 0 0 8px rgba(0, 255, 0, 0.7), 0 0 20px rgba(0, 255, 0, 0.4);
  --matrix-border: 1px solid rgba(0, 255, 0, 0.4);
  --matrix-border-dim: 1px solid rgba(0, 255, 0, 0.2);
  
  /* Gradiente per sfondo - SOLO VERDE */
  --matrix-gradient-subtle: linear-gradient(135deg, #000000 0%, #001a00 50%, #000000 100%);
  --matrix-gradient-elegant: linear-gradient(90deg, #000000 0%, #003300 25%, #00FF00 50%, #003300 75%, #000000 100%);
  
  /* Font */
  --font-matrix: 'Fira Code', 'Courier New', monospace;
  
  /* Transizioni */
  --matrix-transition: 0.3s ease;
}


/* ============================================
   RESET E BASE
   File: tutti
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-matrix);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--matrix-text);
  background-color: var(--matrix-bg);
  padding-top: 70px;
}

/* Effetto scanline globale (opzionale) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  pointer-events: none;
  z-index: 9999;
}


/* ============================================
   TIPOGRAFIA - MATRIX STYLE
   File: front-page.php, page-*.php
   Classi: h1-h6, p, hr, b, strong, small, .lead, .display-3, .display-5
   ============================================ */

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: #FFFFFF !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

h1, .h1 { font-size: 2.5rem; }
h2, .h2 { font-size: 2rem; }
h3, .h3 { font-size: 1.75rem; }
h4, .h4 { font-size: 1.5rem; }
h5, .h5 { font-size: 1.25rem; }
h6, .h6 { font-size: 1rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

hr {
  margin: 1rem 0;
  border: 0;
  border-top: 1px solid var(--matrix-primary);
  opacity: 0.5;
}

b, strong { font-weight: 700; color: var(--matrix-bright); }
small, .small { font-size: 0.875em; }

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: #FFFFFF !important;
}

/* Display titoli - BIANCO SENZA ANIMAZIONI */
.display-3, .display-5 {
  font-weight: 300;
  line-height: 1.2;
  color: #FFFFFF !important;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.display-3 { font-size: calc(1.525rem + 3.3vw); }
@media (min-width: 1200px) { .display-3 { font-size: 4rem; } }

.display-5 { font-size: calc(1.425rem + 2.1vw); }
@media (min-width: 1200px) { .display-5 { font-size: 3rem; } }


/* ============================================
   LINK E LISTE - MATRIX STYLE
   ============================================ */

a {
  color: var(--matrix-primary);
  text-decoration: none;
  transition: var(--matrix-transition);
}

a:hover {
  color: var(--matrix-bright);
  text-shadow: var(--matrix-glow);
}

ol, ul {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* Lista stile terminale */
.list-unstyled li::before {
  content: "> ";
  color: var(--matrix-primary);
}


/* ============================================
   IMMAGINI
   ============================================ */

img, svg {
  vertical-align: middle;
  max-width: 100%;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}


/* ============================================
   CONTAINER E GRID
   File: tutti | Breakpoints: 576, 768, 992, 1200, 1400px
   ============================================ */

.container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) { .container { max-width: 540px; } }
@media (min-width: 768px) { .container { max-width: 720px; } }
@media (min-width: 992px) { .container { max-width: 960px; } }
@media (min-width: 1200px) { .container { max-width: 1140px; } }
@media (min-width: 1400px) { .container { max-width: 1320px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.row > * {
  flex-shrink: 0;
  width: auto;
  max-width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

/* Bootstrap-style column widths for XXL breakpoint (≥1400px) */
.col-xxl {
  flex: 1 0 0%;
}

.col-xxl-1 { flex: 0 0 auto; width: 8.33333333%; }
.col-xxl-2 { flex: 0 0 auto; width: 16.66666667%; }
.col-xxl-3 { flex: 0 0 auto; width: 25%; }
.col-xxl-4 { flex: 0 0 auto; width: 33.33333333%; }
.col-xxl-5 { flex: 0 0 auto; width: 41.66666667%; }
.col-xxl-6 { flex: 0 0 auto; width: 50%; }
.col-xxl-7 { flex: 0 0 auto; width: 58.33333333%; }
.col-xxl-8 { flex: 0 0 auto; width: 66.66666667%; }
.col-xxl-9 { flex: 0 0 auto; width: 75%; }
.col-xxl-10 { flex: 0 0 auto; width: 83.33333333%; }
.col-xxl-11 { flex: 0 0 auto; width: 91.66666667%; }
.col-xxl-12 { flex: 0 0 auto; width: 100%; }

/* Offset columns for XXL */
.offset-xxl-0 { margin-left: 0; }
.offset-xxl-1 { margin-left: 8.33333333%; }
.offset-xxl-2 { margin-left: 16.66666667%; }
.offset-xxl-3 { margin-left: 25%; }
.offset-xxl-4 { margin-left: 33.33333333%; }
.offset-xxl-5 { margin-left: 41.66666667%; }
.offset-xxl-6 { margin-left: 50%; }
.offset-xxl-7 { margin-left: 58.33333333%; }
.offset-xxl-8 { margin-left: 66.66666667%; }
.offset-xxl-9 { margin-left: 75%; }
.offset-xxl-10 { margin-left: 83.33333333%; }
.offset-xxl-11 { margin-left: 91.66666667%; }

.col {
  flex: 1 0 0%;
}


/* ============================================
   NAVBAR - MATRIX STYLE
   File: header.php
   ============================================ */

.navbar {
  background: var(--matrix-bg-alt) !important;
  margin: 0;
  padding: 0.5rem 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1050;
  border-bottom: 2px solid var(--matrix-primary);
  box-shadow: var(--matrix-glow);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Logo stile terminale */
.navbar-brand {
  color: var(--matrix-primary) !important;
  font-family: var(--font-matrix);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  text-shadow: var(--matrix-glow);
  letter-spacing: 1px;
  position: relative;
}

.navbar-brand::before {
  content: "> ";
  color: var(--matrix-bright);
  animation: blink 1s infinite;
}

.navbar-brand:hover {
  color: var(--matrix-bright) !important;
  text-shadow: var(--matrix-glow-strong);
}

/* Cursore blinking per il logo */
@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Menu di navigazione */
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

@media (min-width: 992px) {
  .navbar-nav {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
  }
}

/* Link nav - stile terminale */
.navbar-nav .nav-link {
  color: var(--matrix-text) !important;
  font-family: var(--font-matrix);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  position: relative;
  transition: var(--matrix-transition);
}

/* Simbolo > prima del link */
.navbar-nav .nav-link::before {
  content: "> ";
  color: var(--matrix-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  margin-right: 2px;
}

.navbar-nav .nav-link:hover {
  color: var(--matrix-bg) !important;
  background-color: var(--matrix-primary);
  text-shadow: none;
}

.navbar-nav .nav-link:hover::before {
  opacity: 1;
}

/* Cursore blinking dopo il link attivo */
.navbar-nav .nav-link.active::after {
  content: "_";
  color: var(--matrix-primary);
  animation: blink 1s infinite;
  margin-left: 2px;
}

/* Collapse menu */
.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

@media (min-width: 992px) {
  .navbar-collapse {
    flex-basis: auto;
    flex-grow: 0;
    display: flex;
    justify-content: flex-end;
  }
  .navbar-toggler { display: none; }
}

/* Toggler button - Matrix style */
.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  color: var(--matrix-primary) !important;
  background-color: transparent;
  border: 1px solid var(--matrix-primary);
  border-radius: 0;
}

.navbar-toggler:hover {
  background-color: var(--matrix-primary);
  color: var(--matrix-bg) !important;
  box-shadow: var(--matrix-glow);
}

.navbar-toggler:focus {
  box-shadow: var(--matrix-glow);
  outline: none;
}


/* ============================================
   BOTTONI - MATRIX STYLE
   File: front-page.php, page-contatti.php
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--font-matrix);
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid var(--matrix-primary);
  background-color: transparent;
  color: var(--matrix-primary);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background-color: var(--matrix-primary);
  color: var(--matrix-bg);
  box-shadow: var(--matrix-glow-strong);
  text-shadow: none;
}

/* Focus state */
.btn:focus {
  outline: none;
  box-shadow: var(--matrix-glow);
}

/* Button variants - Matrix style */
.btn-primary {
  background-color: transparent;
  border: 1px solid var(--matrix-primary);
  color: var(--matrix-primary);
}

.btn-primary:hover {
  background-color: var(--matrix-primary);
  color: var(--matrix-bg);
  box-shadow: var(--matrix-glow-strong);
}

/* btn-inverted - uguale a btn-primary per compatibilità */
.btn-inverted {
  background-color: transparent;
  border: 1px solid var(--matrix-primary);
  color: var(--matrix-primary);
}

.btn-inverted:hover {
  background-color: var(--matrix-primary);
  color: var(--matrix-bg);
  box-shadow: var(--matrix-glow-strong);
}

.btn-success {
  background-color: transparent;
  border: 1px solid var(--matrix-primary);
  color: var(--matrix-primary);
}

/* Large buttons */
.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}

/* Download button */
.btn-download {
  display: inline-flex;
  align-items: center;
}

.btn-download::before {
  content: ">> ";
}

/* Effetto glitch al click */
.btn:active {
  animation: glitch 0.2s ease;
}

@keyframes glitch {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(-2px, -2px); }
  60% { transform: translate(2px, 2px); }
  80% { transform: translate(2px, -2px); }
  100% { transform: translate(0); }
}


/* ============================================
   CONTATTI
   File: page-contatti.php
   ============================================ */

.contact-section {
  padding: 3rem 0;
}

.contact-section h2 {
  margin-bottom: 1rem;
}

.contact-section p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================
   FORM
   File: page-contatti.php (Contact Form 7)
   ============================================ */

textarea { resize: vertical; }

.form-label { margin-bottom: 0.5rem; }

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #6c757d;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}

.form-control:focus {
  border-color: #8f98f9;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(30, 48, 243, 0.25);
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}

.form-check {
  display: block;
  margin-bottom: 0.5rem;
}

.form-check-input {
  margin-right: 0.5rem;
}


/* ============================================
   CARD
   ============================================ */

.card {
  background-color: var(--matrix-bg-card);
  border-radius: 0;
  border: 1px solid var(--matrix-primary);
  box-shadow: var(--matrix-glow);
}

.card-body {
  padding: 1rem;
  color: var(--matrix-text);
}


/* ============================================
   GRADIENTI
   ============================================ */

.bg-gradient-primary-to-secondary {
  background: var(--matrix-gradient-elegant);
}


/* ============================================
   TITOLI - STATICI (SENZA ANIMAZIONI)
   ============================================ */

h1, h2, h3, h4, h5, h6,
.display-3, .display-5 {
  position: relative;
}


/* ============================================
   ANIMAZIONI BOTTONI
   ============================================ */

/* Fade In */
@keyframes fadeInBtn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.custom-fadeIn {
  animation: fadeInBtn 0.4s ease;
}


/* LightSpeed Out Left */
@keyframes lightSpeedOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-300px);
    opacity: 0;
  }
}

.custom-lightSpeedOutLeft {
  animation: lightSpeedOutLeft 0.6s ease forwards;
}


/* LightSpeed Out Right */
@keyframes lightSpeedOutRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(1000px);
    opacity: 0;
  }
}

.custom-lightSpeedOutRight {
  animation: lightSpeedOutRight 0.6s ease forwards;
}


/* ============================================
   FOOTER
   File: footer.php
   ============================================ */

footer {
  background: var(--matrix-bg-alt) !important;
  border-top: 1px solid var(--matrix-primary);
}

.footer-link {
  color: var(--matrix-text-muted);
  text-decoration: none;
  transition: var(--matrix-transition);
}

.footer-link:hover {
  color: var(--matrix-primary);
  text-shadow: var(--matrix-glow);
}

.footer-separator {
  color: var(--matrix-primary);
  margin: 0 0.5rem;
}

.footer-powered-by {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--matrix-text-muted);
  text-decoration: none;
  transition: var(--matrix-transition);
}

.footer-powered-by:hover {
  color: var(--matrix-primary);
  text-shadow: var(--matrix-glow);
}

/* Icone social - stile Matrix */
footer .bi,
footer .fab {
  color: var(--matrix-text-muted);
  transition: var(--matrix-transition);
}

footer .bi:hover,
footer .fab:hover {
  color: var(--matrix-primary);
  text-shadow: var(--matrix-glow);
}


/* ============================================
   UTILITY
   m*, p*, d*, text-*, bg-*, rounded-*, gap-*, fw-*, fs-*
   ============================================ */

/* Display */
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }
.d-none { display: none !important; }
.d-inline-block { display: inline-block !important; }
.d-inline-flex { display: inline-flex !important; }

/* Position */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-static { position: static !important; }

/* Flex */
.flex-wrap { flex-wrap: wrap !important; }
.flex-column { flex-direction: column !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }

.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }

.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }

/* Margin */
.m-0, .m-1, .m-2, .m-3, .m-4, .m-5, .m-auto { margin: 0 !important; }
.m-1 { margin: 0.25rem !important; }
.m-2 { margin: 0.5rem !important; }
.m-3 { margin: 1rem !important; }
.m-4 { margin: 1.5rem !important; }
.m-5 { margin: 3rem !important; }
.m-auto { margin: auto !important; }

.mt-0, .mt-1, .mt-2, .mt-3, .mt-4, .mt-5 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }

.mb-0, .mb-1, .mb-2, .mb-3, .mb-4, .mb-5 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }

.ms-0, .ms-1, .ms-2, .ms-3, .ms-4, .ms-auto { margin-left: 0 !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-3 { margin-left: 1rem !important; }
.ms-4 { margin-left: 1.5rem !important; }
.ms-auto { margin-left: auto !important; }

.me-0, .me-1, .me-2, .me-3, .me-4, .me-auto { margin-right: 0 !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.me-4 { margin-right: 1.5rem !important; }
.me-auto { margin-right: auto !important; }

.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.my-0, .my-1, .my-2, .my-3, .my-4, .my-5 { margin-top: 0 !important; margin-bottom: 0 !important; }
.my-1 { margin-top: 0.25rem !important; margin-bottom: 0.25rem !important; }
.my-2 { margin-top: 0.5rem !important; margin-bottom: 0.5rem !important; }
.my-3 { margin-top: 1rem !important; margin-bottom: 1rem !important; }
.my-4 { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }
.my-5 { margin-top: 3rem !important; margin-bottom: 3rem !important; }

/* Padding */
.p-0, .p-1, .p-2, .p-3, .p-4, .p-5 { padding: 0 !important; }
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 1rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }

.pt-0, .pt-1, .pt-2, .pt-3, .pt-4, .pt-5 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 3rem !important; }

.pb-0, .pb-1, .pb-2, .pb-3, .pb-4, .pb-5 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 3rem !important; }

.px-0, .px-1, .px-2, .px-3, .px-4, .px-5 { padding-left: 0 !important; padding-right: 0 !important; }
.px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.px-5 { padding-left: 3rem !important; padding-right: 3rem !important; }

.py-0, .py-1, .py-2, .py-3, .py-4, .py-5 { padding-top: 0 !important; padding-bottom: 0 !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }

/* Gap */
.gap-0, .gap-1, .gap-2, .gap-3, .gap-4, .gap-5 { gap: 0 !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 1rem !important; }
.gap-4 { gap: 1.5rem !important; }
.gap-5 { gap: 3rem !important; }

/* Text */
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }

.text-decoration-none { text-decoration: none !important; }
.text-uppercase { text-transform: uppercase !important; }

.fw-light { font-weight: 200 !important; }
.fw-normal { font-weight: 400 !important; }
.fw-bold { font-weight: 700 !important; }

.fs-1, .fs-2, .fs-3, .fs-4, .fs-5, .fs-6 { font-size: 1rem !important; }
.fs-1 { font-size: calc(1.3rem + 0.6vw) !important; }
.fs-2 { font-size: calc(1.275rem + 0.3vw) !important; }
.fs-3 { font-size: calc(1.3rem + 0.6vw) !important; }
.fs-5 { font-size: 0.875rem !important; }
.fs-6 { font-size: 0.75rem !important; }

.fst-italic { font-style: italic !important; }

/* Colori - Matrix Style */
.text-white, .text-dark, .text-muted, .text-primary, .text-success, .text-secondary { color: var(--matrix-text) !important; }
.text-white { color: #fff !important; }
.text-muted, .text-secondary { color: var(--matrix-text-muted) !important; }
.text-primary { color: var(--matrix-primary) !important; }
.text-success { color: var(--matrix-primary) !important; }

/* Background - Matrix Style */
.bg-white { background-color: var(--matrix-bg-card) !important; }
.bg-light { background-color: var(--matrix-bg-alt) !important; }
.bg-transparent { background-color: transparent !important; }
.bg-matrix { background-color: var(--matrix-bg) !important; }
.bg-matrix-card { background-color: var(--matrix-bg-card) !important; }

/* Border radius */
.rounded, .rounded-0, .rounded-1, .rounded-2, .rounded-3, .rounded-4, .rounded-circle { border-radius: 0 !important; }
.rounded { border-radius: 0.375rem !important; }
.rounded-1 { border-radius: 0.25rem !important; }
.rounded-2 { border-radius: 0.375rem !important; }
.rounded-3 { border-radius: 0.5rem !important; }
.rounded-4 { border-radius: 1rem !important; }
.rounded-circle { border-radius: 50% !important; }


/* ============================================
   FOCUS LAVORATIVO - Elementor Page
   Titoli e testi con colori Matrix leggibili
   ============================================ */

/* Selettori specifici per Elementor - TITOLI */
.page-focus-lavorativo .elementor-heading-title,
.page-focus-lavorativo .elementor-widget-heading .elementor-heading-title,
.page-focus-lavorativo .elementor h1,
.page-focus-lavorativo .elementor h2,
.page-focus-lavorativo .elementor h3,
.page-focus-lavorativo .elementor h4,
.page-focus-lavorativo .elementor h5,
.page-focus-lavorativo .elementor h6,
.page-focus-lavorativo h1,
.page-focus-lavorativo h2,
.page-focus-lavorativo h3,
.page-focus-lavorativo h4,
.page-focus-lavorativo h5,
.page-focus-lavorativo h6 {
  color: #00FF00 !important;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.7), 0 0 20px rgba(0, 255, 0, 0.4);
}

/* Display titoli */
.page-focus-lavorativo .display-3,
.page-focus-lavorativo .display-5 {
  color: #00FF00 !important;
  text-shadow: 0 0 10px rgba(0, 255, 0, 0.7), 0 0 20px rgba(0, 255, 0, 0.4);
}

/* Testo paragrafi di Elementor - verde Matrix */
.page-focus-lavorativo .elementor-text-editor p,
.page-focus-lavorativo .elementor-widget-text-editor p,
.page-focus-lavorativo p {
  color: #00AA00 !important;
}

/* Link nella pagina */
.page-focus-lavorativo a,
.page-focus-lavorativo .elementor a {
  color: #00FF00 !important;
}

.page-focus-lavorativo a:hover,
.page-focus-lavorativo .elementor a:hover {
  color: #00DD00 !important;
  text-shadow: 0 0 8px rgba(0, 255, 0, 0.8);
}
