@font-face {
	font-family: 'elephnt';
	src: URL('../css/ELEPHNT.TTF') format('truetype');
}


body {
	font-family: Arial, sans-serif;
	margin: 0 auto;
	padding: 0;
	/* background-color: #f3f4f8; */
}

header {
	position: relative;
	height: 100vh;
	background: url('hero-bg.jpg') no-repeat center center/cover;
}

.brandName {
	font-family: 'elephnt';
}

.heroImage {
	max-height: 65vh;
	margin: auto;
}

.carousel-control-next,
.carousel-control-prev

/*, .carousel-indicators */
	{
	filter: invert(100%);
}

footer {
	position: absolute;
	bottom: 0;
	width: 100%;
}



nav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}

nav .logo {
	font-size: 24px;
	color: white;
}

nav ul {
	list-style-type: none;
	display: flex;
}

nav ul li {
	margin: 0 20px;
}

nav ul li a {
	color: white;
	text-decoration: none;
}

.menu-toggle {
	display: none;
	font-size: 30px;
	color: white;
}

.hero {
	text-align: center;
	position: absolute;
	bottom: 20%;
	left: 50%;
	transform: translate(-50%, 50%);
	color: white;
}

.hero h1 {
	font-size: 48px;
}

.hero p {
	font-size: 20px;
}

.hero .cta {
	padding: 10px 20px;
	background: #f6a600;
	color: white;
	text-decoration: none;
	border-radius: 5px;
}

section {
	padding: 50px;
	text-align: center;
}

.gallery-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.gallery-item {
	width: 200px;
	margin: 10px;
}

.gallery-item img {
	width: 100%;
	border-radius: 10px;
}

footer {
	background: #333;
	color: white;
	text-align: center;
	padding: 20px;
}

@media (max-width: 768px) {
	nav ul {
		display: none;
	}

	.menu-toggle {
		display: block;
	}

	nav.active ul {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 60px;
		left: 0;
		background: #444;
		width: 100%;
	}

	nav.active ul li {
		margin: 10px 0;
	}

	.gallery-item {
		width: 100%;
	}
}