html {
	scroll-behavior: smooth;
}

body {
	cursor: url("images/oblivion-cursor.png"), auto;
	margin: 0;
	font-family: "Cinzel Decorative", cursive;
	background-color: #1a1814;
	color: #d9c9a1;
	line-height: 1.6;
}

a,
button {
	cursor: url("images/oblivion-cursor.png"), pointer;
}

a:focus,
button:focus,
.cta-button:focus,
.signup button:focus,
input:focus {
	outline: 2px solid #e5989b;
	outline-offset: 2px;
}

.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: #b5838d;
	color: #fff;
	padding: 8px;
	z-index: 100;
}

.skip-link:focus {
	top: 0;
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 2rem;
}

.hero {
	background: url("images/vintage_paper_background_2708.jpg") center/cover
		no-repeat;
	padding: 5rem 2rem;
	color: #333;
	box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.7);
}

.hero .container {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.hero-img {
	flex: 0 0 auto;
	max-width: 15rem;
	margin-right: 2rem;
}

.hero-img img {
	width: 100%;
	height: auto;
}

.hero-text {
	display: flex;
	flex-direction: column;
	align-content: center;
	align-items: center;
}

.hero h1 {
	font-size: 3.5rem;
	margin: 0.5rem 0;
	text-align: center;
}

.hero h1,
.hero span,
.hero p {
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero span {
	display: block;
	font-weight: bold;
	text-align: center;
	font-size: 1.5rem;
	margin: 0.5rem 0 0.2rem 0;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	text-align: center;
}

.cta-button {
	background-color: #b5838d;
	color: #fff;
	padding: 1rem 2rem;
	border-radius: 8px;
	box-shadow: 0 0 12px #b5838d;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s;
}

.cta-button:hover {
	box-shadow: 0 0 20px #e5989b;
}

@media (max-width: 768px) {
	.hero .container {
		flex-direction: column;
		align-items: center;
	}
	.hero-img {
		max-width: 8rem;
		margin-right: 0;
		margin-bottom: 1rem;
	}
	.hero h1 {
		font-size: 2.5rem;
		margin: 0.3rem 0;
	}
	.hero span {
		font-size: 1.2rem;
		margin: 0.3rem 0 0.1rem 0;
	}
	.hero p {
		font-size: 1rem;
	}
}

.about {
	background-color: #2b2925;
	text-align: center;
	padding: 3rem 2rem;
}

.about h2 {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.about img {
	width: 100%;
	border: 4px solid #a07b5a;
	border-radius: 8px;
	margin-top: 1rem;
}

.products {
	background-color: #1f1d1a;
	padding: 3rem 2rem;
}

.products h2 {
	text-align: center;
	margin-bottom: 2rem;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
}

.product-card {
	background-color: #2e2b27;
	padding: 1rem;
	border: 2px solid #c9a76a;
	border-radius: 8px;
	text-align: center;
	transition: transform 0.2s;
}

.product-card:hover {
	transform: scale(1.05);
}

.product-card img {
	max-width: 100%;
	border-radius: 4px;
}

.product-card h3 {
	margin-top: 1rem;
	color: #e8c97a;
}

.quest-upgrades {
	background-color: #312f2a;
	padding: 3rem 2rem;
	text-align: center;
}

.quest-upgrades h2 {
	font-size: 2rem;
	margin-bottom: 1rem;
}

.quest-upgrades ul {
	list-style: none;
	padding: 0;
}

.quest-upgrades li {
	margin: 0.5rem 0;
	font-weight: bold;
}

.signup {
	background-color: #3b372f;
	text-align: center;
	padding: 4rem 2rem;
}

.signup h2 {
	font-size: 2.2rem;
	margin-bottom: 1rem;
}

.signup label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}

.signup input,
.signup button {
	padding: 0.8rem;
	font-size: 1rem;
	margin: 0.5rem;
	border-radius: 5px;
	border: none;
}

.signup input {
	width: 280px;
	max-width: 80%;
}

.signup button {
	background-color: #b5838d;
	color: #fff;
	font-weight: bold;
	box-shadow: 0 0 10px #b5838d;
	transition: box-shadow 0.3s;
}

.signup button:hover {
	box-shadow: 0 0 20px #e5989b;
}

.testimonials {
	background-color: #1c1a17;
	padding: 4rem 2rem;
	text-align: center;
}

.testimonials h2 {
	margin-bottom: 2rem;
}

.testimonials blockquote {
	font-style: italic;
	margin-bottom: 1.5rem;
	border-left: 4px solid #c9a76a;
	padding-left: 1rem;
}

footer {
	background-color: #11100e;
	color: #aaa;
	text-align: center;
	padding: 2rem;
}

footer nav a {
	color: #d9c9a1;
	margin: 0 0.6rem;
	text-decoration: none;
}

footer nav a:hover {
	color: #fff;
}
