@charset "utf-8";
/* ============================================================
   styleQigong.css — Stili specifici della pagina Qi Gong
   (header, navbar, social e footer sono in shared.css)
   ============================================================ */

body {
  background: #e1e1e1 url("bg.jpg") repeat-x fixed;
  font-family: "Times New Roman", Times, serif;
  color: #000;
}

/* ---------- HERO VIDEO ---------- */
.hero-video,
.qigong-content-card {
  border-radius: 14px;
}

/* ---------- QUICK LINKS (HOME / CONTATTACI) ---------- */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-bottom: 1.8rem;
}

/* ---------- CONTENUTO PRINCIPALE ---------- */
.qigong-content-card {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(245, 210, 150, 0.18) 0%, rgba(255, 255, 255, 0) 65%),
    linear-gradient(180deg, #fffef9 0%, #fdf8f0 40%, #faf3e6 100%);
}

.qigong-content-card .card-body {
  font-size: 1.05rem;
  line-height: 1.7;
}

.qigong-content-card h1 {
  color: #7a1f00;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.qigong-content-card h4 {
  color: #7a1f00;
  font-weight: 700;
  font-size: 1.35rem;
}

.qigong-content-card h5 {
  color: #6b2f0a;
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 1.5rem;
}

.qigong-content-card article {
  text-align: justify;
}

.qigong-content-card ul {
  list-style: disc;
  padding-left: 1.6rem;
  margin-bottom: 1.2rem;
}

.qigong-content-card ul li {
  margin-bottom: .45rem;
}

.qigong-content-card cite {
  display: block;
  text-align: center;
  font-size: 1.15rem;
  color: #7a1f00;
  font-weight: 600;
  padding: .6rem 0;
}

/* ---------- IMMAGINI QI GONG ---------- */
.qigong-img-top {
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.qigong-img-bottom {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ---------- CITAZIONE FINALE IN EVIDENZA ---------- */
.qigong-citazione-finale {
  margin: 2rem 0 1rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(180deg, #fffefc 0%, #fff2e6 100%);
  border: 1px solid #e8cfbc;
  border-radius: 12px;
  text-align: center;
}

.qigong-citazione-finale p {
  margin: 0 0 .25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #7a1f00;
}

.qigong-citazione-finale q {
  font-style: italic;
}

/* ---------- SEPARATORI ---------- */
.qigong-separator {
  width: 60%;
  margin: 1.8rem auto;
  border-color: #d7b28d;
}

/* ---------- CTA LINK ---------- */
.cta-link {
  display: inline-block;
  margin-top: .35rem;
  padding: .48rem .88rem;
  border-radius: 999px;
  border: 1px solid #b25f2f;
  background: linear-gradient(180deg, #fff3e8 0%, #ffe3cd 100%);
  color: #7a1f00;
  text-decoration: none !important;
  font-weight: 700;
  letter-spacing: .01em;
  transition: all .2s ease;
}

.cta-link:hover,
.cta-link:focus {
  color: #ffffff !important;
  background: linear-gradient(180deg, #a84b18 0%, #7a2f0a 100%);
  border-color: #7a2f0a;
  transform: translateY(-1px);
}

/* ---------- MEDIA QUERIES ---------- */
@media (max-width: 991.98px) {
  .qigong-content-card h1 {
    font-size: 1.8rem;
  }

  .qigong-content-card .card-body {
    font-size: 1rem;
    line-height: 1.6;
  }

  .qigong-citazione-finale {
    padding: 1.2rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  body {
    background-attachment: scroll;
  }

  .qigong-content-card h1 {
    font-size: 1.55rem;
  }

  .qigong-content-card .card-body {
    font-size: .95rem;
  }

  .qigong-img-top {
    border-radius: 8px;
  }

  .qigong-citazione-finale {
    padding: 1rem;
    margin: 1.5rem 0 .8rem;
  }

  .qigong-citazione-finale p {
    font-size: 1rem;
  }

  .qigong-separator {
    width: 80%;
  }

  .cta-link {
    font-size: .93rem;
    padding: .42rem .78rem;
  }
}