:root {
	--primary-color: #0056b3;
	--secondary-color: #f8f9fa;
	--text-color: #333;
	--button-hover-color: #004494;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	overflow-x: hidden;
	overflow-y: scroll;
}

body {
	font-family: "Cinzel", serif !important;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--secondary-color);
	overflow-x: hidden;
	overflow-y: scroll;
}

.navbar {
	background-color: #fff;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding: 1rem 0;
}

.navbar-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 2rem;
}

.logo {
	height: 60px;
	width: auto;
}

.navbar-title {
	font-family: "Cinzel", serif;
	font-size: 1.5rem;
	color: #bc8550;
	visibility: hidden;
}

.container {
	margin-top: 20px;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	visibility: hidden;
}

.generate-btn {
	background: linear-gradient(to right, #bc8550 0, #6aa59d 100%) !important;
	color: #fff;
	border: none;
	padding: 1rem 2rem;
	font-size: 1.2rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
	border-radius: 5px;
	margin-bottom: 2rem;
}

.overlay-class {
	background: #f8f9fa;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	z-index: 1000;
	flex-direction: column;
	gap: 10px;
}

.certificate-preview {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	min-height: 300px;
	padding: 10%;
	position: fixed;
	top: -99999px;
}

/* Circular Progress */
.loader {
	border: 16px solid #f3f3f3; /* Light grey */
	border-top: 16px solid #3498db; /* Blue */
	border-radius: 50%;
	width: 120px;
	height: 120px;
	display: block;
	margin: auto;
	animation: spin 2s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.container {
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 2rem;
	max-width: 400px;
	width: 100%;
	text-align: center;
	margin: auto;
	margin-top: 50px;
}
.icon {
	width: 64px;
	height: 64px;
	margin-bottom: 1rem;
}
h1 {
	color: #333;
	margin-bottom: 1rem;
}
p {
	color: #666;
	margin-bottom: 1.5rem;
}
.button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	margin: 0.5rem;
	border: none;
	border-radius: 4px;
	color: white;
	font-weight: bold;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
}
.generate {
	background-color: #007bff;
}
.generate:hover {
	background-color: #0056b3;
}
.download {
	background-color: #28a745;
}
.download:hover {
	background-color: #218838;
}
.support {
	font-size: 0.875rem;
	color: #888;
	margin-top: 1.5rem;
}


@media (max-width: 768px) {
	.navbar-container {
		flex-direction: column;
		text-align: center;
	}

	.navbar-title {
		margin-top: 1rem;
	}

	.generate-btn {
		font-size: 1rem;
		padding: 0.8rem 1.5rem;
	}
}
