/* Native dialog backdrop */
.booking-modal-dialog::backdrop {
	background-color: rgba(30, 35, 46, 0.5);
	-webkit-backdrop-filter: blur(4px);
	backdrop-filter: blur(4px);
}

.booking-modal-dialog {
	border: none;
	padding: 0 !important;
	margin: auto;
	max-width: min(1032px, calc(100vw - 2rem));
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
	color: #1e2330;
	background: #fff;
}

.booking-modal-dialog:focus {
	outline: none;
}

.booking-modal__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	min-height: min(420px, 70vh);
}

.booking-modal__col--image {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	/* Background image URL is set via inline style from PHP settings */
}

.booking-modal__col--content {
	position: relative;
	padding: 2rem 5rem;
	background: #faf9f7;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.booking-modal__close {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	width: 2.25rem;
	height: 2.25rem;
	border: none;
	background: transparent;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	color: #5c6478;
	border-radius: 4px;
}

.booking-modal__close:hover,
.booking-modal__close:focus-visible {
	background: rgba(30, 35, 46, 0.08);
	color: #1e2330;
}

.booking-modal__col--content h2 {
	margin: 0 0 1.25rem;
	font-size: 40px;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
}

.booking-modal__col--content h2 em {
	font-style: italic;
	font-weight: 500;
	line-height: 24px;
}

.booking-modal__actions {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.booking-modal__actions a {
	display: block;
	text-align: center;
	padding: 0.75rem 1rem;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	border-radius: 4px;
	border: 2px solid #1e2330;
	color: #1e2330;
	background: #fff;
	transition: background 0.15s ease, color 0.15s ease;
}

.booking-modal__actions a:hover,
.booking-modal__actions a:focus-visible {
	background: #1e2330;
	color: #fff;
}

/* Experience Arkaba */
body.booking-modal-site-arkaba .booking-modal__col--content h2 em {
	color: #f08229;
}

body.booking-modal-site-arkaba .booking-modal__actions a {
	background-color: #d2b48c;
	color: #fff;
	border-color: #d2b48c;
}

body.booking-modal-site-arkaba .booking-modal__actions a:hover,
body.booking-modal-site-arkaba .booking-modal__actions a:focus-visible {
	background-color: #c4a67f;
	color: #fff;
	border-color: #c4a67f;
}


@media (max-width: 720px) {
	.booking-modal__inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.booking-modal__col--image {
		min-height: 200px;
	}

	.booking-modal__col--content {
		padding: 2rem;
	}

	.booking-modal__col--content h2 {
		font-size: 30px;
		line-height: 1;
	}
}
