@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
	--bg1: #ffffff;
	--bg2: ##f5f5f5;
	--body: #111;
	--brand: #ffc600;
	--white: #fff;
}

body {
	font-family: "Raleway", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	color: var(--body);
	line-height: 1.8;
	background-color: var(--bg1);
	font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Raleway", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	color: #2b2b2b;
}

p {
	font-size: 16px;
	font-weight: 300;
}

img {
	width: 100%;
}

section {
	padding-top: 1rem;
	padding-bottom: 2rem;
}

/* Navbar */

.navbar {
	background: white;
}

.navbar .container {
	flex-wrap: nowrap;
}

.navbar-brand {
	font-family: "Raleway", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	font-size: 3rem;
}

.navbar .navbar-nav .nav-link.active {
	position: relative;
	display: inline-block;
}

.navbar .navbar-nav .nav-link.active::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 10px; /* Adjust this value if necessary */
	width: 100%;
	height: 3px; /* This controls the thickness of the underline */
	background-color: var(--brand); /* Same brand color for the underline */
	border-radius: 2px; /* Optional: smooth the edges of the underline */
}

.offcanvas-bg {
	background-color: var(--white);
}

.offcanvas-narrow {
	width: 250px;
	max-width: 70%;
}

.nav-link {
	font-size: 16px;
	font-weight: 300;
}

.bi {
	font-size: 1rem;
	color: var(--body);
}

/* Hero Section */

#home {
	background: url(./public/hero_main_2.jpg);
	min-height: 100vh;
	background-position: center;
	background-size: cover;
	padding-top: 12.5rem;
}

#home p {
	margin-top: 24px;
	margin-bottom: 24px;
	color: white;
	font-size: 16px;
	font-weight: 300;
}

#home h1 {
	font-size: 52px;
	font-weight: 500;
	color: var(--bg1);
}

/* Button */

.btn {
	padding: 16px 36px;
	font-family: "Raleway", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	transition: all 0.4s ease;
	border-radius: 0;
	font-size: 16px;
	font-weight: 500;
}

.btn-brand {
	background-color: var(--brand);
}

.btn-brand:hover {
	background-color: transparent;
	color: var(--brand);
	border-color: var(--brand);
}

.btn-outline-brand {
	background-color: transparent;
	color: var(--brand);
	border-color: var(--brand);
}

.btn-outline-brand:hover {
	background-color: var(--brand);
}

/* Photo Gallery */

.col-6 {
	margin-top: 20px;
}

/* Services Section */

#services {
	background: var(--bg2);
}

#services img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}
#services h1 {
	font-size: 52px;
	font-weight: 500;
	font-style: italic;
	margin-top: 10px;
}

#services h2 {
	color: var(--body);
	margin-top: 14px;
}

#services h3 {
	margin-top: 16px;
	margin-bottom: 24px;
}

#services li {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

#services .services .content {
	padding: 32px;
}

.rowtwo {
	margin-top: 40px;
}

/* #services .btn {
	margin: 30px;
} */

/* Location and Time */

#location {
	background-color: white;
}
#location h6 {
	color: var(--brand);
	font-weight: 700;
}

#location h3 {
	color: #111;
	margin-bottom: 3rem;
}

#location img {
	margin-bottom: 1rem;
	max-width: 15rem;
}

#location a {
	color: var(--brand);
	font-weight: 600;
}
