@charset "utf-8";
/* CSS Document */

.section-contaner {
	max-width:700px;
	padding: 0 30px;
	text-align: center;
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

h1 {
	line-height: 3rem;
}

.p1 {
	color: var(--site-color-golden-letters);
}

.p2 {
	padding-top: 10px;
}

form {
	padding-top: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#session {
	display: block;
	font-family: NewRock;
	font-size: 1em;
	color: #fff;
	text-transform: capitalize;
	padding-bottom: 5px;
}

label {
	display: block;
	font-family: NewRock;
	font-size: 1em;
	color: #fff;
	text-transform: capitalize;
	padding-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="file"],
input[type="date"],
input[type="time"],
textarea, #session {
	width: 100%;
	padding: 8px 10px;
	font-family: Roboto;
	font-size: 1rem;
	text-align: left;
	color: #fff;
	background: rgba(0,0,0,0.7);
	border: 0;
	border: 1px solid #fff;
	border-radius: 10px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
textarea:focus {
	border: 1px solid var(--site-color-link-border-01);
}

#phone {
	width: 300px;
}

input[type="checkbox"] {
	appearance: checkbox;
}

.sidebyside {
	width: 100%;
	display: flex;
}

.shoot_details {
	width: 100%;
	padding: 10px;
	display: flex;
}

.input-field {
	padding: 0 30px;
}

.items {
	width: 100%; 
	padding: 10px 5px;	
}

.shoot_budget {
	position: relative;
	padding: 10px 0;
	display: inline-block;
	width: 100%;
	max-width: 400px;
}

.budget {
	width: 300px;
	padding: 10px;
	font-family: Roboto;
	font-size: 1rem;
	text-align: center;
	color: #fff;
	background-color: #000100;
	border: 0;
	border: 1px solid #fff;
	border-radius: 10px;
	cursor: pointer;

	/* CRITICAL: Removes the native browser arrow */
	-webkit-appearance: none;
  	-moz-appearance: none;
  	appearance: none;
}

/* Focus state ring */
.budget:focus {
	outline: none;
	border: 1px solid var(--site-color-link-border-01);
}

/* Creates a custom down-arrow using CSS pseudo-elements */
.shoot_budget::after {
  	content: '';
    position: absolute;
 	right: 60px;
  	top: 55px;
  	transform: translateY(-50%); /* Centers vertically *
  
/* Draws a small CSS arrow triangle */
  	width: 20px;
  	height: 15px;
  	background-color: var(--site-color-golden-letters); /* Change arrow color easily */
  	clip-path: polygon(100% 0, 0 0, 50% 100%); /* Draws downward triangle */
  
/* Prevents the arrow icon from blocking clicks to the select field */
  	pointer-events: none; 
}

/* Changes arrow color when the field is focused */
.shoot_budget:focus-within::after {
  	background-color: var(--site-color-link-border-01);
}

/* Style individual options inside the open panel */
select.budget option {
  	color: #00000;
}

.shoot_details {
	width: 100%;
	padding: 10px;
	display: flex;
	flex-wrap: wrap;	
}

.shoot_details_checkbox {
	width: 100%;
	padding: 10px 0;
	display: flex;
	justify-content: space-evenly;
}

.checkbox {
	width: fit-content;
	height:20px;	
	display: flex;
	justify-content: center; 	
	cursor: pointer;
}

.shoot_details_header {
	width: 100%;
}

.booking {
	width: 100%;
	display: flex;
	align-items: center; 
	justify-content: center;
}

/*Customizing the inner calendar icon start*/
input[type="date"]{
	color-scheme: dark;
	filter: none;
}

.dark-mode input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1); 
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
	filter: none;
	background-color: #f72400;
}
/*Customizing the inner calendar icon end*/

/*Customizing the inner time icon start*/
input[type="time"] {
	color-scheme: dark;
}

.dark-mode input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1); 
}

input[type="time"]::-webkit-calendar-picker-indicator:hover {
	filter: none;
	background-color: #f72400;
}
/*Customizing the inner time icon end*/

.booking_info {
	line-height: 30px;
	padding:  0 10px;
}

.text_box {
	width:100%;
	padding-top: 20px;
}

textarea {
	height: 100px;
}

.text_box_address p {
	display: block;
	font-family: NewRock;
	font-size: 1em;
	color: #fff;
	margin-bottom: 5px;
	text-transform: capitalize;
	padding-bottom: 5px;
}

.text_box_msg {
	padding-top: 10px;
}

.cb_container {
	width: 100%;
	display: flex;
	padding: 10px;
	justify-content: center;
	align-items: flex-start;
}


.cb_container p {
	width: 250px;
	color: var(--site-color-golden-letters);
	
}

button {
	width: fit-content;
	margin: 0 30px;
	font-family: link_font;
	font-size: 1.25em;	
	text-align: center;
	letter-spacing: 2px;
	color: var(--site-color-golden-letters);
	background: #000;
	padding: 10px;
	text-transform: capitalize;
	border-radius: 5px;
	cursor: pointer;
}

button:hover {
	background: var(--site-color-hover-01);
	color: #000;
}


.footer-main {
	margin-top: 530px;
}

/* Mobile Layout: 600px and below. */
@media only screen and (max-width: 600px){

	.footer-main {
		margin-top: 600px;
	}
	
	.section-contaner {
		width: 450px;
		padding:0 60px;
	}

	.section-intro-header{
		width: 350px;
	}
	
	.sidebyside {
		display: flex;
		flex-wrap: wrap;	
	}

	.sidebyside:nth-child(1) {
		margin-top: -10px;
	}
	
	input[type="text"],
	input[type="email"],
	input[type="file"],
	textarea {
		width: 300px;
	}

	.shoot_details_checkbox {
		width: 370px;
		padding: 10px;
		margin-top: 10px;
		flex-wrap: wrap;
		justify-content: center;
	}
	
	.checkbox {
		padding: 0 10px;
	}	
	
	.booking {
		width: 400px;
		margin-top: -10px;
		display: flex;
		flex-wrap: wrap;
	}

	.booking_info:nth-child(1) {
		width: 300px;
		padding-bottom: 10px;
	}

	.footer-main {
		margin-top: 700px;
	}
	
}
