@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

header {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	background-color: #333;
	color: #fff;
	text-align: center;
	margin: auto;
	height: 7rem;
}

header h1 {
	margin: 0.5rem;
}

.title-nav {
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin: 0.15rem;
}

#header-line {
	border: none;
	border-top: 0.15rem solid rgb(255, 255, 255);
	margin: 0.15rem;
	border-radius: 100%;
}

.logo {
	position: absolute;
	left: 0.5rem;
	height: 6rem;
}

#logo-link {
	display: inline-block;
	/* Match the dimensions of the logo */
	height: 6rem;
	text-decoration: none;
	/* Remove underline */
	cursor: pointer;
	/* Change cursor to pointer on hover */
}

#logo-link:hover {
	opacity: 0.7;
}

.navbar {
	background-color: #333;
	overflow: visible;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0.5rem;
}

.navbar a {
	display: block;
	color: white;
	text-align: center;
	padding: 0.5rem 2rem;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
	text-decoration: none;
}

/* Change color on hover and make round */
.navbar a:hover {
	background-color: #ddd;
	color: black;
	border-radius: 3%;
	/* Make the shape round */
	transform: scale(1.1);
	/* Magnify the button */
	transition: all 0.3s ease;
	/* Add smooth transition */
}

#navbar-active {
	background-color: #ddd;
	color: black;
	border-radius: 3%;
}

body {
	font-family: 'Roboto', sans-serif;
	background-color: #396981;
	margin: 0;
	padding: 0;
	/* Makes sure the body expands to at least the height of the viewport */
	min-height: 100vh;
}

.main-section {
	background-color: #d9c9c9;
	/* width: 95%; */
	border-radius: 3%;
}

.content {
	flex: 1;
	/* Grow to fill remaining vertical space */
	padding-bottom: 2rem;
	/* Example padding */
}

section {
	margin: 1rem auto;
	padding: 1rem;
	background-color: #fff;
	text-align: center;
}

#contact-line {
	border: none;
	border-top: 0.15rem solid rgb(0, 0, 0);
	width: 50%;
	margin: auto;
}

footer {
	background-color: #333;
	color: #fff;
	text-align: center;
	/* Position the footer at the bottom */
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 2rem;
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

#slideshow img {
	width: 50%;
	/* Set the width to 100% to scale the image within the slideshow container */
	height: auto;
	/* Maintain the aspect ratio */
}

#contact-info-hrs {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	margin-bottom: 2rem;
	margin-top: 1rem;
	font-size: large;
}

#contact-info {
	margin-right: 1.75rem;
}

#contact-hrs {
	margin-left: 1.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

#current-hours {
	margin-top: 0;
	margin-bottom: 1rem;
}

.business-hours {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.day-hours {
	display: flex;
	justify-content: space-between;
	width: 17rem;
}

.day {
	font-weight: bold;
}

.hours {
	text-align: right;
}

.contact-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.phone-icon::before {
	/* Unicode for phone icon */
	content: "\260E";
}

.location-icon::before {
	/* Unicode for location icon */
	content: "\1F4CD";
}

.email-icon::before {
	/* Unicode for email icon */
	content: "\1F4E7";
}

.map-container {
	margin-top: 2rem;
	margin-bottom: 2rem;
	margin-left: 0;
	margin-right: 0;
}

/* THE BELOW IF FOR MOBILE */

/* Style for the hamburger menu button */
#menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
}

/* Style for the bars in the hamburger menu button */
.bar {
	display: block;
	width: 25px;
	height: 3px;
	margin: 5px auto;
	background-color: white;
}

/* Media query for smaller screens */
@media only screen and (max-width: 880px) {
	header {
		padding: 1rem;
		/* Add padding for spacing */
		justify-content: flex-end;
		height: 3rem;
	}

	.logo {
		height: 4rem;
		left: 0.5rem;
	}

	#logo-link {
		height: 4rem;
		left: 0.5rem;
	}

	.navbar {
		display: none;
		flex-direction: column;
		justify-content: space-around;
		align-items: center;
		position: absolute;
		top: 4.5rem;
		left: 0;
		margin-left: 0;
		width: 100%;
		background-color: #333;
		/* Added */
		text-align: center;
		/* Added */
		height: 25%;
	}

	/* Show the hamburger menu button */
	#menu-toggle {
		display: block;
		position: absolute;
		top: 1.5rem;
		right: 1.5rem;
	}

	/* Hide the title and logo on smaller screens */
	.title-nav h1 {
		display: none;
	}

	/* Adjustments for the header */
	.title-nav {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	/* Hide the line under the title */
	#header-line {
		display: none;
	}

	#contact-info-hrs {
		flex-direction: column;
	}

	#contact-info {
		margin: 1rem;
	}

	#contact-hrs {
		margin: 1rem;
		margin-bottom: 0;
	}

	#contact-line {
		width: 95%;
	}

	#slideshow img {
		width: 95%;
		/* Set the width to 100% to scale the image within the slideshow container */
		height: auto;
		/* Maintain the aspect ratio */
	}

	#map-container iframe {
		width: 300px;
		height: 300px;
	}

}