/* General Section Styling */
.section {
	position: relative;
}

/* Section content layers */
.section .section-center,
.booking-cta,
.booking-form {
	position: relative;
	z-index: 2;
}

/* Booking section with background image */
#booking {
	font-family: 'Montserrat', sans-serif;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	min-height: 100vh;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

/* Background image dark overlay */
#booking::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: 1;
}

/* Container above the overlay */
#booking .container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 900px;
	padding: 20px;
}

/* Booking form */
.booking-form {
	background-color: #fff6;
	padding: 25px 20px;
	box-shadow: 0px 5px 20px -5px rgba(0, 0, 0, 0.3);
	border-radius: 4px;
}

.booking-form .form-group {
	position: relative;
	margin-bottom: 10px;
}

.booking-form .form-control {
	background-color: #ebecee;
	border-radius: 4px;
	border: none;
	height: 40px;
	box-shadow: none;
	color: #3e485c;
	font-size: 14px;
}

.booking-form .form-control::placeholder {
	color: rgba(62, 72, 92, 0.3);
}

.booking-form input[type="date"].form-control:invalid {
	color: rgba(62, 72, 92, 0.3);
}

.booking-form select.form-control {
	appearance: none;
}

.booking-form select.form-control + .select-arrow {
	position: absolute;
	right: 0;
	bottom: 4px;
	width: 32px;
	line-height: 32px;
	height: 32px;
	text-align: center;
	pointer-events: none;
	color: rgba(62, 72, 92, 0.3);
	font-size: 14px;
}

.booking-form select.form-control + .select-arrow::after {
	content: '\279C';
	transform: rotate(90deg);
	display: block;
}

.booking-form .form-label {
	display: inline-block;
	color: #0d1014;
	font-weight: 700;
	margin-bottom: 6px;
	margin-left: 7px;
}

.booking-form .submit-btn {
	display: inline-block;
	color: #fff;
	background-color: #ff1616;
	font-weight: 700;
	padding: 14px 30px;
	border-radius: 4px;
	border: none;
	transition: 0.2s all;
}

.booking-form .submit-btn:hover,
.booking-form .submit-btn:focus {
	opacity: 0.9;
}

/* Call to action area */
.booking-cta {
	margin-top: 0px;
	margin-bottom: 30px;
}

.booking-cta h1 {
	font-size: 46px;
	text-transform: uppercase;
	color: #fff;
	font-weight: 700;
}

.booking-cta p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.8);
}

/* Marquee styling */
marquee {
	height: fit-content;
	color: white;
	font-size: larger;
	font-weight: 600;
}

/* Type header style */
#type {
	text-transform: uppercase;
	font-weight: 900;
	border-left: 10px solid #fec500;
	padding-left: 10px;
	margin-bottom: 30px;
}

.participant-slider {
	margin-top: 10px;
}
.participant-slider input[type="range"] {
	width: 100%;
	accent-color: #c20a4e;
}

/* Enhanced Checkbox Styles */
.form-check {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.form-check-input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 24px;
	height: 24px;
	border: 2px solid #ff9800;
	border-radius: 4px;
	outline: none;
	cursor: pointer;
	margin-right: 10px;
	position: relative;
	transition: all 0.2s ease;
	flex-shrink: 0;
}

.form-check-input:checked {
	background-color: #ff9800;
	border-color: #ff9800;
}

.form-check-input:checked::after {
	content: "✓";
	position: absolute;
	color: white;
	font-size: 16px;
	font-weight: bold;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.form-check-label {
	display: inline-flex;
	align-items: center;
	font-size: 1.4rem;
	cursor: pointer;
	margin-left: 5px;
	white-space: nowrap;
}

/* Manager Approval Section - Keeps checkbox and text on same line */
.approval-checkbox .form-group {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}

.approval-checkbox label {
	display: flex;
	align-items: center;
	margin: 0;
	white-space: nowrap;
}

.approval-checkbox p {
	display: inline;
	margin: 0 10px 0 0;
	white-space: normal;
}

#managerApproval {
	width: 24px;
	height: 24px;
	min-width: 24px;
	margin-left: 10px;
	flex-shrink: 0;
}

/* Mobile Optimization */
@media (max-width: 768px) {
	.form-check-input {
		width: 28px;
		height: 28px;
	}

	#managerApproval {
		width: 28px;
		height: 28px;
		min-width: 28px;
	}

	.form-check-label {
		font-size: 1.1rem;
		white-space: normal;
	}

	.approval-checkbox label {
		flex-wrap: wrap;
	}

	.approval-checkbox p {
		white-space: normal;
		margin-right: 0;
		margin-bottom: 10px;
	}
}

/* Hover Effects */
.form-check-input:hover {
	transform: scale(1.1);
	box-shadow: 0 0 5px rgba(255, 152, 0, 0.5);
}

/* Focus State */
.form-check-input:focus {
	box-shadow: 0 0 0 0.25rem rgba(255, 152, 0, 0.25);
}