/* ============================================================
   Yoo Jean Korean Hair Salon — Home page sections
   Info block (hours / address / phone) + social links.
   Both sit inside the 3-column Instagram width so the page reads
   as one column on every screen.
   ============================================================ */

.yj-home {
  --yj-hm-accent: #c9a227;
  --yj-hm-ink: #14110f;
  --yj-hm-muted: #8a8279;
  --yj-hm-line: #e8e2d8;
  --yj-hm-cream: #faf7f2;

  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
  font-family: "PT Serif", Georgia, serif;
  color: var(--yj-hm-ink);
}

/* ---------- Info block ---------- */

.yj-info {
  padding: 44px 0 40px;
  border-top: 1px solid var(--yj-hm-line);
}

.yj-info__title {
  margin: 0 0 26px;
  font-family: Oswald, sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yj-hm-ink);
  text-align: center;
}

.yj-info__title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 12px auto 0;
  background: var(--yj-hm-accent);
}

.yj-info__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.yj-info__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.yj-info__ico {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yj-hm-cream);
  border: 1px solid var(--yj-hm-line);
}

.yj-info__ico svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--yj-hm-accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.yj-info__body { min-width: 0; padding-top: 3px; }

.yj-info__label {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yj-hm-muted);
  margin-bottom: 3px;
}

.yj-info__value {
  display: block;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--yj-hm-ink);
}

.yj-info__value a {
  color: var(--yj-hm-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--yj-hm-line);
  transition: color .2s, border-color .2s;
}

.yj-info__value a:hover {
  color: var(--yj-hm-accent);
  border-color: var(--yj-hm-accent);
}

.yj-info__note {
  display: block;
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--yj-hm-muted);
}

/* Book button under the info block */
.yj-info__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding: 13px 22px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 3px 12px rgba(37, 211, 102, .28);
}

.yj-info__cta:hover {
  background: #1da851;
  transform: translateY(-1px);
}

.yj-info__cta svg { width: 16px; height: 16px; fill: currentColor; }

/* ---------- Social links ---------- */

.yj-social {
  padding: 40px 0 72px;
  border-top: 1px solid var(--yj-hm-line);
  text-align: center;
}

.yj-social__title {
  margin: 0 0 22px;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--yj-hm-muted);
}

.yj-social__row {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.yj-social__link {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--yj-hm-line);
  color: var(--yj-hm-ink);
  text-decoration: none;
  transition: transform .25s cubic-bezier(.4,0,.2,1), border-color .25s,
              color .25s, box-shadow .25s;
}

.yj-social__link svg { width: 22px; height: 22px; fill: currentColor; }

.yj-social__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(20,17,15,.12);
}

/* Brand colours on hover */
.yj-social__link--yt:hover   { color: #ff0000; border-color: #ff0000; }
.yj-social__link--fb:hover   { color: #1877f2; border-color: #1877f2; }
.yj-social__link--ig:hover   { color: #dc2743; border-color: #dc2743; }

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .yj-home { padding: 0 16px; max-width: 100%; }
  .yj-info { padding: 36px 0 32px; }
  .yj-social { padding: 32px 0 56px; }
  .yj-info__value { font-size: 14px; }
  .yj-social__link { width: 46px; height: 46px; }
  .yj-social__link svg { width: 20px; height: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .yj-social__link, .yj-info__cta, .yj-info__value a { transition: none; }
}
