/* Resetting default margin and padding for all elements */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	margin: 0px;
	padding: 0px;
	background: #000000;
}

body {
	margin: 0px;
	padding: 0px;
	font-family: 'montserratregular';
	color: white;
	background-color: black;
	line-height: 1.6;
}

/* Header styles */
h1, h2, h3, h4, h5, h6 {
	font-family: 'montserratbold';
	color: white;
}

/* Link styles */
a {
	color: inherit;
	text-decoration: none;
}


/* Basic styles for forms */
input[type="text"],
input[type="email"],
button,
textarea {
	font-family: 'montserratregular';
	color: white;
	/* Add more styles as needed */
}

/* Set each section to fit the viewport height */
section {
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	scroll-behavior: smooth; /* For smooth scrolling */
}
/* Adjust the sizes of the elements within the menu section */
.menu-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100vh;
}

.menu-content {
	width: 80%;
	max-width: 1200px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

h1 {
	font-size: 10vh; /* 20% of viewport height */
	margin-bottom: 50px;
	line-height: 10vh;
	text-align:left;
}

/* Structure the options grid into 3 columns and 2 rows */
.options-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* Styling for the plus icon */
.plus-icon {
	font-size: 5em; /* Adjust size as needed */
	color: #f0841c;
	margin-right: 40px;
	transition: transform 0.3s ease;
}

	.plus-icon.white {		
		color: white;
	}

	.plus-icon.autorotate:hover {
		transform:initial;
	}

	.plus-icon.autorotate {
		transition: transform 0.3s ease;
		animation: autorotate 1s infinite ease-in-out alternate-reverse;
	}

	/* Hover animation for the plus icon */
	.plus-icon:hover {
		transform: rotate(90deg);
	}

.floating-icon-left {
	position: relative;
	height: 0px;
	overflow: visible;
	font-size: 1em;
	left: -38%;
	bottom: -41%;
}

.floating-icon-right {
	position: relative;
	height: 0px;
	overflow: visible;
	font-family: 'montserratregular';
	font-weight: lighter;
	font-size: 0.5em;
	right: -37.5%;
	bottom: -55%;
}

.big-numbers {
	position: relative;
	left: -38%;
	bottom:-15%;
	width: 100%;
	text-align: center;
	font-family: 'montserratbold';
	font-weight: bold;
	font-size: 32em;
	color: #f0841c;
	height:0px;
	overflow:visible;
}

@keyframes autorotate {
	0% {
		transform: initial;
	}

	100% {
		transform: rotate(180deg);
	}
}

/* Adjust the grid item size */
.grid-item {
	display: flex;
	justify-content: left;
	align-items: center;
}

.option {
	background-color: black;
	color: white;
	padding: 20px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	transition: transform 0.3s ease;
	text-align: left;
	cursor:pointer;
}

	.option h2 {
		font-family: 'montserratregular';
		font-weight: lighter;
		font-size: 2em;
	}

	/* Hover effect */
	.option:hover {
		transform: scale(1.1);
	}

/* Style for the option title */
h2 {
	margin: 0; /* Remove default margins */
}

/* Style for the contact content */
#contact {
	width:100%;
}

.contact-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	text-align: center;
	width:100%;
}
.align-title{
	text-align:center;
	width:100%;
	display:flex;
	flex-direction:row;
	justify-content:center;
	margin-top:-50px;
	margin-bottom:20px;
}
.align-title h2 {
	color: #f0841c;
	font-size: 2.1em;
	text-align: left;
	max-width: 40%;
	margin-left:25%;
}

#contactForm {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* Adjust spacing for the form groups */
.form-group {
	margin-bottom: 20px;
	margin-left: 30%;
	max-width: 40%;
}


/* Style for the contact form */
.contact-section {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	color: darkorange;
	text-align: center;
}

/* Style for the input fields */
.styled-input {
	border: none;
	border-bottom: 2px solid darkorange;
	background-color: transparent;
	padding: 10px;
	margin: 10px;
	width: 250px; /* Adjust width as needed */
	outline: none;
	transition: border-bottom 0.3s;
}

	.styled-input:focus {
		border-bottom: 2px solid orange;
	}

/* Style for the button */
button {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	color: white;
	cursor: pointer;
	transition: background-color 0.3s;
}

	button:hover {
		background-color: orange;
	}


/* Style for the decorative line */
.decorative-line {
	position: relative;
	width: 100%;
}

	.decorative-line:before {
		content: '';
		display: block;
		border-top: 0px solid #f0841c; /* Adjust line properties as needed */
		width: 100%;
		position: absolute;
		top: 50%;
		z-index: 1;
	}

/* Style for the animated dots */
.dots {
	display:flex;
	flex-direction:row;
	justify-content:end;
	margin-right:10vw;
}

	.dot1 {
		animation: dot1 1s infinite backwards;
	}
	.dot2 {
		animation: dot2 1s infinite alternate-reverse;
	}

.dot {
	font-family: Roboto;
	font-size:6em;
}

@keyframes dot1 {
	0% {
		color: transparent;
	}

	50% {
		color: white;
	}

	100% {
		color: transparent;
	}
}

@keyframes dot2 {
	0% {
		color: white;
	}

	50% {
		color: transparent;
	}

	100% {
		color: white;
	}
}

@keyframes dot3 {
	0%, 25% {
		color: white;
	}

	25%, 50% {
		color: rgb(255 255 255 / 0.6);
	}

	50%, 75% {
		color: rgb(255 255 255 / 0.3);
	}

	75%, 100% {
		color: transparent;
	}
}

@keyframes dot4 {
	0%, 25% {
		color: rgb(255 255 255 / 0.6);
	}

	25%, 50% {
		color: rgb(255 255 255 / 0.3);
	}

	50%, 75% {
		color: transparent;
	}

	75%, 100% {
		color: white;
	}
}


/*VIDEOS*/
#video-bg {
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
}

video {
	width:100%;
	height:auto;
}


/*responsive*/

@media screen and (max-width: 500px) {
	h1 {
		font-size: 10vw; /* 20% of viewport height */
		line-height: 10vw;
	}

	.options-grid {
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.dots {
		margin-top: 150px;
	}

	.align-title{
		margin-top:-50px;
		margin-bottom:10px;
	}

	.align-title h2 {
		margin-left: 20px;
		max-width: 80%;
		font-size: 1.5em;
	}

	.big-numbers{
		font-size:18em;
		bottom:-32%;
		left:-30%;
	}

	.form-group {
		margin-left: 50px;
	}
}

@media screen and (max-width: 1000px) {
	h1 {
		font-size: 10vw; /* 20% of viewport height */
		line-height: 10vw;
	}

	.big-numbers {
		font-size: 18em;
		bottom: -45%;
		left: -20%;
	}

}