:root {
  --status-live: #28a745;
  --status-pause: #ffc107;
  --status-stop: #dc3545;
}

/* ===== RESET + STRUTTURA ===== */
html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: 'Forum';
  background: #ffffff;
  color: #333;
}

/* wrapper reale usato in HTML */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 90px; /* navbar fixed */
  box-sizing: border-box;
}

/* main che spinge il footer in fondo */
.page-wrapper > main {
  flex: 1 0 auto;
}

/* ===== CONTENUTO PRINCIPALE ===== */
.licenze-main {
  padding: 4rem 2rem;
}

.licenze-section {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem;
  border-radius: 18px;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.06);
}

/* ===== TITOLI (NEUTRI, SENZA RIGHE) ===== */
.licenze-section h1 {
  font-size: 2.15rem;
  margin-bottom: 1.8rem;
  color: #222;
  text-align: center;
}

.licenze-section h2 {
  font-size: 1.45rem;
  margin: 2.6rem 0 1rem;
  color: #333;        /* colore neutro */
  border: none;       /* ❌ niente righe */
  padding-bottom: 0;
  text-align: center;
}

/* ===== TESTO ===== */
.licenze-section p {
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

/* link sobri */
.licenze-section a {
  color: #0077cc;
  text-decoration: underline;
}

.licenze-section a:hover {
  color: #0077cc; /* ❌ niente cambio colore */
}

/* ===== ICONE LICENZE ===== */
.fotoLicenze {
  float: left;
  width: 70px;
  margin: 6px 14px 6px 0;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.14);
}

/* evita problemi di float */
.licenze-section p::after {
  content: "";
  display: block;
  clear: both;
}



/* ===== FOOTER ===== */
.footer {
  margin-top: auto;
  background: #000;
  padding: 1.4rem 1rem;
  text-align: center;
  color: #eee;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.12);
}

.footer-content p {
  font-size: 0.95rem;
  margin: 0.9rem 0;
  color: #ccc;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffc107;
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffc107; /* niente cambio colore */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .licenze-main {
    padding: 3rem 1.5rem;
  }

  .licenze-section {
    padding: 2.4rem 2rem;
  }
}

@media (max-width: 480px) {
  .licenze-main {
    padding: 2.4rem 1rem;
  }

  .licenze-section {
    padding: 2rem 1.2rem;
  }

  .fotoLicenze {
    width: 60px;
  }

  .footer-logo-img {
    width: 60px;
    height: 60px;
  }
}