* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background-color: rgb(11, 9, 9);
	min-height: 100%;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

section {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 110px 100px;
}

header {
	position: absolute;
	background-color: #000;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #fff;
	padding: 35px 100px 25px;
}

header a {
	text-transform: capitalize;
	font-weight: 900;
}

header h2 {
	text-transform: uppercase;
}

header .nav {
	display: flex;
}

header .nav li {
	margin: 0 15px;
}

header .nav li:first-child {
	margin-left: 0;
}

header .nav li:last-child {
	margin-right: 0;
}

.box {
	position: relative;
	justify-content: center;
	min-height: 100vh;
	color: #fff;
	text-align: center;
}

.box video {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}


.box h1 {
	margin-bottom: 15px;
	font-size: 65px;
	text-transform: uppercase;
	text-shadow: 0 2px;
	text-shadow: 0 2px 2px rgb(0, 0, 0, 0.5);
}

.box h3 {
	font-size: 25px;
	margin-bottom: 40px;
}

.box a.boxBtn {
	padding: 15px 35px;
	background: transparent;
	border-radius: 50px;
	color: #fff;
	text-transform: uppercase;
	border: #fff solid 4px;
	transition: all 0.5s;
}

.box a.boxBtn:hover {
	background: #fff;
	color: #000;
}

.footer {
	background-color: #000;
	position: inherit;
	padding: 0;
}

.social {
	text-align: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

.social a {
	font-size: 20px;
	display: inline-block;
	color: whitesmoke;
	width: 25px;
	padding: 10px;
	border-radius: 8px;
}

.social a:hover {
	background-color: skyblue;
}

.footer ul li {
	display: inline;
	padding: 10px 10px;
	color: whitesmoke;
	margin: 0;
}

.author {
	text-align: left;
	padding-bottom: 30px;
	color: whitesmoke;
}

/* info page */

.card-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 100px;
}

.card {
	width: 325px;
	background-color: #f4f4f4;
	border-radius: 10px;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	transition: .6s;
}


.card:hover {
	transform: translateY(-20px);
}

.card img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.card-content {
	padding: 20px;
}

.card-content h1 {
	font-size: 24px;
	margin-bottom: 10px;
}

.card-content p {
	font-size: 15px;
	color: #666;
	margin-bottom: 20px;
}

.card-button {
	display: inline-block;
	background-color: #000;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	padding: 8px 16px;
}

/* gallery page */

.container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 40px 20px 0 20px;
}


.container .img-box {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.container .img-box .dream {
	display: flex;
	flex-direction: column;
	width: 32.5%;
}

.container .img-box .dream img {
	width: 100%;
	padding-bottom: 15px;
	border-radius: 15px;
	overflow: hidden;
	transition: .6s;
}

.container .img-box .dream img:hover {
	transform: translateY(-20px);
}

/* Contact Page */

.box img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.contact-form {
	width: 85%;
	max-width: 600px;
	background: #000000cc;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 30px 40px;
	border-radius: 8px;
	text-align: center;
}

.form {
	border: 1px solid #a9a9a9;
	margin: 7px 0px;
	padding: 6px 20px;
	border-radius: 8px;
}

.contact-form h1 {
	font-weight: 900;
	margin-top: 0px;
	text-transform: uppercase;
	text-shadow: 0 2px;
	text-shadow: 0 2px 2px rgb(0, 0, 0, 0.5);
}

.form label {
	font-size: 13px;
	color: #fff;
	display: block;
	text-align: left;
	text-transform: uppercase;
}

.form input,
.form textarea {
	width: 100%;
	font-size: 19px;
	margin-top: 5px;
	border: none;
	background: none;
	outline: none;
	color: #fff;
}


.button {
	width: 50%;
	display: inline-block;
	background: transparent;
	border-radius: 50px;
	color: #fff;
	text-transform: uppercase;
	border: #a9a9a9 solid 1px;
	transition: all 0.5s;

}

.button:hover {
	background: #fff;
	color: #000;
}


@media (max-width: 1000px) {
	secttion {
		padding: 100px 50px;
	}

	header {
		padding: 20px 50px;
	}
}

@media (max-width: 700px) {
	header {
		flex-direction: column;
	}

	header h2 {
		margin-bottom: 15px;
	}

	header .nav li {
		margin: 0 7px;
	}

	.box h1 {
		font-size: 32px;
	}

	.box h3 {
		font-size: 20px;
	}

	box a.boxBtn {
		padding: 15px 40px;
	}
}

@media (max-width: 600px) {
	section {
		padding: 125px 30px;
	}
}

@media (max-width: 576px) {
	.container .img-box {
		flex-direction: column;
	}

	.container .img-box .dream {
		width: 100%;
	}

}