/* booking-request-local-concierge.css */

/* 컨테이너 전체 정렬 & 최대 폭 */
.booking-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #0A0A0F;
  padding: 2rem;
  border-radius: 0.75rem;
  color: #FFFFFF;
}

/* 제목 + 안내문 전체 가운데 정렬 */
.booking-wrapper h2,
.booking-wrapper p {
  text-align: center;
}

/* 이메일 하이퍼링크 스타일 */
.booking-wrapper p strong a {
  color: #E5C07B;
  text-decoration: underline;
}

/* 입력 라벨 스타일 */
.booking-wrapper label {
  display: block;
  margin: 1rem 0 0.5rem;
  color: #FFFFFF;
  font-weight: bold;
}

/* 입력 필드 공통 */
.booking-wrapper input[type="text"],
.booking-wrapper input[type="email"],
.booking-wrapper input[type="url"],
.booking-wrapper textarea {
  width: 100%;
  padding: 0.625rem;
  background-color: #FFFFFF;   /* 배경 흰색 */
  color: #000000;              /* 입력값 검정 */
  border: 1px solid #CCCCCC;   /* 기본 테두리 은은한 회색 */
  border-radius: 0.375rem;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

/* placeholder 좀 더 진한 회색 */
.booking-wrapper ::placeholder {
  color: #777777;
  opacity: 1; /* 크로스브라우저 호환 */
}

.booking-wrapper input[type="text"]:focus,
.booking-wrapper input[type="email"]:focus,
.booking-wrapper input[type="url"]:focus,
.booking-wrapper textarea:focus {
  border-color: #C8A15D; /* 주퍼라운지 테마 색상 */
  outline: none; /* 기본 outline 제거 */
}

/* 버튼 행 & 버튼 스타일 */
.booking-wrapper .button-row {
  text-align: center; /* 버튼 가운데 정렬 */
  margin-top: 2rem;
}

.booking-wrapper button {
  background-color: #C8A15D;
  color: #0A0A0F;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.booking-wrapper button:hover {
  background-color: #E5C07B;
}

/* 이메일 하이퍼링크 인라인 직접 스타일링 보완 */
.booking-wrapper a {
  color: #E5C07B;
  text-decoration: underline;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
  .booking-wrapper {
    padding: 1.5rem 1rem;
  }

  .booking-wrapper h2 {
    font-size: 1.5rem;
  }

  .booking-wrapper p {
    font-size: 0.95rem;
  }

  .booking-wrapper input,
  .booking-wrapper textarea {
    font-size: 13px;
    padding: 0.55rem;
  }

  .booking-wrapper button {
    width: 100%;
    font-size: 1rem;
  }
}
