@charset "utf-8";
/* ============================================================
   styleTaiChi.css — Stili specifici della sezione Tai Chi
   (header, navbar principale, 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;
}

/* ---------- SUB NAVBAR TAI CHI ---------- */
.nav-taichi {
  background: #fdf8f0;
  border-bottom: 2px solid #b25f2f;
  border-top: 1px solid #e8cfbc;
}

.nav-taichi .nav-link {
  font-weight: 600;
  color: #7a1f00;
  padding: .5rem .75rem;
  font-size: .92rem;
  transition: all .2s ease;
}

.nav-taichi .nav-link:hover,
.nav-taichi .nav-link:focus,
.nav-taichi .nav-link.active {
  color: #fff;
  background: linear-gradient(180deg, #a84b18 0%, #7a2f0a 100%);
  border-radius: 6px;
}

/* ---------- HERO VIDEO ---------- */
.hero-video,
.taichi-content-card {
  border-radius: 14px;
}

/* ---------- CONTENUTO PRINCIPALE ---------- */
.taichi-content-card {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(200, 140, 100, 0.14) 0%, rgba(255, 255, 255, 0) 65%),
    linear-gradient(180deg, #fffef9 0%, #fdf8f0 40%, #faf3e6 100%);
}

.taichi-content-card .card-body {
  font-size: 1.05rem;
  line-height: 1.7;
}

.taichi-content-card h1 {
  color: #7a1f00;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.taichi-content-card h2 {
  color: #7a1f00;
  font-weight: 700;
  font-size: 1.6rem;
  margin-top: 1.5rem;
}

.taichi-content-card h3 {
  color: #6b2f0a;
  font-weight: 600;
  font-size: 1.35rem;
  margin-top: 1.3rem;
}

.taichi-content-card h4 {
  color: #6b2f0a;
  font-weight: 600;
  font-size: 1.15rem;
}

.taichi-content-card article {
  text-align: justify;
}

.taichi-content-card ul {
  list-style: disc;
  padding-left: 1.6rem;
  margin-bottom: 1.2rem;
}

.taichi-content-card ul li {
  margin-bottom: .45rem;
}

/* ---------- IMMAGINI ---------- */
.taichi-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);
}

.taichi-img-inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: .5rem 1rem;
}

.taichi-img-left {
  float: left;
  margin: .5rem 1.2rem .8rem 0;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.taichi-img-right {
  float: right;
  margin: .5rem 0 .8rem 1.2rem;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}


/* ---------- CITAZIONE IN EVIDENZA ---------- */
.taichi-citazione {
  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;
}

.taichi-citazione p {
  margin: 0 0 .25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #7a1f00;
}

.taichi-citazione q {
  font-style: italic;
}

/* ---------- SEPARATORI ---------- */
.taichi-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);
}

/* ---------- VIDEO WRAPPER ---------- */
.taichi-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.taichi-video-wrapper iframe,
.taichi-video-wrapper object,
.taichi-video-wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* ---------- STILI TESTO ---------- */
.text-brand {
  color: #7a1f00;
}

.text-muted-brand {
  color: #6b2f0a;
}

.font-verdana {
  font-family: Verdana, Arial, Helvetica, sans-serif;
}

/* ---------- MEDIA QUERIES ---------- */
@media (max-width: 991.98px) {
  .taichi-content-card h1 {
    font-size: 1.8rem;
  }

  .taichi-content-card .card-body {
    font-size: 1rem;
    line-height: 1.6;
  }

  .taichi-citazione {
    padding: 1.2rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  body {
    background-attachment: scroll;
  }

  .taichi-content-card h1 {
    font-size: 1.55rem;
  }

  .taichi-content-card .card-body {
    font-size: .95rem;
  }

  .taichi-img-top {
    border-radius: 8px;
  }

  .taichi-citazione {
    padding: 1rem;
    margin: 1.5rem 0 .8rem;
  }

  .taichi-citazione p {
    font-size: 1rem;
  }

  .taichi-separator {
    width: 80%;
  }

  .cta-link {
    font-size: .93rem;
    padding: .42rem .78rem;
  }
}