html {
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.overlay {
	position: absolute;
	inset: 0;
	background-color: black;
	opacity: 30%;
	transition: all 300ms ease-in-out;
	cursor: pointer;
}

.overlay:hover {
	opacity: 50%;
}

.text {
	position: absolute;
	/* z-index: -2; */
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}

.hero-text {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

@media screen and (min-width: 768px) {
	.hero-text {
		position: absolute;
		display: block;
		inset: initial;
		top: 30%;
		right: 15%;
	}
}

.hero-button {
	border-radius: 0;
	border-color: goldenrod;
	font-size: small;
}

.hero-button:hover {
	color: white;
	background-color: goldenrod;
}

.delete-button {
	border-radius: 0;
	border-color: transparent;
	padding: 0;
	font-size: small;
}

.in-cart-button {
	color: white;
	background-color: goldenrod;
	border-radius: 0;
	font-size: small;
}

.in-cart-button:hover {
	border-radius: 0;
	border-color: goldenrod;
}

.feat-product-text {
	font-size: smaller;
}

footer {
	background-image: url("assets/hero_image_black.png");
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: auto;
}

.login-button {
	border-radius: 0;
	border-color: goldenrod;
	font-size: small;
}

.login-button:hover {
	color: white;
	background-color: goldenrod;
}

.dropdown-menu {
	--bs-dropdown-link-active-bg: var(--bs-dropdown-link-hover-bg);
}

.form-control:focus {
	border-color: goldenrod;
	box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.25);
}

.form-check-input:focus {
	border-color: goldenrod;
	box-shadow: 0 0 0 0.25rem rgba(218, 165, 32, 0.25);
}

.form-check-input:checked {
	border-color: goldenrod;
	background-color: goldenrod;
}
