/* =====================================================================
   BONDS HOTEL WIDGETS — styles
   ===================================================================== */

* { box-sizing: border-box; }

/* ---------- SLIDER ---------- */
.bh-slider {
	position: relative;
	width: 100%;
	min-height: 480px;
	overflow: hidden;
	background: #2b2521;
}

.bh-slider-full-width {
	width: 100vw;
	max-width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.bh-slides {
	position: relative;
	width: 100%;
	height: 100%;
}

.bh-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 1s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bh-slide.is-active {
	opacity: 1;
	visibility: visible;
}

.bh-slide-overlay {
	position: absolute;
	inset: 0;
}

.bh-slide-content,
.bh-slide-content h2,
.bh-slide-content p {
	color: #ffffff;
}

.bh-slide-content {
	position: relative;
	z-index: 1;
	max-width: 760px;
	padding: 0 24px;
	text-align: center;
	margin: 0 auto;
}

.bh-slide-content h2 {
	font-size: clamp(28px, 5vw, 54px);
	margin: 0 0 16px;
}

.bh-slide-content p {
	font-size: clamp(15px, 2vw, 19px);
	margin: 0 0 26px;
}

.bh-slide-btn {
	display: inline-block;
	background: #a9812f;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	padding: 14px 34px;
	border-radius: 4px;
	transition: transform 0.2s ease;
}

.bh-slide-btn:hover {
	transform: translateY(-2px);
}

.bh-slider-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	border: none;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
}

.bh-slider-prev { left: 24px; }
.bh-slider-next { right: 24px; }

.bh-slider-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	gap: 10px;
}

.bh-slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: transparent;
	cursor: pointer;
	padding: 0;
}

.bh-slider-dot.is-active {
	background: #fff;
}

/* ---------- BOOKING FORM ---------- */
.bh-booking-card {
	max-width: 760px;
	margin: 0 auto;
}

.bh-booking-title {
	margin: 0 0 24px;
	font-size: 26px;
	text-align: center;
}

.bh-booking-form {
	background: #ffffff;
	border-radius: 12px;
	padding: 32px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bh-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.bh-booking-row {
	display: flex;
	gap: 20px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}

.bh-booking-group {
	flex: 1 1 220px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.bh-booking-group-full {
	margin-bottom: 20px;
}

.bh-booking-label {
	font-size: 13px;
	font-weight: 600;
	color: #333;
}

.bh-booking-input,
.bh-booking-select,
.bh-booking-textarea {
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	border: 1px solid #d8d3ca;
	border-radius: 6px;
	font-family: inherit;
	transition: border-color 0.2s ease;
	background: #fff;
}

.bh-booking-input:focus,
.bh-booking-select:focus,
.bh-booking-textarea:focus {
	outline: none;
	border-color: #a9812f;
}

.bh-booking-textarea {
	resize: vertical;
}

.bh-booking-submit {
	width: 100%;
	background: #a9812f;
	color: #fff;
	border: none;
	padding: 15px 20px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 6px;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.bh-booking-submit:hover {
	transform: translateY(-1px);
}

.bh-booking-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.bh-booking-message {
	margin-top: 14px;
	font-size: 14px;
	text-align: center;
	min-height: 20px;
}

.bh-booking-message.is-success {
	color: #1f7a3d;
}

.bh-booking-message.is-error {
	color: #b3261e;
}

@media (max-width: 600px) {
	.bh-booking-form { padding: 22px; }
	.bh-booking-row { flex-direction: column; gap: 14px; }
}

/* ---------- NEWSLETTER ---------- */
.bh-newsletter {
	background: #2b2521;
	color: #ffffff;
	border-radius: 12px;
	padding: 36px;
	text-align: center;
	max-width: 640px;
	margin: 0 auto;
}

.bh-newsletter h3 {
	margin: 0 0 10px;
	font-size: 24px;
}

.bh-newsletter p {
	margin: 0 0 22px;
	opacity: 0.85;
	font-size: 15px;
}

.bh-newsletter-row {
	display: flex;
	gap: 10px;
}

.bh-newsletter-stacked .bh-newsletter-row {
	flex-direction: column;
}

.bh-newsletter-input {
	flex: 1 1 auto;
	padding: 13px 16px;
	font-size: 15px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 6px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-family: inherit;
}

.bh-newsletter-input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.bh-newsletter-input:focus {
	outline: none;
	border-color: #a9812f;
}

.bh-newsletter-submit {
	background: #a9812f;
	color: #ffffff;
	border: none;
	padding: 13px 26px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 6px;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.2s ease;
}

.bh-newsletter-submit:hover {
	transform: translateY(-1px);
}

.bh-newsletter-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.bh-newsletter-message {
	margin-top: 12px;
	font-size: 13px;
	min-height: 18px;
}

.bh-newsletter-message.is-success { color: #7fd99a; }
.bh-newsletter-message.is-error { color: #ff9a94; }

@media (max-width: 480px) {
	.bh-newsletter-row { flex-direction: column; }
}
