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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: #fdf6e9;
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

/* 图片通用规则 */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.display-2 {
	color: #fff;
}
.lead {
	color: #fff;
}

header h1,
header p {
  text-shadow: 0 2px 3px rgba(0,0,0,0.35);
}

.navbar {
  backdrop-filter: blur(6px);
}

.navbar-brand {
  font-family: "PT Serif", serif;
}


.evaluation-title {
  font-family: "PT Serif", serif;
  font-weight: 700;
  text-align: center;
  margin: 20px 0 50px;
  color: #222;
}

/* Review card */
.review-card {
  background: #fdf6e9;
  border: 2px solid #222;
  border-radius: 28px;
  padding: 28px;
  min-height: 220px;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 星级 */
.stars {
  font-size: 22px;
  letter-spacing: 6px;
  line-height: 1;
}

/* 标题与正文 */
.review-title {
  font-size: 24px;
  font-weight: 600;
  margin: 8px 0 0;
}

.review-body {
  font-size: 16px;
  margin: 0;
}

/* reviewer */
.reviewer {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-weight: 700;
  font-size: 16px;
  color: #555;
}

.date {
  font-size: 14px;
  color: #999;
}

/*3. Service Section*/

.service-section {
  margin: 60px 0;
}

.service-title {
  font-family: "PT Serif", serif;
  font-weight: 700;
  margin-bottom: 16px;
}

.service-text,
.book-text {
  text-align: justify;
  font-size: 16px;
}

/* 图片自适应 */
.service-img {
  width: 100%;
  max-width: 520px;
  border-radius: 40px;
  margin: 0 auto;
}

/* CTA 区 */
.cta-box {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
}

/* button */
.btn-primary {
  background-color: #c2723c;
  border-color: #c2723c;
}

.btn-inter .btn-primary:hover {
  background-color: #2c2c2c;
  border-color: #2c2c2c;
}

/*4. Footer */

.site-footer {
  margin-top: 80px;
}

/* pill */
.site-footer .footer-pill-wrap {
  width: min(90%, 1100px);
  min-height: 60px;
  padding: 20px 28px;

  background-color: #c2723c;
  border: 3px solid #2c2c2c;
  border-radius: 40px;

  margin: 0 auto 40px;
}

.site-footer .footer-pill {
  color: #fff;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}

.site-footer .footer-pill a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* legal */
.site-footer .footer-legal {
  background-color: #c2723c;
}

.site-footer .footer-legal-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0;
}

.site-footer .footer-legal-row a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.site-footer .footer-legal-row a:hover {
  text-decoration: underline;
}

/* social */
.site-footer .footer-social {
  background-color: #2c2c2c;
  padding: 30px 0;
}

.site-footer .social-row {
  display: flex;
  justify-content: center;
  gap: clamp(36px, 8vw, 120px);
  flex-wrap: wrap;
}

.site-footer .social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #d9d9d9;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  color: #2c2c2c;
  text-decoration: none;
}

/* bottom bar */
.site-footer .footer-bottom {
  background-color: #c2723c;
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
  text-align: center;
}

/* =========================
   5. 响应式断点
========================= */

/* 平板及以下 */
@media (max-width: 768px) {

  .evaluation-title {
    margin-bottom: 32px;
  }

  .review-title {
    font-size: 20px;
  }

  .review-body {
    font-size: 15px;
  }

  .service-text,
  .book-text {
    font-size: 15px;
  }
}

/* 手机 */
@media (max-width: 480px) {

  header h1 {
    font-size: 2.2rem;
  }

  .stars {
    font-size: 18px;
  }

  .site-footer .social-btn {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}






