/* =========================
  Reset & Base Styles
  ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Oxanium", sans-serif;
  background: linear-gradient(to left, #045b99, #02223b);
  color: white;
  overflow-x: hidden;
  letter-spacing: 0.8px; /* Maggiore leggibilità */
  font-size: large;
  padding-top: 140px; /* Altezza navbar per evitare sovrapposizione */
}

/* =========================
  Titoli
  ========================= */
h1 {
  padding-top: 100px;
}

.audiovideo-wrapper h1 {
  text-align: center;
  color: #b3c6ff;
  font-size: 3rem;
  margin-bottom: 30px;
  font-family: "Oxanium", sans-serif;
  text-shadow:
   0 0 5px rgba(0, 0, 0, 0.9),
   0 0 10px rgba(0, 0, 0, 0.6); /* Effetto glow/scuro più forte */
}

/* =========================
  Wrapper Principale
  ========================= */
.audiovideo-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
  color: white;
  font-family: "Oxanium", sans-serif;
}

/* =========================
  Banner AudioVideo
  ========================= */
.av-banner {
  position: relative;
  height: 300px;
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.av-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.80;
}

.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 2rem; /* Leggermente più grande */
  font-weight: 600; /* Testo più marcato */
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
  text-align: center;
  z-index: 10; /* Più alto per sicurezza */
  padding: 20px 30px;
}

/* =========================
  Blocchi di Testo AudioVideo
  ========================= */
.av-text-block {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.av-text-block h2 {
  color: #b3c6ff;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.av-text-block p,
.av-text-block ul {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.av-text-block ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* =========================
  Footer
  ========================= */
.footer {
  background: linear-gradient(to left, #045b99, #02223b);
  color: white;
  padding: 40px 20px 20px;
  font-family: "Oxanium", sans-serif;
  border-top: 1.5px solid #ffffff;
  letter-spacing: 0.4px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

/* Logo Footer */
.footer-logo img {
  width: 100px;
  margin-bottom: 10px;
}

.footer-logo p {
  max-width: 200px;
  font-size: 13px;
}

/* Link e Contatti Footer */
.footer-links,
.footer-contatti {
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-links h4,
.footer-contatti h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: white;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contatti a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contatti a:hover {
  color: #b3c6ff;
  transition: color 0.3s;
}

/* Bottom Footer */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 15px;
}