/* --------------------------------------------------
  📌 1. 기본 텍스트/폰트/링크 스타일
-------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@500&display=swap');

body {
  font-family: 'Noto Serif KR', serif;
  color: #333;
  background-color: #f9f9f9;
}

a {
  color: #0055aa;
  text-decoration: none;
}
a:hover {
  color: #003377;
  text-decoration: underline;
}


/* --------------------------------------------------
  🧱 2. 카드형 블로그 레이아웃 + Hover 효과
-------------------------------------------------- */
.entry, .post, .blog-post, .archive-post, article {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.entry:hover, .post:hover, .blog-post:hover, .archive-post:hover, article:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  background-color: #fff;
  z-index: 1;
}


/* --------------------------------------------------
  📱 3. 모바일 반응형 조정 (카드, 제목 등)
-------------------------------------------------- */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding: 20px;
  }

  .entry-title {
    font-size: 1.15rem;
    line-height: 1.4;
  }

  .site-title {
    font-size: 1.75rem;
  }

  .site-description {
    font-size: 1rem;
  }

  .post-preview {
    padding: 16px;
  }
}


/* --------------------------------------------------
  🗺️ 4. 지도(Leaflet) 프레임 장식 및 반응형 스타일
-------------------------------------------------- */


.map-framed .leaflet-container {
  width: 90%;
  height: 300px;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 8px;
  z-index: 2;
  position: center;
}

@media (max-width: 768px) {
  .map-framed {
    padding: 40px;
    background-size: 100% auto;
  }
  .map-framed .leaflet-container {
    height: 300px;
    max-width: 100%;
  }
}


/* --------------------------------------------------
  🧭 5. "지역별 명소" 제목 헤더 영역 최소화
-------------------------------------------------- */
.entry-hero,
.entry-hero.page-hero-section.entry-hero-layout-standard,
.entry-hero-container-inner,
.entry-hero-container,
.entry-header {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  height: auto !important;
  min-height: 0 !important;
}

.entry-title {
  font-size: 1.3rem !important;
  padding: 0.5rem 0 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  text-align: center;
}

@media (max-width: 768px) {
  .entry-title {
    font-size: 1.2rem !important;
    padding: 0.25rem 0 !important;
  }
}


/* --------------------------------------------------
  📩 6. 전통 스타일 문의 양식 (contact-traditional)
-------------------------------------------------- */
.contact-traditional {
  max-width: 640px;
  margin: 3rem auto;
  padding: 2rem;
  background: url('/images/bg-hanji-texture.jpg') no-repeat center center;
  background-size: cover;
  border: 2px solid #c2a66e;
  border-radius: 16px;
  font-family: 'Noto Serif KR', serif;
  color: #3a2e1f;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.contact-traditional h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #c2a66e;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.contact-traditional p {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-traditional label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  font-size: 1.05rem;
}

.contact-traditional input,
.contact-traditional textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border: 1px solid #a8925d;
  border-radius: 8px;
  font-size: 1rem;
  background-color: rgba(255,255,255,0.85);
}

.contact-traditional button {
  margin-top: 1.5rem;
  padding: 0.7rem 1.4rem;
  background-color: #836c3a;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-traditional button:hover {
  background-color: #5f4c24;
}

.leaflet-marker-icon .marker-label {
  font-family: 'GmarketSans', 'Noto Sans KR', Arial, sans-serif; /* 원하는 글씨체 */
  font-size: 1.1em;
  color: #32527b; /* 진한 네이비색 */
  font-weight: 700;
  background: rgba(255,255,255,0.9);
  border-radius: 8px;
  padding: 6px 12px;
  border: 1.5px solid #b2b2b2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.11);
  display: inline-block;
  margin-top: 4px;
  transition: 0.2s;
}
.leaflet-marker-icon .marker-label a {
  color: #d17a22;    /* View Post 링크 색상 */
  text-decoration: underline;
  font-weight: 700;
}
.leaflet-marker-icon .marker-label a:hover {
  color: #e64d39;
  text-shadow: 0 1px 4px #fff8;
}




