/* CSS Styles */

/***** BASIC *****/
html {
	height: 100%;
}

body {
	height: 100%;
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
}

@font-face {
	font-family: "Klee One";
	src: url('../fonts/KleeOne-Regular-subset.woff2') format('woff2'),
		 url('../fonts/KleeOne-Regular-subset.woff') format('woff');
	font-display: swap;
}

/***** HEADER *****/
#header {
	margin: 0px auto;
	background-image: url(../images/banner.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 300px;
}

[data-bs-theme=dark] #header {
	margin: 0px auto;
	background-image: url(../images/banner-dark.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 300px;
}

/* Small - change position of dark banner for nicer view*/
@media screen and (max-width: 575.98px) {
	[data-bs-theme=dark] #header {
		margin: 0px auto;
		background-image: url(../images/banner-dark.webp);
		background-repeat: no-repeat;
		background-size: cover;
		background-position: 65%;
		height: 300px;
	}
}

#header h1 {
	margin: 0px;
	padding: 20px 20px 0px 0px;
	text-transform: lowercase;
}

/* gradient to fade out banner image */
.grad {
	position: absolute;
	top: 12.5em;
	left: 0;
	right: 0;
	width: 100%;
	height: 100px;
	z-index: 10;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), white);
}

[data-bs-theme=dark] .grad {
	position: absolute;
	top: 12.5em;
	left: 0;
	right: 0;
	width: 100%;
	height: 100px;
	background-image: linear-gradient(to bottom, hsla(210, 11%, 15%, 0.6), #212529);
}

/***** MENU *****/
#menu {
	position: absolute;
	top: 10.5em;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 1000px;
	height: 50px;
	background: url(../images/menu.png) no-repeat center;
	z-index: 100;
}

[data-bs-theme=dark] #menu {
	position: absolute;
	top: 10.5em;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 1000px;
	height: 50px;
	background: url(../images/menu-dark.png) no-repeat center;
	z-index: 100;
}

.navbar {
	height: 50px !important;
}

.navbar-toggler {
	background-color: var(--bs-primary-bg-subtle);
}

.navbar-toggler-icon {
	font-size: 1.0em;
}

.toggler-custom {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 20;
}


#menu a {
	padding: 10px;
	padding-left: 10px;
	font-size: normal;
	font-weight: bold;
}


/* Small */
@media screen and (max-width: 575.98px) {

	/* Nav */
	#menu {
		position: fixed;
		top: 20px;
		background: none;
	}

	[data-bs-theme=dark] #menu {
		position: fixed;
		top: 20px;
		background: none;
	}

	.navbar-collapse {
		background-color: var(--bs-primary-bg-subtle);
		border-style: solid;
		border-color: var(--bs-primary-border-subtle);
		border-radius: 5px;
		padding: 20px;
	}
}

/***** CONTENT *****/
#content {
	max-width: 1000px;
	min-height: 100%;
	/* margin: 180px auto -30px;
	height: auto !important;
	height: 100%; */
}

.modal-img-resizable {
	max-height: 85vh;
	object-fit: contain;
}

.modal-img-zoomable {
	max-height: 85vh;
	object-fit: contain;
	cursor: zoom-in;
	transition: transform 0.2s ease-in-out;
}

.modal-img-zoomable.zoomed {
	cursor: grab;
	max-height: none !important;
	width: auto !important;
	max-width: none !important;
	transform: scale(1);
}

.carousel-item {
	transition-duration: .3s;
}

.carousel-item img {
	object-fit: contain;
	object-position: center;
	overflow: hidden;
	height: 85vh;
}

/***** FOOTER *****/
#footer {
	background: url(../images/footer.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

[data-bs-theme=dark] #footer {
	background: url(../images/footer-dark.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.grad-fo {
	left: 0;
	right: 0;
	width: 100%;
	z-index: 10;
	background-image: linear-gradient(to top, rgba(255, 255, 255, 0), white);
}

[data-bs-theme=dark] .grad-fo {
	left: 0;
	right: 0;
	width: 100%;
	z-index: 10;
	background-image: linear-gradient(to top, rgba(255, 255, 255, 0), #212529);
}

.bi {
	vertical-align: -0.125em;
	fill: currentColor;
}

.bd-mode-toggle {
	z-index: 1500;
}

.bd-mode-toggle .bi {
	width: 1em;
	height: 1em;
}

.bd-mode-toggle .active .bi {
	display: block !important;
}