
/* LAYOUT CHÍNH: 2 CỘT */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background-color: #fff;
  color: #111;
}

/* MOBILE: stack dọc */
@media (max-width: 900px) {
  .contact-page {
    grid-template-columns: 1fr;
  }
}

/* TRÁI: ẢNH COVER */
.contact-hero {
  position: relative;
  min-height: 100vh;
  background-color: #000;
  overflow: hidden;
  isolation: isolate;
}

.contact-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: saturate(0.9) brightness(0.6);
}

.contact-hero__content {
  position: absolute;
  z-index: 2;
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  padding: 3rem 2rem 4rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.contact-hero__title {
  font-size: 72px;
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0,0,0,.8);
  margin: 0;
  letter-spacing: 1.5px;
}

/* PHẢI: THÔNG TIN */
.contact-info {
  background-color: #fff;
  color: #111;
  padding: 0px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
  max-width: 520px;
  width: 100%;
  height: 100%;
}

@media (min-width: 901px) {
  .contact-info {
    padding-top: 4rem;
  }
}

.info-block__title {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0 0 1rem;
  color: #111;
  letter-spacing: -0.03em;
}

/* hàng line thông tin */
.info-line {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: 22px;
  color: #111;
  margin: 0 0 .5rem;
}
.info-line .info-text {
  color: #111;
  text-decoration: none;
}
.info-line a.info-text {
  text-decoration: none;
}
.info-line a.info-text:hover,
.info-line a.info-text:focus-visible {
  text-decoration: underline;
}

/* button Show location */
.btn-location {
  appearance: none;
  border: 0;
  border-radius: 25px;
  background-color: #f1ae1a;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  padding: 8px 27px 12px;
  margin-top: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(247,181,0,.4);
  transition: all .18s ease;
  font-weight: 400;
}
.btn-location:hover,
.btn-location:focus-visible {
  background-color: #ffcf3e;
  box-shadow: 0 10px 24px rgba(247,181,0,.6);
  outline: none;
}
.btn-location:active {
  transform: scale(.97);
}

/* giờ mở cửa */
.hours-line {
  font-size: 20px;
  color: #111;
  margin: 0 0 .4rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.hours-line .day {
  font-weight: 500;
  min-width: 5.5rem;
  color: #000;
}

/* SOCIAL ICON LIST */
.social-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 0;
  padding: 0;
}

.social-btn {
  --size: 44px;
  width: var(--size);
  height: var(--size);
  background-color: #f7b500;
  border-radius: .5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(247,181,0,.4);
  transition: all .18s ease;
}
.social-btn:hover,
.social-btn:focus-visible {
  background-color: #ffcf3e;
  box-shadow: 0 10px 24px rgba(247,181,0,.6);
  outline: none;
}
.social-btn:active {
  transform: scale(.96);
}

.icon {
  width: 20px;
  height: 20px;
  fill: #111;
  display: block;
}

/* ACCESSIBILITY FOCUS OUTLINE fallback dark bg */
.btn-location:focus-visible,
.social-btn:focus-visible,
.info-line a.info-text:focus-visible {
  outline: 2px solid #111;
  outline-offset: 2px;
}
@media(max-width:768px){
    .contact-hero__content {
    width: 100%;
    justify-content: center;
}

.contact-hero {
    height: 100%;
    min-height: 100%;
}

.contact-hero__title {
    font-size: 42px;
}

.contact-info {
    padding: 21px 30px;
}
}
@media (max-width: 400px) {
  .info-block__title {
    font-size: 28px;
  }

  .hours-line,
  .info-line {
    font-size: 16px;
  }
}