@font-face {
	font-family: "brushtipTexe";
	src: url("../fonts/BTTEX_15.ttf");
}

@font-face {
	font-family: "Windlass";
	src: url("../fonts/WINDL__.ttf");
}

@font-face {
	font-family: "Burlesk";
	src: url("../fonts/Burlesk-Regular.otf");
}

html {
	width: 100%;
	min-height: 100%;
	min-width: 320px;
	margin: 0;
	padding: 0;
	background: rgb(0, 0, 0);
	background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 38, 51, 1) 15%, rgba(0, 38, 51, 1) 85%, rgba(0, 0, 0, 1) 100%);
	color: #e5e5e5;
	font-family: "Eczar", serif;
	font-optical-sizing: auto;
	font-size: 1rem;
	font-weight: 400;
	font-style: normal;
}

body {
	width: 100%;
	min-height: 100vh;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
}

#header-banner-container {
	background-image: url(../images/assets/header-banner.svg);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: cover;
	height: 125px;
}

#header-logo-image {
	width: 230px;
	height: 45px;
	padding: 25px;
}

#where-is-duke-container {
	text-align: center;
	min-height: calc(100vh - 125px);
	padding: 0px 25px;
}

#where-is-duke-container a {
	color: #89D4E5;
}

#where-is-duke {
	font-family: "Burlesk", "Georgia", "serif";
	font-size: 6rem;
	line-height: 1;
	margin: 80px 0 20px 0;
	font-weight: 300;
}

#duke-location {
	font-size: 2rem;
	line-height: 1;
	margin: 20px 0;
}

#duke-countdown-text {
	font-size: 2rem;
	line-height: 1;
	margin: 40px 0 20px 0;
}

#duke-countdown-timer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 1rem 0;
}

.timer-segment {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: rgba(0, 0, 0, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 6px;
	padding: 12px 20px;
	min-width: 72px;
}

.timer-value {
	font-size: 2.5rem;
	font-weight: 700;
	font-family: monospace;
	line-height: 1;
}

.timer-label {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #a0a0a0;
	margin-top: 6px;
}

.timer-colon {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
	padding-bottom: 22px;
	color: #a0a0a0;
}

#duke-selling,
#duke-selling-items {
	display: none;
}

#duke-selling {
	font-family: "Burlesk", "Georgia", "serif";
	font-size: 4rem;
	font-weight: 300;
	line-height: 1;
	margin: 80px 0 20px 0;
}

#duke-selling-items {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 1.5rem;
	max-width: 1100px;
	margin: 0 auto;
	text-align: left;
}

.selling-item-image-wrapper {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 4px;
	margin-bottom: 0.5rem;
}

.selling-item-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.selling-item-name {
	font-weight: 700;
	font-size: 0.95rem;
	margin-bottom: 0.2rem;
}

.selling-item-type {
	font-size: 0.8rem;
	color: #a0a0a0;
}

@media (max-width: 798px) {
	#header-banner-container {
		height: 75px;
	}

	#header-logo-image {
		width: 138px;
		height: 27px;
		padding: 15px;
	}

	#where-is-duke-container {
		min-height: calc(100vh - 75px);
	}

	#duke-countdown-timer {
		gap: 4px;
	}

	.timer-segment {
		padding: 8px 8px;
		min-width: 50px;
	}

	.timer-value {
		font-size: 1.75rem;
	}

	.timer-label {
		font-size: 0.6rem;
	}

	.timer-colon {
		font-size: 1.75rem;
		padding-bottom: 20px;
	}
}