/**
 * Blue Haven Premium Pension — Theme CSS
 * themes/bluehaven/css/style.css
 * PHP 5.6+ 호환
 */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@300;400;500;600;700&family=Noto+Sans+KR:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ── 컬러 변수 ── */
:root {
  --bh-navy:   #1a2540;
  --bh-navy2:  #243560;
  --bh-gold:   #c9a96e;
  --bh-border: #e5e7eb;
  --bh-text:   #1f2937;
  --bh-muted:  #6b7280;
  --bh-gray:   #f9fafb;
}

*, *::before, *::after { box-sizing: border-box; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--bh-text);
  background: #fff;
  margin: 0;
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
#bh-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: transparent;
  -webkit-transition: background .3s, box-shadow .3s;
  transition: background .3s, box-shadow .3s;
}
#bh-header.bh-scrolled,
#bh-header.bh-solid {
  background: var(--bh-navy);
  -webkit-box-shadow: 0 2px 20px rgba(0,0,0,.15);
  box-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.bh-hd-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 64px;
}
.bh-logo {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  line-height: 1.2;
}
.bh-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: #fff;
}
.bh-logo-sub {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.bh-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}
.bh-nav a {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  text-decoration: none;
  font-family: 'Noto Sans KR', sans-serif;
  -webkit-transition: color .2s;
  transition: color .2s;
}
.bh-nav a:hover { color: #fff; }
.bh-nav a.bh-on { color: #fff; border-bottom: 1px solid #fff; padding-bottom: 2px; }
.bh-hd-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.bh-tel {
  color: rgba(255,255,255,.75);
  font-size: 13px;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
.bh-btn-rsv {
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 500;
  -webkit-transition: background .2s, color .2s;
  transition: background .2s, color .2s;
  white-space: nowrap;
  background: rgba(255,255,255,.1);
}
.bh-btn-rsv:hover { background: #fff; color: var(--bh-navy); }
/* 메인 히어로 위 예약 버튼 */
.bh-btn-rsv-hero { background: var(--bh-navy); border-color: var(--bh-navy); }
.bh-btn-rsv-hero:hover { background: var(--bh-navy2); }

/* 모바일 버튼 */
.bh-mob-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
}
.bh-mob-menu {
  display: none;
  background: var(--bh-navy);
  padding: 0 24px 16px;
}
.bh-mob-menu a {
  display: block;
  padding: 10px 0;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  font-family: 'Noto Sans KR', sans-serif;
}
.bh-mob-menu a:last-child { border-bottom: none; }

@media (max-width: 1023px) {
  .bh-nav, .bh-tel { display: none !important; }
  .bh-mob-btn { display: block; }
}

/* ══════════════════════════════════════════════
   HERO (메인 전용)
══════════════════════════════════════════════ */
.bh-hero {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bh-navy);
}
.bh-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1600&q=80');
  background-size: cover;
  background-position: center;
}
.bh-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,.4)), color-stop(50%, rgba(0,0,0,.2)), to(rgba(0,0,0,.5)));
  background: -webkit-linear-gradient(top, rgba(0,0,0,.4) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.5) 100%);
  background: linear-gradient(to bottom, rgba(0,0,0,.4) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.5) 100%);
}
.bh-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.bh-hero-eyebrow {
  color: rgba(255,255,255,.7);
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Noto Sans KR', sans-serif;
}
.bh-hero h1 {
  font-family: 'Noto Serif KR', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0 0 16px;
}
.bh-hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 300;
  font-family: 'Noto Sans KR', sans-serif;
}
.bh-hero-cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 32px;
  border-radius: 99px;
  font-size: 14px;
  text-decoration: none;
  margin-top: 32px;
  -webkit-transition: background .2s, color .2s;
  transition: background .2s, color .2s;
  font-family: 'Noto Sans KR', sans-serif;
}
.bh-hero-cta:hover { background: #fff; color: var(--bh-navy); }
.bh-hero-dots {
  position: absolute;
  bottom: 128px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  z-index: 3;
}
.bh-hero-dot {
  height: 2px;
  border-radius: 2px;
  background: rgba(255,255,255,.4);
  width: 8px;
}
.bh-hero-dot.bh-active { width: 24px; background: #fff; }
.bh-hero-arrows {
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.bh-arrow-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: none;
  color: #fff;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  -webkit-transition: background .2s;
  transition: background .2s;
}
.bh-arrow-btn:hover { background: rgba(255,255,255,.2); }

/* ══════════════════════════════════════════════
   예약바
══════════════════════════════════════════════ */
.bh-bookbar { background: #fff; -webkit-box-shadow: 0 4px 20px rgba(0,0,0,.08); box-shadow: 0 4px 20px rgba(0,0,0,.08); position: relative; z-index: 20; }
.bh-bookbar-inner { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.bh-bookbar-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  border: 1px solid var(--bh-border);
  border-radius: 8px;
  overflow: hidden;
}
.bh-bookbar-field {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 140px;
  padding: 14px 24px;
  border-right: 1px solid var(--bh-border);
}
.bh-bookbar-field label {
  display: block;
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 4px;
  font-family: 'Noto Sans KR', sans-serif;
}
.bh-bookbar-field input,
.bh-bookbar-field select {
  font-size: 14px;
  font-weight: 600;
  color: var(--bh-text);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  font-family: 'Noto Sans KR', sans-serif;
}
.bh-bookbar-btn {
  background: var(--bh-navy);
  color: #fff;
  padding: 0 40px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: 'Noto Sans KR', sans-serif;
  -webkit-transition: background .2s;
  transition: background .2s;
}
.bh-bookbar-btn:hover { background: var(--bh-navy2); }

/* ══════════════════════════════════════════════
   페이지 히어로 (서브 공통)
══════════════════════════════════════════════ */
.bh-page-hero {
  background: -webkit-linear-gradient(315deg, var(--bh-navy) 0%, #1a3a5c 100%);
  background: linear-gradient(135deg, var(--bh-navy) 0%, #1a3a5c 100%);
  background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?w=1400&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 160px 24px 80px;
  text-align: center;
  color: #fff;
}
.bh-page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,25,50,.65);
}
.bh-page-hero > * { position: relative; z-index: 1; }
.bh-page-hero h1 {
  font-family: 'Noto Serif KR', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.bh-page-hero p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  margin: 0;
  font-family: 'Noto Sans KR', sans-serif;
}
/* 브레드크럼 */
.bh-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  margin-bottom: 16px;
  font-family: 'Noto Sans KR', sans-serif;
}
.bh-breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.bh-breadcrumb a:hover { color: #fff; }
.bh-breadcrumb .sep { color: rgba(255,255,255,.3); margin: 0 8px; }
.bh-breadcrumb .cur { color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════════
   섹션 유틸
══════════════════════════════════════════════ */
.bh-section { padding: 64px 24px; }
.bh-wrap    { max-width: 1280px; margin: 0 auto; }
.bh-wrap-md { max-width: 960px;  margin: 0 auto; }
.bh-wrap-sm { max-width: 800px;  margin: 0 auto; }
.bh-eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 8px;
  font-family: 'Noto Sans KR', sans-serif;
}
.bh-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--bh-text);
  margin: 0 0 8px;
}
.bh-desc { color: var(--bh-muted); font-size: 14px; margin: 0; font-family: 'Noto Sans KR', sans-serif; }

/* ══════════════════════════════════════════════
   특징 4가지
══════════════════════════════════════════════ */
.bh-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}
.bh-feature { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 150px; }
.bh-feature-icon { font-size: 2rem; color: #374151; margin-bottom: 16px; }
.bh-feature-title { font-weight: 600; color: var(--bh-text); margin-bottom: 8px; font-family: 'Noto Sans KR', sans-serif; font-size: 15px; }
.bh-feature-desc { color: var(--bh-muted); font-size: 13px; line-height: 1.7; font-family: 'Noto Sans KR', sans-serif; }

/* ══════════════════════════════════════════════
   객실 카드
══════════════════════════════════════════════ */
.bh-rooms-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}
.bh-room-card {
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0 1px 4px rgba(0,0,0,.07);
  box-shadow: 0 1px 4px rgba(0,0,0,.07);
  -webkit-transition: -webkit-box-shadow .3s;
  transition: box-shadow .3s;
  text-decoration: none;
  color: inherit;
  display: block;
  width: calc(33.333% - 16px);
}
.bh-room-card:hover { -webkit-box-shadow: 0 4px 20px rgba(0,0,0,.12); box-shadow: 0 4px 20px rgba(0,0,0,.12); }
.bh-room-thumb { height: 240px; overflow: hidden; position: relative; }
.bh-room-thumb-bg {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  -webkit-transition: -webkit-transform .5s;
  transition: transform .5s;
}
.bh-room-card:hover .bh-room-thumb-bg { -webkit-transform: scale(1.05); transform: scale(1.05); }
.bh-room-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--bh-navy); color: #fff;
  font-size: 11px; padding: 3px 10px;
  font-family: 'Noto Sans KR', sans-serif;
}
.bh-room-badge-gold { background: var(--bh-gold); }
.bh-room-body { padding: 20px; }
.bh-room-name { font-family: 'Noto Serif KR', serif; font-size: 1.2rem; font-weight: 600; color: var(--bh-text); margin: 0 0 4px; }
.bh-room-meta { font-size: 12px; color: #9ca3af; margin: 0 0 8px; font-family: 'Noto Sans KR', sans-serif; }
.bh-room-desc { font-size: 13px; color: var(--bh-muted); line-height: 1.65; margin: 8px 0 12px; font-family: 'Noto Sans KR', sans-serif; }
.bh-room-amenities { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 12px; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-bottom: 12px; }
.bh-room-amenity { font-size: 12px; color: #9ca3af; font-family: 'Noto Sans KR', sans-serif; }
.bh-room-footer {
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid #f3f4f6;
}
.bh-room-price { font-weight: 600; color: var(--bh-text); font-family: 'Noto Sans KR', sans-serif; }
.bh-room-price small { font-size: 11px; color: #9ca3af; font-weight: 400; }
.bh-room-arrow-circle {
  width: 28px; height: 28px;
  border: 1px solid #d1d5db; border-radius: 50%;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  color: #9ca3af; font-size: 12px;
  -webkit-transition: all .2s; transition: all .2s;
}
.bh-room-card:hover .bh-room-arrow-circle { background: var(--bh-navy); border-color: var(--bh-navy); color: #fff; }

/* ══════════════════════════════════════════════
   스페셜 오퍼
══════════════════════════════════════════════ */
.bh-offer-wrap {
  background: -webkit-linear-gradient(315deg, var(--bh-navy) 0%, var(--bh-navy2) 60%, #1a3a5c 100%);
  background: linear-gradient(135deg, var(--bh-navy) 0%, var(--bh-navy2) 60%, #1a3a5c 100%);
  border-radius: 2px;
  overflow: hidden;
}
.bh-offer-layout { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.bh-offer-left {
  width: 25%; min-width: 220px;
  padding: 40px;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
}
.bh-offer-eyebrow { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 12px; font-family: 'Noto Sans KR', sans-serif; }
.bh-offer-title { font-family: 'Noto Serif KR', serif; font-size: 1.875rem; font-weight: 600; color: #fff; margin: 0 0 16px; }
.bh-offer-desc { color: rgba(255,255,255,.7); font-size: 13px; margin-bottom: 24px; font-family: 'Noto Sans KR', sans-serif; }
.bh-offer-link {
  display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  gap: 8px; border: 1px solid #fff; color: #fff;
  padding: 8px 20px; font-size: 13px; text-decoration: none;
  -webkit-transition: background .2s, color .2s; transition: background .2s, color .2s;
  font-family: 'Noto Sans KR', sans-serif;
}
.bh-offer-link:hover { background: #fff; color: var(--bh-navy); }
.bh-offer-items {
  -webkit-box-flex: 1; -ms-flex: 1; flex: 1;
  display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap;
}
.bh-offer-item {
  -webkit-box-flex: 1; -ms-flex: 1 1 25%; flex: 1 1 25%;
  min-width: 100px; padding: 32px; text-align: center;
  border-left: 1px solid rgba(255,255,255,.1);
  -webkit-transition: background .2s; transition: background .2s;
}
.bh-offer-item:hover { background: rgba(255,255,255,.05); }
.bh-offer-item-icon { font-size: 1.5rem; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.bh-offer-item-lbl { font-size: 13px; color: rgba(255,255,255,.75); margin-bottom: 8px; font-family: 'Noto Sans KR', sans-serif; }
.bh-offer-item-val { font-size: 1.5rem; font-weight: 700; color: #fff; font-family: 'Noto Sans KR', sans-serif; }
.bh-offer-item-val.sm { font-size: 1.1rem; }

/* ══════════════════════════════════════════════
   갤러리
══════════════════════════════════════════════ */
.bh-gallery-grid { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 8px; }
.bh-gal-item {
  width: calc(16.666% - 7px);
  height: 144px;
  background-size: cover; background-position: center;
  cursor: pointer;
  -webkit-transition: opacity .2s; transition: opacity .2s;
}
.bh-gal-item:hover { opacity: .88; }

/* ══════════════════════════════════════════════
   풀 푸터 (메인)
══════════════════════════════════════════════ */
.bh-footer { background: #111827; color: #fff; padding: 64px 24px 0; }
.bh-footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -ms-flex-wrap: wrap; flex-wrap: wrap;
  gap: 40px; padding-bottom: 48px;
}
.bh-footer-brand { width: 240px; }
.bh-footer-col { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 110px; }
.bh-footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; letter-spacing: .2em; font-weight: 600; display: block; color: #fff; }
.bh-footer-logo-sub { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.3); display: block; margin-bottom: 16px; }
.bh-footer-info { color: rgba(255,255,255,.45); font-size: 12px; line-height: 1.8; font-family: 'Noto Sans KR', sans-serif; }
.bh-footer-info p { margin: 0 0 4px; }
.bh-footer-copy { color: rgba(255,255,255,.2); font-size: 10px; margin-top: 16px; font-family: 'Noto Sans KR', sans-serif; }
.bh-footer-col h4 { font-size: 13px; font-weight: 600; margin: 0 0 16px; font-family: 'Noto Sans KR', sans-serif; color: #fff; }
.bh-footer-col ul { list-style: none; padding: 0; margin: 0; }
.bh-footer-col li { margin-bottom: 8px; }
.bh-footer-col a { color: rgba(255,255,255,.45); font-size: 12px; text-decoration: none; font-family: 'Noto Sans KR', sans-serif; -webkit-transition: color .2s; transition: color .2s; }
.bh-footer-col a:hover { color: #fff; }
.bh-footer-sns { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 10px; margin-top: 4px; }
.bh-footer-sns a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08); border-radius: 50%;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  color: #fff; font-size: 14px; text-decoration: none;
  -webkit-transition: background .2s; transition: background .2s;
}
.bh-footer-sns a:hover { background: rgba(255,255,255,.18); }
.bh-footer-sns a.bh-line { background: #06c755; }
.bh-footer-sns a.bh-kakao { background: #fee500; color: #3a1d1d; }

/* 서브 심플 푸터 */
.bh-footer-simple { background: #111827; color: rgba(255,255,255,.4); padding: 40px 24px; text-align: center; }
.bh-footer-simple .bh-ft-name { font-family: 'Playfair Display', serif; font-size: 1rem; letter-spacing: .2em; color: #fff; font-weight: 600; display: block; }
.bh-footer-simple .bh-ft-sub { font-size: 9px; letter-spacing: 4px; text-transform: uppercase; color: rgba(255,255,255,.3); display: block; margin-bottom: 10px; }
.bh-footer-simple p { font-size: 12px; font-family: 'Noto Sans KR', sans-serif; margin: 4px 0; }
.bh-footer-simple .bh-ft-copy { font-size: 10px; margin-top: 10px; font-family: 'Noto Sans KR', sans-serif; color: rgba(255,255,255,.2); }

/* ══════════════════════════════════════════════
   Back to Top
══════════════════════════════════════════════ */
#bh-back-top {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bh-navy); color: #fff;
  border: none; cursor: pointer;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  -webkit-box-shadow: 0 2px 12px rgba(0,0,0,.2); box-shadow: 0 2px 12px rgba(0,0,0,.2);
  opacity: 0;
  -webkit-transition: opacity .3s; transition: opacity .3s;
  font-size: 14px;
}
#bh-back-top.bh-visible { opacity: 1; }

/* ══════════════════════════════════════════════
   게시판 공통
══════════════════════════════════════════════ */
.bh-board-table { width: 100%; border-collapse: collapse; }
.bh-board-table th {
  background: var(--bh-gray); font-size: 13px; color: var(--bh-muted);
  padding: 12px 16px; border-bottom: 2px solid var(--bh-border);
  font-family: 'Noto Sans KR', sans-serif; font-weight: 500; white-space: nowrap;
}
.bh-board-table td { padding: 14px 16px; border-bottom: 1px solid #f3f4f6; font-size: 13px; font-family: 'Noto Sans KR', sans-serif; color: #374151; }
.bh-board-table tr:hover td { background: var(--bh-gray); }
.bh-board-table a { text-decoration: none; color: inherit; }
.bh-board-table a:hover { color: var(--bh-navy); }
.bh-badge { display: inline-block; font-size: 11px; padding: 2px 8px; background: var(--bh-navy); color: #fff; font-family: 'Noto Sans KR', sans-serif; }
.bh-badge-notice { background: var(--bh-gold); }
.bh-badge-free { background: #9ca3af; }

/* ══════════════════════════════════════════════
   페이지네이션
══════════════════════════════════════════════ */
.bh-pagination { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; gap: 4px; margin-top: 32px; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.bh-page-btn {
  width: 36px; height: 36px;
  display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  border: 1px solid var(--bh-border);
  font-size: 13px; font-family: 'Noto Sans KR', sans-serif;
  cursor: pointer; background: #fff; color: #374151;
  text-decoration: none;
  -webkit-transition: all .2s; transition: all .2s;
}
.bh-page-btn:hover,
.bh-page-btn.bh-active { background: var(--bh-navy); border-color: var(--bh-navy); color: #fff; }

/* ══════════════════════════════════════════════
   폼
══════════════════════════════════════════════ */
.bh-label { display: block; font-size: 13px; color: #374151; margin-bottom: 6px; font-family: 'Noto Sans KR', sans-serif; }
.bh-input { width: 100%; padding: 10px 14px; border: 1px solid var(--bh-border); font-size: 14px; outline: none; -webkit-transition: border-color .2s; transition: border-color .2s; font-family: 'Noto Sans KR', sans-serif; background: #fff; -webkit-box-sizing: border-box; box-sizing: border-box; }
.bh-input:focus { border-color: var(--bh-navy); }
.bh-btn {
  display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  gap: 8px; padding: 12px 32px; background: var(--bh-navy); color: #fff;
  border: none; font-size: 14px; font-family: 'Noto Sans KR', sans-serif;
  font-weight: 600; cursor: pointer;
  -webkit-transition: background .2s; transition: background .2s;
  text-decoration: none;
}
.bh-btn:hover { background: var(--bh-navy2); }
.bh-btn-outline { background: transparent; border: 1px solid var(--bh-navy); color: var(--bh-navy); }
.bh-btn-outline:hover { background: var(--bh-navy); color: #fff; }

/* ══════════════════════════════════════════════
   FAQ 아코디언
══════════════════════════════════════════════ */
.bh-faq-item { border-bottom: 1px solid #f3f4f6; }
.bh-faq-q {
  width: 100%; background: none; border: none; padding: 20px 0; text-align: left; cursor: pointer;
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between;
  gap: 16px; font-size: 14px; font-family: 'Noto Sans KR', sans-serif; color: var(--bh-text); font-weight: 500;
}
.bh-faq-q:hover { color: var(--bh-navy); }
.bh-faq-a { display: none; padding: 0 0 20px; font-size: 14px; color: var(--bh-muted); line-height: 1.75; font-family: 'Noto Sans KR', sans-serif; }
.bh-faq-a.bh-open { display: block; }

/* ══════════════════════════════════════════════
   로그인/회원가입 카드
══════════════════════════════════════════════ */
.bh-auth-wrap {
  min-height: 100vh; padding-top: 80px; background: var(--bh-gray);
  display: -webkit-box; display: -ms-flexbox; display: flex;
  -webkit-box-align: center; -ms-flex-align: center; align-items: center;
  -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center;
  padding-bottom: 60px;
}
.bh-auth-card { background: #fff; padding: 48px 40px; width: 100%; max-width: 480px; -webkit-box-shadow: 0 2px 16px rgba(0,0,0,.06); box-shadow: 0 2px 16px rgba(0,0,0,.06); }

/* ══════════════════════════════════════════════
   마이페이지
══════════════════════════════════════════════ */
.bh-mp-wrap { max-width: 960px; margin: 0 auto; padding: 32px 24px; }
.bh-mp-profile-card { background: #fff; border: 1px solid var(--bh-border); padding: 32px; margin-bottom: 24px; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 24px; }
.bh-mp-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--bh-navy); display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; color: #fff; font-size: 22px; font-family: 'Noto Serif KR', serif; -ms-flex-negative: 0; flex-shrink: 0; }
.bh-mp-avatar img { width: 60px; height: 60px; border-radius: 50%; -o-object-fit: cover; object-fit: cover; }
.bh-mp-tabs { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 4px; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-bottom: 24px; }
.bh-mp-tab { padding: 8px 16px; font-size: 13px; font-family: 'Noto Sans KR', sans-serif; border: 1px solid var(--bh-border); text-decoration: none; color: var(--bh-muted); background: #fff; -webkit-transition: all .15s; transition: all .15s; }
.bh-mp-tab:hover, .bh-mp-tab.bh-active { background: var(--bh-navy); border-color: var(--bh-navy); color: #fff; }
.bh-mp-content { background: #fff; border: 1px solid var(--bh-border); padding: 24px; }

/* ══════════════════════════════════════════════
   게시글 본문
══════════════════════════════════════════════ */
.bh-post-body { font-size: 14px; line-height: 1.9; color: #374151; font-family: 'Noto Sans KR', sans-serif; }
.bh-post-body img { max-width: 100%; height: auto; }
.bh-post-body p { margin: 0 0 16px; }

/* ══════════════════════════════════════════════
   애니메이션
══════════════════════════════════════════════ */
@-webkit-keyframes bh-fade-up { from { opacity: 0; -webkit-transform: translateY(20px); transform: translateY(20px); } to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); } }
@keyframes bh-fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.bh-fade-up { -webkit-animation: bh-fade-up .6s ease forwards; animation: bh-fade-up .6s ease forwards; }

/* 스크롤바 */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--bh-navy); border-radius: 3px; }

/* ══════════════════════════════════════════════
   반응형
══════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .bh-room-card { width: calc(50% - 12px); }
  .bh-offer-left { width: 100%; }
  .bh-gal-item { width: calc(33.333% - 6px); }
}
@media (max-width: 640px) {
  .bh-hero h1 { font-size: 2.2rem; }
  .bh-page-hero h1 { font-size: 1.875rem; }
  .bh-room-card { width: 100%; }
  .bh-gal-item { width: calc(50% - 4px); }
  .bh-bookbar-wrap { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; }
  .bh-bookbar-field { border-right: none; border-bottom: 1px solid var(--bh-border); }
  .bh-bookbar-btn { padding: 16px 24px; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; }
  .bh-auth-card { padding: 32px 24px; }
  .bh-footer-brand { width: 100%; }
}
