/* #region QUOTE */

#bookingIntro {
	background-color: var(--color-neutral-1);
	margin-top: 2rem;
}

#bookingIntro p {
	font-size: 1.2rem;
	line-height: 2rem;
	font-weight: 600;
}

section#quoteRequest,
section#quoteResult {
	background-color: var(--color-neutral-3);
	padding: 3rem 3rem 2rem 3rem;
	display: block;
}

section#quoteRequest form {
	max-width: 710px;
	margin: auto;
}

section#quoteRequest {
	padding-top: 2rem;
}

#instantQuote {
	background-image: url(/images/arrow-orange-01.svg);
	background-size: contain;
	background-repeat: no-repeat;
	padding: 0;
	padding-left: 2rem;
	display: inline-block;
	transform: rotate(7deg);
	height: 3.2rem;
	position: relative;
	top: -3rem;
	left: -4rem;
}

#instantQuote h1 {
	font-family: var(--font-family-fancy-heading);
	font-size: 2rem;
	margin-bottom: 1rem;
	display: block;
	padding: 0;
	margin: 0;
	text-shadow: none;
	min-width: 50vw;
}

p#quoteRequestDates,
p#quoteRequestGuests,
p#programmeSelection {
	display: flex;
	justify-content: space-between;
	padding: 1rem;
}


p#quoteRequestDates label,
p#quoteRequestGuests label,
p#programmeSelection label {
	font-family: var(--font-family-body);
	color: var(--color-primary-1);
	font-size: 0.8rem;
	font-weight: 600;
}

p#quoteRequestDates label:last-of-type {
	margin-left: 2rem;
}

p#quoteRequestGuests input {
	width: 3rem;
}

p#quoteRequestGuests label {
	display: flex;
	align-items: flex-start;
}

p#quoteRequestGuests span {
	display: block;
}

p#quoteRequestGuests span em,
p#toddlers {
	font-size: 0.6em;
	line-height: 0.8rem;
	display: block;
	opacity: 0.6;
}

p#toddlers {
	width: 100%;
	text-align: center;
	margin-bottom: 1.5rem;
}

p#programmeSelection {
	width: 12rem;
	margin: auto auto;
}

#programmeDescription {
	width: 100%;
	text-align: center;
	font-size: 0.8rem;
	color: var(--color-primary-1);
}

#programmeDescription p {
	padding: 0;
	margin: 0;
}

#getQuoteButton,
#bookButton button {
	width: max-content;
	padding: 0.5rem 1rem;
	background-color: var(--color-accent-2);
	display: block;
	margin: 3rem auto 0 auto;
}

#getQuoteButton a,
#bookButton button {
	color: white;
	text-decoration: none;
	font-weight: 600;
	letter-spacing: 1.2px;
	border: none;
	cursor: pointer;
	margin-top: 0;
	font-size: 0.7rem;
}


p#quoteRequestDates label input,
p#quoteRequestDates label select,
p#quoteRequestGuests label input,
p#programmeSelection label input {
	margin-right: 0.5rem;
	margin-left: 0.5rem;
}

section#quoteResult {
	background-color: var(--color-neutral-1);
	text-align: center;
	margin-top: 100px;
}

section#quoteResult #duration {
	font-size: 0.8rem;
	font-style: italic;
}

section#quoteResult #priceSummary,
section#quoteResult #duration span {
	font-size: 1.3rem;
	line-height: 1.5rem;
	font-weight: 800;
	font-style: normals;
}


section#quoteResult #contactDetails {
	font-size: 0.8rem;
	font-style: italic;
	margin-top: 3rem;

}

section#quoteResult hgroup.streakline {
	max-width: 450px;
	margin-top: -120px;
	transform: rotate(-2deg);
}


/* #endregion */

/* #region USER DETAILS */

form input,
form textarea {
	padding: 0.5vw;
}

div.popup-inner section#userForm {
	background: var(--color-neutral-3);
	padding: 3vw;
	opacity: 93%;
}

div.popup-inner {
	position: relative;
}

div.popup-inner form {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: auto;
}

span.formOrganizer {
	display: flex;
	flex-direction: column;
	padding-bottom: 1vw;
}

span.formOrganizer label {
	display: flex;
	width: 100%;
	justify-content: flex-end;
	font-weight: 600;
	font-size: 0.9rem;
}

span.formOrganizer p {
	font-size: 0.6rem;
	font-style: italic;
	width: 100%;
	text-align: right;
	color: var(--color-primary-1);
	margin-bottom: 0;
}

div.popup-inner label input,
div.popup-inner label textarea {
	min-width: 200px;
	max-width: 500px;
	width: 40vw;
	margin-left: 2vw;
}

div.popup-inner label textarea {
	height: 10vw;
}

#goldAndSilver>div {
	border: 1px solid var(--color-primary-1);
}

#goldAndSilver a {
	font-size: 0.7rem;
	line-height: 0.9rem;
}


#bookButton {
	max-width: 80%;
	font-size: 0.8rem;
	margin: auto;
	/* display: flex; */
	flex-direction: column;
	text-align: center;
	gap: 1vw;
	margin-top: 3vw;
	position: absolute;
	bottom: 2rem;
	position: relative;
    width: 500px; /* Set width for reference */
}

.child {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}


How It Works:
- left: 50% moves the element to the middle of its parent's width.
- transform: translateX(-50%) shifts the element left by half of its own width, ensuring perfect horizontal centering.

This method works regardless of the element's width! Let me know if you need adjustments. 🚀

}

#bookButton a {
	font-size: 0.8rem;
}

div.popup-inner section#userForm p {
	margin-top: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: auto;
}


/* #endregion */

/* #region POPUP */
.popup {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99;
	background-color: rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

body>main div.popup-inner {
	background: white;
	padding: 3vw;
	width: 90%;
	min-width: 320px;
	max-width: 750px;
	height: 90%;
	max-height: 800px;
	min-height: 500px;
	overflow-y: auto;
	box-shadow: 0.3rem 0.3rem 1rem rgba(0, 0, 0, 0.2);
}

div.bookingQuote {
	background-color: unset;
	box-shadow: unset;
}

div.bookingQuote div#closeButton {
	margin-top: 100px;
}

div#fadeBackground {
	width: 100vw;
	height: 100vh;
	background-color: rgba(3, 3, 3, 0.6);
	z-index: 1;
	position: fixed;
	top: 0;
	left: 0;
}

div#goldAndSilver {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
}

div#goldAndSilver>div {
	background: white;
	padding: 2vw;
}

div#bookGold,
div#bookSilver {
	width: 46%;
	padding: 1vw;
	position: relative;
    display: flex;
    flex-direction: column;	
}

div#goldAndSilver h1 {
	font-size: 1.5rem;
	font-weight: 900;
}

div#goldAndSilver footer {
	width: 100%;
}


p.programmeDescription {
	font-size: 0.9rem;
}

p.priceDisplay {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 3rem;
    border: 1px solid green;
}

p.priceDisplay span {
	width: 100%;
    font-weight: 600;
}

p.priceDisplay span.originalPrice {
	color: #AAA;
	text-decoration: line-through;
}


/* #endregion */

/* #region BOOKING CONFIRMATION */

main#bookingConfirmation {
	max-width: 1000px;
}

main#bookingConfirmation p {
	text-align: center;
	margin-top: 5vw;
	font-size: 1.1rem;
	font-weight: 500;
}

/* #endregion */
