/* ===============================
   절구팩토리는 (글자 가독성 강화)
================================= */
.intro-section {
  position: relative;
  background: url('../images/22.jpg') center center / cover no-repeat;
  height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  color: #2b2018;
}

/* 오버레이 */
.intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 235, 220, 0.55);
  backdrop-filter: blur(1px);
  z-index: 1;
}

/* 텍스트 컨테이너 */
.intro-inner {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.55);
  padding: 50px 60px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(6px);
}

/* 제목 */
.intro-title {
  font-family: 'GmarketSansBold';
  font-size: 4.4rem;
  color: #2b2018;
  margin-bottom: 30px;
  text-shadow: 0 3px 8px rgba(255, 255, 255, 0.6);
}

/* 본문 */
.intro-desc {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
  color: #2a1c0f;
  line-height: 2;
  font-size: 1.2rem;
  font-family: 'GmarketSansMedium';
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.6);
}

.intro-desc strong {
  color: #a16a1d;
  font-weight: 700;
}

/* 모바일 최적화 */
@media (max-width: 768px) {
  .intro-section {
    height: auto;
    padding: 100px 0;
  }

  .intro-title {
    font-size: 2.6rem;
  }

  .intro-desc {
    font-size: 1rem;
    max-width: 90%;
    line-height: 1.8;
  }
}

/* ===============================
   HERO 섹션
================================= */
.hero {
  position: relative;
  background: url('../images/hero3.png') center center / cover no-repeat;
  height: 520px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hero * {
  position: relative;
  z-index: 2;
}

.hero-top h2 {
  font-family: 'GmarketSansBold';
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  margin-bottom: 6px;
}

.hero-top .eng-title {
  font-family: 'GmarketSansMedium';
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 3px;
}

.center-box {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 18px 28px;
  max-width: 620px;
  line-height: 1.7;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.center-box p {
  font-family: 'GmarketSansMedium';
  font-size: 1.15rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-bottom p {
  font-family: 'GmarketSansMedium';
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  margin-top: 20px;
}

.hero-bottom .green {
  color: #54e04a;
  font-weight: bold;
}

/* ===============================
   PC/모바일 텍스트 분기
================================= */

/* PC: 긴 문단만 보임 */
.pc-text { display: block; }
.mobile-text { display: none; }

/* 모바일: 요약문만 보임 */
@media (max-width: 768px) {
  .pc-text { display: none; }

  .mobile-text {
    display: block;
    font-size: 1rem;
    line-height: 1.85; /* ★ 가독성 강화 */
    max-width: 92%;
    margin: 0 auto;
    text-align: center;
    word-break: keep-all;
    color: #2b2018; /* PC 톤과 동일 */
    padding: 10px 4px;
  }

  .mobile-text strong {
    font-weight: 700;
    color: #a16a1d; /* PC 강조 색상 */
  }
}
