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

body,
html {
	font-family: 'Inconsolata', sans-serif;
	height: 100%;
	max-width: 100vw;
	overflow: scroll;
}

/* Navigation */
.top-nav {
	position: fixed;
	display: none;
	background-color: rgb(129, 88, 37, 0.7);
	opacity: 1;
	padding: 10px 0;
	justify-content: space-around;
	width: 100%;
}

.nav-item a {
	color: white;
	font-weight: 600;
	text-decoration: none;
	width: 50%;
	letter-spacing: 0.5rem;
}

.nav-item {
	width: 100%;
	height: 100%;
	text-align: center;
	padding: 1rem;
}

.nav-item:hover {
	background-color: #b5b5b5;
	cursor: pointer;
}

/* Header */
.hours-text {
	color: rgb(255, 255, 255);
	background-color: rgba(0, 0, 0, 0.65);
	padding: 10px;
}
.bgimg {
	background-position: center;
	background-size: cover;
	background-image: url('cafeBanner.jpg');
	height: 55%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

#main-title {
	letter-spacing: 0.5rem;
}

.header {
	padding-top: 3rem;
	text-align: center;
	color: white;
	font-size: 90px;
}

.header-location {
	color: white;
	padding: 10px;
}

.store-info-container {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

/* Content */
.content {
	background-color: #ece9e9;
	padding: 30px;
}

#about {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
}

blockquote {
	width: 100%;
	border-left: 4px solid grey;
	background-color: #dddddd;
	padding-left: 1rem;
}

#about-title {
	letter-spacing: 0.3rem;
	font-size: 2rem;
	margin-bottom: 2rem;
}

#side-img {
	flex: 1;
	text-align: center;
}

#coffee-1 {
	display: block;
	width: 300px;
	width: 300px;
	object-fit: cover;
}

#about-container {
	display: flex;
}

.about-section {
	padding: 0 5rem;
	flex: 2;
	line-height: 2rem;
}

.about-section h5,
/* .menu-section h5, */
.contact h5 {
	text-align: center;
	padding: 40px 0;
}

.about-section,
.menu-section,
.contact {
	width: 100%;
	margin: 0 auto;
}

/* menu carosel */

#menu-carousel {
	height: 100%;
	padding: 500px;
}

#carousel {
	width: 100%;
	z-index: 3;
	height: 30rem;
	position: relative;
}

#carousel ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: 250ms opacity ease-in-out;
	transition-delay: 250ms;
}

.slide[data-active] {
	z-index: 1;
	opacity: 1;
	transition-delay: 0ms;
}

.slide > img {
	display: block;
	width: 70%;
	height: 100%;
	object-fit: cover;
	margin: 0 auto;
}

.carousel-btn {
	position: absolute;
	z-index: 2;
	background: none;
	border: none;
	font-size: 5rem;
	top: 50%;
	color: rgba(255, 255, 255, 0.6);
	transform: translateY(-50%);
	border-radius: 0.25rem;
	padding: 0 0.5rem;
	/* background-color: rgba(0, 0, 0, 0.1); */
}

.carousel-btn:hover,
.carousel-btn:focus {
	cursor: pointer;
	color: white;
	background-color: rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev {
	left: 1rem;
}

.carousel-btn.next {
	right: 1rem;
}

/* menu */

#main-menu-title {
	letter-spacing: 0.3rem;
	font-size: 2rem;
	text-align: center;
	margin: 8rem 0 4rem 0;
}

.tab-menu {
	margin-top: 5rem;
	display: flex;
	justify-content: center;
}

.tab-menu button {
	padding: 10px 30px;
	background-color: #ddd;
	text-decoration: none;
	color: black;
	margin: 0 10px;
	border-radius: 5px;
	border: none;
	letter-spacing: 0.2rem;
}

.tab-menu button:hover {
	background-color: #bbb;
	cursor: pointer;
}

.menu-container {
	display: none;
	padding: 30px;
	background-color: white;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	margin-top: 20px;
}

.menu-product-title {
	font-weight: 800;
	letter-spacing: 0.1rem;
}

.menu-product-title + p {
	padding-left: 1rem;
}

.menu-title {
	text-align: center;
	font-size: 1.5rem;
	letter-spacing: 0.3rem;
}

.item {
	padding: 25px 0;
}

.active {
	display: block;
}
.item-price {
	display: flex;
	justify-content: space-between;
	padding-bottom: 0.8rem;
}

.description {
	color: gray;
	font-size: 0.85rem;
	width: 85%;
}

/* before footer */
#contact-container {
	padding: 50px 0;
	width: 100%;
	display: flex;
	justify-content: space-around;
}

#where {
	padding-top: 3rem;
	font-size: 1rem;
	text-align: center;
}

#social-media {
	width: 50%;
	display: flex;
	justify-content: space-around;
}

#social-media a {
	text-decoration: none;
	color: #000;
	font-size: 2rem;
	width: 100%;
	text-align: center;
}

/* Footer */
.footer {
	text-align: center;
	padding: 40px;
	background-color: #ddd;
}

.selected-btn {
	color: #e60202;
}

form {
	display: flex;
	flex-direction: column;
}
form > * {
	align-self: center;
}

input {
	width: clamp(120px, 60vw, 420px);
	height: 2.5rem;
	padding: 0 1.25rem;
	border: 1px solid black;
	border-radius: 2px;
	margin: 0.625rem auto;
	transition: all 250ms;
}

.form-btn {
	width: clamp(120px, 60vw, 420px);
	border-radius: 2px;
	background-color: #000;
	color: #fff;
	border: none;
	padding: 0.5rem 0;
}
#copyright {
	font-size: 0.5rem;
}

@media screen and (max-width: 768px) {
	.bgimg {
		box-shadow: inset 0 0 0 1000px rgba(129, 88, 37, 0.25);
	}
	#about-container {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	#coffee-1 {
		padding-top: 4rem;
		width: 100%;
		margin: 0 auto;
	}

	.about-section {
		padding: 0;
	}

	.header-location {
		display: none;
	}

	.slide > img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#social-media {
		width: 50%;
		display: grid;
		grid-template-columns: 1fr 1fr;
		align-items: center;
		justify-content: center;
		grid-gap: 2rem 0;
	}

	.contact {
		line-height: 2rem;
	}
}
