html,
body {
	overflow-x: clip;
	max-width: 100vw;
}

body {
	font-family: "Oswald", sans-serif;
}

h1,
h2,
h3 {
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #fff;
}

.custom-navbar {
	background-color: #111; /* near black */
	font-family: "Oswald", sans-serif;
	transition: background 0.3s ease;
	z-index: 1000;
}

.custom-navbar .nav-link {
	color: #ffffff;
	margin: 0 0.75rem;
	position: relative;
	transition: color 0.3s ease;
}

.custom-navbar .navbar-brand {
	font-family: "Oswald", sans-serif;
	font-weight: 700;
	font-size: 1.8rem;
	letter-spacing: 1px;
	color: #f9c80e;
}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
	color: #f9c80e;
}

.custom-navbar .nav-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	background-color: #f9c80e;
	transition: width 0.3s ease;
}

.custom-navbar .nav-link:hover::after,
.custom-navbar .nav-link.active::after {
	width: 100%;
}

.hero-section {
	height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
	background-color: #111;
}

.hero-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.6); /* dark overlay */
	z-index: 0;
}

.hero-section .container {
	position: relative;
	z-index: 2;
}

.hero-section h1,
.hero-section p {
	font-family: "Oswald", sans-serif;
}

.hero-section h1 {
	font-size: 3.5rem;
	letter-spacing: 2px;
	color: #fff;
}

.hero-section p {
	font-size: 1.25rem;
	color: #ccc;
}

@media (max-width: 768px) {
	.hero-section h1 {
		font-size: 2.2rem;
		letter-spacing: 1px;
	}

	.hero-section p {
		font-size: 1rem;
		padding: 0 10px;
	}

	.hero-section .btn {
		font-size: 0.95rem;
		padding: 10px 24px;
	}
}

@media (max-width: 480px) {
	.hero-section h1 {
		font-size: 1.8rem;
	}

	.hero-section p {
		font-size: 0.95rem;
	}

	.hero-section .btn {
		width: 100%;
		max-width: 250px;
		margin: 0 auto;
		display: block;
	}
}

.nav-pills .nav-link {
	background-color: #000;
	color: #fff;
	font-family: "Oswald", sans-serif;
	margin: 0 10px;
	border-bottom: 2px solid transparent;
	transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
	color: #fff;
	background-color: #f9c80e;
	border-bottom: 4px solid #000;
}

.nav-pills .nav-link:hover {
	color: #f9c80e;
	border-bottom: 4px solid #f9c80e;
}

#loadMoreBtn {
	transition: all 0.3s ease;
}

#loadMoreBtn:hover {
	background-color: #f9c80e;
	color: #111;
}

.gallery-section {
	background-color: #1b1b1b;
}

.gallery-img-container {
	overflow: hidden;
	border-radius: 12px;
	transition: transform 0.3s ease;
}

.gallery-img-container img {
	width: 100%;
	height: auto;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-img-container:hover img {
	transform: scale(1.05);
	filter: brightness(1.1);
}

.section-title {
	color: #f9c80e;
}

.founder-social a {
	color: #f9c80e;
	font-size: 1.4rem;
	transition: color 0.3s ease, transform 0.3s ease;
}

.founder-social a:hover {
	color: #ffffff;
	transform: scale(1.1);
}

.about-section blockquote {
	border-left: 4px solid #f9c80e;
	padding-left: 1rem;
}

.founder-signature img {
	opacity: 0.9;
	transition: transform 0.3s ease;
}

.founder-signature img:hover {
	transform: scale(1.05);
}

.contact-section {
	background-color: #1b1b1b;
}

.contact-section .form-control {
	border-radius: 8px;
}

.contact-section .form-label {
	font-weight: 500;
}

.map-container iframe {
	width: 100%;
	height: 250px;
	border: none;
	border-radius: 8px;
}

.modal-content {
	box-shadow: 0 0 20px rgba(249, 200, 14, 0.3);
	border-radius: 12px;
}

.footer-section {
	background-color: #111;
	font-family: "Poppins", sans-serif;
}

.footer-section h6 {
	font-size: 0.95rem;
	margin-bottom: 0.75rem;
}

.footer-link {
	color: #ccc;
	text-decoration: none;
	display: block;
	margin-bottom: 6px;
	transition: color 0.3s ease;
}

.footer-link:hover {
	color: #f9c80e;
}

.footer-social a {
	color: #f9c80e;
	font-size: 1.2rem;
	transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
	color: #fff;
	transform: scale(1.1);
}

.footer-section .text-muted {
	color: #ccc !important;
}
